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

:root {
    --color-btn-phone: #007fd3;
    --color-btn-phone-dark: #005fa3;
    --color-accent-yellow: #ffcb31;
    --color-btn-email-dark: #d9a819;
    --radius-md: 12px;
    --transition-fast: 0.2s;
    --shadow-btn-phone: 0 6px 0 #005fa3, 0 8px 16px rgba(0,0,0,0.2);
    --shadow-btn-email: 0 6px 0 #d9a819, 0 8px 16px rgba(0,0,0,0.2);
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #ffffff;
    color: #003a60;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 375px;
}

/* Responsive */
@media (max-width: 375px) {
    body {
        min-width: 320px;
    }
}

/* セクション間のスペース削除 */
header,
section,
div[id]:not(.form-group-sp) {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  margin: 0;
  padding: 0;
}

/* Pricing SVG Section */
.pricing-svg-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
}

.pricing-svg-image-sp {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* Campaign Section */
.campaign-section-sp {
    position: relative;
    width: 100%;
}

.campaign-btn-sp {
    position: relative;
    width: 295px;
    height: 86px;
    border-radius: 10px;
    border: 1px solid;
    box-shadow: 3px 4px 0px #003a60;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    padding: 0 23px;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    background: none;
}

.phone-campaign-btn-sp {
    border-color: #1275bc;
}

.email-campaign-btn-sp {
    border-color: #004a7f;
}

.campaign-btn-bg-sp {
    position: absolute;
    top: 1px;
    left: 0;
    width: 295px;
    height: 86px;
    border-radius: 10px;
    z-index: 1;
}

.campaign-btn-bg-sp.phone-bg-sp {
    background: #007fd3;
}

.campaign-btn-bg-sp.email-bg-sp {
    background: #ffcb31;
}

.campaign-btn-bottom-bg-sp {
    position: absolute;
    top: 46px;
    left: 0;
    width: 295px;
    height: 40px;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

.campaign-btn-bottom-bg-sp.phone-bottom-bg-sp {
    background: #006cb2;
}

.campaign-btn-bottom-bg-sp.email-bottom-bg-sp {
    background: #f7ba00;
}

.campaign-btn-border-sp {
    position: absolute;
    top: 1px;
    left: 0;
    width: 295px;
    height: 86px;
    border-radius: 10px;
    border: 1px solid;
    z-index: 2;
}

.phone-campaign-btn-sp .campaign-btn-border-sp {
    border-color: #1275bc;
}

.email-campaign-btn-sp .campaign-btn-border-sp {
    border-color: #004a7f;
}

.campaign-btn-icon-sp {
    width: 44px;
    height: 44px;
    object-fit: contain;
    z-index: 3;
}

.campaign-btn-content-sp {
    flex: 1;
    z-index: 3;
}

.phone-campaign-btn-sp .campaign-btn-content-sp {
    color: white;
}

.email-campaign-btn-sp .campaign-btn-content-sp {
    color: #003a60;
}

.campaign-btn-top-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.6px;
    padding-top: 5px;
    margin-bottom: 5px;
}

.campaign-btn-main-sp.phone-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 600;
    font-size: 26px;
    text-align: center;
    letter-spacing: 1.3px;
    margin-bottom: 6px;
}

.campaign-btn-main-sp.email-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.campaign-btn-bottom-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.6px;
}
/* Common Components */

/* Contact Buttons */
.contact-buttons-sp {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}

.contact-btn-sp {
    position: relative;
    flex: 1;
    height: 105px;
    border-radius: 10px;
    border: 1px solid;
    box-shadow: 3px 4px 0px #003a60;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 23px;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
}

.phone-btn-sp {
    border-color: #1275bc;
}

.email-btn-sp {
    border-color: #004a7f;
}

.btn-bg-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

.btn-bg-sp.phone-sp {
    background: #007fd3;
}

.btn-bg-sp.email-bg-sp {
    background: #ffcb31;
}

.btn-bottom-sp {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 50px;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

.btn-bottom-sp.phone-sp {
    background: #006cb2;
}

.btn-bottom-bg-sp {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33px;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

.btn-bottom-bg-sp.email-bottom-bg-sp {
    background: #f7ba00;
}

.btn-border-sp {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid;
    z-index: 2;
}

.phone-btn-sp .btn-border-sp {
    border-color: #1275bc;
}

.btn-icon-sp {
    width: 44px;
    height: 44px;
    object-fit: contain;
    z-index: 2;
}

.btn-text-sp {
    flex: 1;
    z-index: 2;
}

.phone-btn-sp .btn-text-sp {
    color: white;
}

.btn-content-sp {
    flex: 1;
    z-index: 2;
    height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phone-btn-sp .btn-content-sp {
    color: white;
}

.email-btn-sp .btn-content-sp {
    color: #003a60;
}

.btn-top-label-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.6px;
    padding-top: 5px;
    margin-bottom: 5px;
}

.btn-phone-number-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 600;
    font-size: 26px;
    text-align: center;
    letter-spacing: 1.3px;
    margin-bottom: 6px;
}

.btn-bottom-label-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.6px;
    padding-bottom: 5px;
}

.btn-email-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.btn-email-subtitle-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.6px;
}

/* Common Section Headers */
.section-header-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 32px;
}

.section-label-sp {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #008fed;
    font-size: 13px;
    text-align: center;
    letter-spacing: 3px;
    line-height: 1.5;
}

.section-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 24px;
    text-align: center;
    letter-spacing: 2.4px;
    line-height: 1.5;
}

/* Common Text Styles */
.text-normal-sp {
    color: #003a60;
}

.text-red-sp {
    color: #d36363;
    background: linear-gradient(transparent 60%, #ffea8c 60%);
}

/* Common Title Styles */
.title-highlight-sp {
    color: #008fed;
    font-size: 28px;
    letter-spacing: 0.78px;
}

.title-normal-sp {
    color: #003a60;
    font-size: 24px;
}

.title-number-sp {
    color: #008fed;
    letter-spacing: 1.6px;
}

.title-unit-sp {
    color: #008fed;
    font-size: 28px;
    letter-spacing: 0.78px;
}

.title-text-sp {
    color: #003a60;
    font-size: 24px;
}

/* Super Script */
.super-sp {
    font-size: 10px;
}
/* Campaign buttons in menu footer */
.menu-footer-sp .campaign-btn-sp {
    width: 100%;
    max-width: 295px;
}
/* Message Section */
.message-section-sp {
    position: relative;
    width: 100%;
    background-color: #FFF8F0;
}

.message-bg-wrapper-sp {
    display: none;
}

.message-bg-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content-sp {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.message-header-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 50px;
}

.section-subtitle-sp {
    font-family: 'Roboto', Helvetica;
    font-weight: 900;
    color: #008fed;
    font-size: 13px;
    text-align: center;
    letter-spacing: 3px;
    line-height: 15px;
    white-space: nowrap;
}
.message-section-title-sp {
    color: #003a60;
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: 36px;
    white-space: nowrap;
    font-weight: 600;
    text-align: center;
    height: 80px;
}

.message-section-header-sp {
    position: relative;
    align-self: center; 
}

.message-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #003a60;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1.6px;
    line-height: 1.6;
}

.message-blocks-sp {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 345px;
    margin: 0 auto;
}

.message-text-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #003A60;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 2.1;
    text-align: left;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.message-photo-sp {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
/* Overview Section */
.overview-section-sp {
    position: relative;
    width: 100%;
    background-image: url('../images/sp/area-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
}

.overview-bg-wrapper-sp {
    display: none;
}

.overview-bg-sp {
    display: none;
}

.overview-content-sp {
    position: relative;
    padding: 50px 22px 60px;
}

.overview-header-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 31px;
}

.overview-label-sp {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #008fed;
    font-size: 13px;
    text-align: center;
    letter-spacing: 3px;
    line-height: 1.5;
}

.overview-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 24px;
    text-align: center;
    letter-spacing: 2.4px;
    line-height: 1.5;
}

.area-accordion-sp {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 330px;
    margin: 0 auto;
}

.accordion-item-sp {
    width: 100%;
}

.accordion-header-sp {
    width: 100%;
    height: 36px;
    background: #ffcb31;
    border-radius: 3px;
    border: none;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 18px;
    text-align: center;
    letter-spacing: 1.8px;
    line-height: 1.5;
}

.accordion-icon-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 18px;
}

.accordion-content-sp {
    display: none;
    padding-top: 18px;
}

.accordion-item-sp.active-sp .accordion-content-sp {
    display: block;
}

.accordion-text-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 13px;
    text-align: justify;
    letter-spacing: 1.3px;
    line-height: 1.6;
}
.container-sp {
    width: 100%;
    background-color: #fff5d7;
    display: flex;
    flex-direction: column;
}

.total-pricing-section-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}
  
.section-label-sp {
    height: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #008fed;
    font-size: 13px;
    text-align: center;
    letter-spacing: 3px;
    line-height: 15px;
    white-space: nowrap;
}
  
.section-title-sp {
    height: 36px;
    color: #333;
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: 36px;
    white-space: nowrap;
    font-weight: 600;
    text-align: center;
}
  
.basic-pricing-section-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.section-header-sp {
    height: 48px;
    width: 177px;
    position: relative;
    align-self: center;
}
  
.section-header-bg-sp {
    width: 175px;
    height: 48px;
    background: linear-gradient(90deg, rgba(0, 108, 179, 1) 0%, rgba(0, 86, 143, 1) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
  
.section-header-text-sp {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 138px;
    color: white;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
}
  
.header-main-sp {
    letter-spacing: 0.26px;
    line-height: 22.4px;
}
  
.header-sub-sp {
    font-size: 13px;
    letter-spacing: 0.17px;
    line-height: 18.2px;
}
  
.header-note-sp {
    font-size: 10px;
    letter-spacing: 0.1px;
    line-height: 14px;
}
  
.pricing-formula-sp {
    height: 135px;
    width: 100%;
    max-width: 339px;
    position: relative;
    margin-top: 20px;
    align-self: center;
}
  
.formula-note-sp {
    position: absolute;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: 330px;
    font-weight: 500;
    color: #003a60;
    font-size: 10px;
    line-height: normal;
}
  
.formula-price-sp {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 239px;
    font-weight: 600;
    color: #003a60;
    font-size: 24px;
    text-align: center;
    letter-spacing: 2.4px;
    line-height: normal;
}
  
.formula-sub-sp {
    position: absolute;
    top: 29px;
    left: 80px;
    width: 169px;
    font-weight: 500;
    color: #003a60;
    font-size: 10px;
    text-align: center;
    line-height: normal;
}
  
.formula-dot-sp {
    position: absolute;
    top: 3px;
    width: 23px;
    height: 23px;
    background-color: #f9cb00;
    border-radius: 10.5px;
}
  
.formula-dot-left-sp {
    left: 96px;
}
  
.formula-dot-right-sp {
    left: 210px;
}
  
.formula-text-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 330px;
    font-weight: 600;
    color: #003a60;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
    line-height: normal;
}
  
.message-card-sp {
    width: 100%;
    max-width: 334px;
    height: 151px;
    position: relative;
    margin-top: 11px;
    align-self: center;
}
  
.message-card-bg-sp {
    width: 330px;
    height: 151px;
    background-color: #f9cb00;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
  
.message-card-content-sp {
    position: relative;
    height: 100%;
}
  
.message-card-highlight-sp {
    position: absolute;
    top: 44px;
    left: 17px;
    width: 158px;
    height: 20px;
}
  
.message-card-text-sp {
    position: absolute;
    top: 18px;
    left: 17px;
    width: 238px;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
}
  
.text-blue-sp {
    color: #003a60;
    line-height: 24px;
}
  
.pricing-text-red-sp {
    color: #d36363;
    letter-spacing: 0.11px;
    line-height: 24px;
    background-color: white;
    padding: 2px 4px;
    border-radius: 2px;
}

.pricing-text-red-sp {
    color: #d36363;
}
  
.message-card-img-sp {
    position: absolute;
    top: 22px;
    left: 258px;
    width: 66px;
    height: 64px;
    object-fit: cover;
}
  
.message-card-bottom-sp {
    position: absolute;
    top: 98px;
    left: 50%;
    transform: translateX(-50%);
    width: 293px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: normal;
    color: #003a60;
}
  
.case-pricing-section-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 0;
}
  
.carousel-container-sp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
  
.service-price-card-sp {
    min-width: 272px;
    flex-shrink: 0;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #003a60;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 0 20px;
    scroll-snap-align: center;
}
  
.service-title-sp {
    font-weight: 700;
    color: #003a60;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.8px;
    line-height: 28.8px;
    white-space: nowrap;
    margin-bottom: 24px;
}
  
.service-image-wrapper-sp {
    position: relative;
    width: 110px;
    height: 110px;
}
  
.service-image-circle-sp {
    position: absolute;
    background-color: #eaf7ff;
}
  
.service-image-circle-1-sp {
    top: 4px;
    left: 9px;
    width: 119px;
    height: 118px;
    border-radius: 59.4px/58.97px;
}
  
.service-image-circle-2-sp {
    top: 8px;
    left: 11px;
    width: 118px;
    height: 118px;
    border-radius: 59px;
}
  
.service-image-circle-3-sp {
    top: 6px;
    left: 3px;
    width: 120px;
    height: 120px;
    border-radius: 60.13px;
}
  
.service-image-sp {
    width: 110px;
    height: 110px;
    object-fit: cover;
    position: absolute;
}
  
.service-image-1-sp {
    top: 0;
    left: 0;
}
  
.service-image-2-sp {
    top: 0;
    left: 0;
}
  
.service-image-3-sp {
    top: 0;
    left: 0;
}
  
.service-examples-sp {
    display: flex;
    flex-direction: column;
    width: 232px;
    align-items: center;
    gap: 8px;
}
  
.service-example-sp {
    display: flex;
    flex-direction: column;
    width: 232px;
    align-items: center;
    gap: 8px;
}
  
.example-badge-sp {
    height: 22px;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(254, 109, 109, 1) 0%, rgba(224, 75, 75, 1) 100%);
    color: white;
    font-size: 13px;
    letter-spacing: 1.95px;
    line-height: 13px;
    white-space: nowrap;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.example-details-sp {
    display: flex;
    align-items: flex-start;
    width: 232px;
}
  
.example-labels-sp {
    width: 96px;
    font-weight: bold;
    color: #003a60;
    font-size: 14px;
    letter-spacing: 2.1px;
    line-height: 20px;
}

.example-values-sp {
    flex: 1;
    font-weight: bold;
    color: #003a60;
    font-size: 14px;
    letter-spacing: 2.1px;
    line-height: 20px;
}
  
.carousel-dots-sp {
    height: 15px;
    width: auto;
    align-self: center;
    margin-top: 7px;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    letter-spacing: 1.5px;
    line-height: 15px;
    white-space: nowrap;
}

.carousel-dot-sp {
    cursor: default;
    transition: color 0.3s ease;
}
  
.dot-active-sp {
    color: #008fed;
    letter-spacing: 0.15px;
}
  
.dot-yellow-sp {
    color: #f9cb00;
    letter-spacing: 0.15px;
}
  
.dot-inactive-sp {
    color: #cbcbcb;
    letter-spacing: 0.15px;
}
  
.case-note-sp {
    height: 28px;
    width: 330px;
    align-self: center;
    margin-top: 11px;
    font-weight: 500;
    color: #003a60;
    font-size: 10px;
    letter-spacing: 0.5px;
    line-height: normal;
}
  
.truckpack-section-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 30px;
}
  
.truckpack-header-sp {
    width: 227px;
    height: 48px;
    position: relative;
    margin-bottom: 16px;
}
  
.truckpack-header-bg-sp {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 108, 179, 1) 0%, rgba(0, 86, 143, 1) 100%);
}
  
.truckpack-header-text-sp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    padding: 0 8px;
    white-space: nowrap;
}

.header-main-2-sp {
    letter-spacing: 0;
    line-height: 0.1px;
}

.header-note-2-sp {
    font-size: 10px;
    letter-spacing: 0;
}
  
.truckpack-image-sp {
    width: 162px;
    height: 162px;
    margin-bottom: 16px;
}
  
.truckpack-image-sp img {
    width: 100%;
    height: 100%;
}
  
.truckpack-description-sp {
    width: 100%;
    max-width: 330px;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 16px;
    text-align: left;
}
  
.desc-red-sp {
    font-weight: 600;
    color: #d36363;
    letter-spacing: 0.26px;
    line-height: 25.6px;
}
  
.desc-blue-sp {
    font-weight: 600;
    color: #003a60;
    letter-spacing: 0.26px;
    line-height: 25.6px;
}
  
.desc-small-sp {
    font-weight: 500;
    color: #003a60;
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 23.8px;
}
  
.truckpack-note-sp {
    width: 100%;
    max-width: 328px;
    font-weight: 500;
    color: #003a60;
    font-size: 10px;
    line-height: normal;
    margin-bottom: 24px;
    text-align: left;
}
  
.truckpack-cards-sp {
    max-width: 330px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-left: auto;
    margin-right: auto;
}
  
.truckpack-card-sp {
    width: 157px;
    height: 150px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}
  
.truckpack-title-sp {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
}
  
.truckpack-title-1-sp {
    width: 111px;
    height: 29px;
}
  
.truckpack-title-2-sp {
    width: 109px;
    height: 28px;
}
  
.truckpack-icon-sp {
    object-fit: cover;
}
  
.truckpack-icon-1-sp {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
}
  
.truckpack-icon-2-sp {
    width: 83px;
    height: 83px;
    margin-bottom: 10px;
}
  
.truckpack-price-highlight-sp {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 121px;
    height: 10px;
    background-color: #ffea8c;
}
  
.truckpack-price-sp {
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
    width: 152px;
    font-weight: 600;
    color: #d36363;
    font-size: 22px;
    text-align: center;
    letter-spacing: 2.2px;
    line-height: normal;
}
  
.price-main-sp {
    letter-spacing: 0.48px;
}
  
.price-sub-sp {
    font-size: 18px;
    letter-spacing: 0.32px;
}
  
.promise-section-sp {
    width: 100%;
    max-width: 332px;
    margin: 0 auto;
    margin-bottom: 40px;
}
  
.promise-card-sp {
    border-radius: 10px;
    border: 1px solid #00429e;
    padding: 29px 12px 31px;
}
  
.promise-header-sp {
    text-align: center;
    margin-bottom: 26px;
}
  
.promise-header-sub-sp {
    font-weight: 600;
    color: #003a60;
    font-size: 13px;
    letter-spacing: 0.17px;
    line-height: 19.5px;
}
  
.promise-header-main-sp {
    font-weight: 600;
    color: #008fed;
    font-size: 22px;
    letter-spacing: 0.48px;
    line-height: 33px;
}
  
.promise-items-sp {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
  
.promise-item-sp {
    display: flex;
    gap: 8px;
}
  
.promise-icon-sp {
    width: 21px;
    height: 19px;
    margin-top: 2px;
    flex-shrink: 0;
}
  
.promise-content-sp {
    flex: 1;
}
  
.promise-title-sp {
    font-weight: 600;
    color: #003a60;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 25.6px;
    margin-bottom: 8px;
}
  
.promise-description-sp {
    font-weight: 500;
    color: #003a60;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 22.4px;
    white-space: pre-line;
}/* Q&A Section */
.qa-section-sp {
    width: 100%;
    padding: 40px 16px;
}

.qa-header-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.qa-label-sp {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #008fed;
    font-size: 13px;
    text-align: center;
    letter-spacing: 4px;
    line-height: 1.5;
}

.qa-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 24px;
    text-align: center;
    letter-spacing: 2.4px;
    line-height: 1.5;
}

.qa-list-sp {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 616px;
    margin: 0 auto;
}

.qa-item-sp {
    width: 100%;
}

.qa-question-sp {
    width: 100%;
    min-height: 56px;
    background: #ffcc31;
    border-radius: 8px;
    border: none;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.qa-q-icon-sp {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #d36363;
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}

.qa-q-text-sp {
    flex: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-align: left;
}

.qa-toggle-sp {
    width: 20px;
    height: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #D36363;
    font-size: 20px;
    flex-shrink: 0;
}

.qa-answer-sp {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 0;
}

.qa-item-sp.active-sp .qa-answer-sp {
    display: flex;
}

.qa-answer-text-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #003a60;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0.3px;
    line-height: 1.7;
    padding: 0;
    margin-bottom: 16px;
}

.qa-highlight-sp {
    color: #c62828;
    font-size: 1.2em;
}

.qa-contact-btn-sp {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 96px;
    border-radius: 12px;
    border: 2px solid;
    box-shadow: 4px 4px 0px #003a60;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 24px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}

.phone-qa-btn-sp {
    border-color: #1275bc;
}

.email-qa-btn-sp {
    border-color: #004a7f;
}

.qa-btn-bg-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 1;
}

.qa-btn-bg-sp.phone-sp {
    background: #007fd3;
}

.qa-btn-bg-sp.email-sp {
    background: #ffcb31;
}

.qa-btn-bottom-sp {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    border-radius: 0 0 12px 12px;
    z-index: 1;
}

.qa-btn-bottom-sp.phone-sp {
    background: #006cb2;
}

.qa-btn-bottom-sp.email-sp {
    background: #f7ba00;
}

.qa-btn-icon-sp {
    width: 48px;
    height: 48px;
    object-fit: contain;
    z-index: 2;
}

.qa-btn-text-sp {
    flex: 1;
    z-index: 2;
}

.phone-qa-btn-sp .qa-btn-text-sp {
    color: white;
}

.email-qa-btn-sp .qa-btn-text-sp {
    color: #003a60;
}

.qa-btn-top-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    padding-top: 5px;
}

.qa-btn-main-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.email-qa-btn-sp .qa-btn-main-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.qa-btn-bottom-text-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.5px;
}
/* Services Section */
.services-section-sp {
    width: 100%;
    padding: 40px 22px;
}

.services-header-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 22px;
}

.services-label-sp {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #008fed;
    font-size: 13px;
    text-align: center;
    letter-spacing: 3px;
    line-height: 1.5;
}

.services-subtitle-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.services-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 24px;
    text-align: center;
    letter-spacing: 2.4px;
    line-height: 1.5;
}

.services-list-sp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 45px;
}

.service-card-sp {
    position: relative;
    width: 100%;
    height: 158px;
    background: white;
    border: 1px solid #003a60;
    border-radius: 10px;
    overflow: hidden;
}

.service-bg-img-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 104px;
    height: 100%;
    object-fit: cover;
}

.service-icon-sp {
    position: absolute;
    object-fit: cover;
}

.service-icon-1-sp {
    top: 15px;
    left: 190px;
    width: 55px;
    height: 46px;
}

.service-icon-2-sp {
    top: 15px;
    left: 190px;
    width: 45px;
    height: 46px;
}

.service-icon-3-sp {
    top: 15px;
    left: 190px;
    width: 54px;
    height: 38px;
}

.service-info-sp {
    position: absolute;
    top: 70px;
    left: 112px;
    width: 220px;
}

.service-list-name-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #003a60;
    font-size: 16px;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
    left: -5px;
    top: 0;
    width: 100%;
}

.service-desc-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.option-section-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

.option-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.5;
}

.option-card-sp {
    position: relative;
    width: 100%;
    height: 90px;
    background: white;
    border: 1px solid #00429e;
    border-radius: 10px;
    overflow: hidden;
}

.option-icon-sp {
    position: absolute;
    top: 8px;
    left: 14px;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.option-info-sp {
    position: absolute;
    top: 14px;
    left: 99px;
    width: 199px;
}

.option-name-sp {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    color: #003a60;
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.option-desc-sp {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    color: #003a60;
    font-size: 13px;
    letter-spacing: 0.65px;
}
/* Process Steps Section */
.steps-section-sp {
    width: 100%;
    background: #fff5d7;
    padding: 47px 20px;
}

.steps-header-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.steps-label-sp {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #008fed;
    font-size: 13px;
    text-align: center;
    letter-spacing: 3px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.steps-subtitle-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.5px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.steps-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    line-height: 0.7;
}

.steps-cards-sp {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card-sp {
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 18px;
    padding-top: 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-header-sp {
    display: flex;
    align-items: center;
    gap: 5px;
}

.step-badge-wrapper-sp {
    position: relative;
    width: 100px;
    height: 30px;
}

.step-badge-bg-sp {
    position: absolute;
    top: 3px;
    left: 0;
    width: 98px;
    height: 27px;
}

.step-number-sp {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: white;
    font-size: 16px;
    text-align: center;
    letter-spacing: 3.2px;
    line-height: 2;
}

.step-name-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 20px;
    text-align: left;
    letter-spacing: 3px;
    line-height: 2;
    white-space: nowrap;
}

.step-divider-sp {
    width: 143px;
    height: 1px;
    margin: 0 0 20px 93px;
    display: block;
}

.step-card-sp:nth-child(4) .step-divider-sp,
.step-card-sp:nth-child(5) .step-divider-sp {
    width: 90px;
    margin-left: 55px;
}

.step-lead-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 17px;
    text-align: center;
    letter-spacing: 1.7px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-detail-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 13px;
    text-align: center;
    letter-spacing: 1.95px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.step-area-card-sp {
    position: relative;
    width: 100%;
    margin-bottom: 28px;
    margin-left: 10%;
}

.step-area-visual-sp {
    position: relative;
    width: 102px;
    height: 114px;
    float: left;
    margin-right: 12px;
    margin-left: 10px;
}

.step-area-bg-sp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.step-area-circle-sp {
    position: absolute;
    top: 51.4px;
    left: 13.1px;
    width: 44.81px;
    height: 44.81px;
    border-radius: 50%;
    border: 2px solid #c83737;
}

.step-area-text-sp {
    padding-top: 20px;
}

.step-area-badge-sp {
    display: inline-block;
    width: 90px;
    height: 17px;
    background: #004877;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 11px;
    text-align: center;
    letter-spacing: 2.2px;
    line-height: 17px;
    margin-bottom: 12px;
}

.step-area-info-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 16px;
    line-height: 1.5;
}

.area-note-sm-sp {
    font-size: 10px;
    font-weight: 600;
}

.step-area-frame-sp {
    position: absolute;
    top: 12px;
    left: 0;
    width: 295px;
    height: 108px;
}

.step-btn-sp {
    position: relative;
    width: 100%;
    height: 86px;
    border-radius: 10px;
    border: 1px solid;
    box-shadow: 3px 4px 0px #003a60;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    background: none;
}

.step-phone-btn-sp {
    border-color: #1275bc;
}

.step-email-btn-sp {
    border-color: #004a7f;
}

.step-btn-bg-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

.phone-bg-sp {
    background: #007fd3;
}

.email-bg-sp {
    background: #ffcb31;
}

.step-btn-bottom-bg-sp {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

.phone-bottom-bg-sp {
    background: #006cb2;
}

.email-bottom-bg-sp {
    background: #f7ba00;
}

.step-btn-icon-sp {
    width: 44px;
    height: 44px;
    object-fit: contain;
    z-index: 2;
}

.step-btn-content-sp {
    flex: 1;
    z-index: 2;
}

.step-phone-btn-sp .step-btn-content-sp {
    color: white;
}

.step-email-btn-sp .step-btn-content-sp {
    color: #003a60;
}

.step-btn-top-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.6px;
    padding-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.step-btn-main-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 6px;
}

.step-btn-main-sp.phone-sp {
    font-size: 26px;
    letter-spacing: 1.3px;
}

.step-btn-main-sp.email-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.step-btn-bottom-sp {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-align: center;
}

.estimate-section-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.estimate-type-badge-sp {
    display: inline-block;
    border: 1px solid #003a60;
    padding: 4px 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 16px;
    letter-spacing: 2.4px;
    margin-bottom: 19px;
}

.estimate-img-sp {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.estimate-highlight-wrapper-sp {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.estimate-highlight-bg-sp {
    position: absolute;
    top: 45px;
    left: 0;
    width: 130px;
    height: 9px;
    background: #ffea8c;
}

.estimate-text-sp {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    z-index: 1;
}

.highlight-red-sp {
    color: #d36363;
    letter-spacing: 0.32px;
}

.check-items-sp {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 13px;
}

.check-item-sp {
    display: flex;
    align-items: center;
    gap: 4px;
}

.check-icon-sp {
    width: 20px;
    height: 17px;
}

.check-label-sp {
    background: #003a60;
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.95px;
    padding: 2px 8px;
    height: 21px;
    display: flex;
    align-items: center;
}

.estimate-description-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 13.8px;
    letter-spacing: 1.4px;
    line-height: 1.6;
    margin-bottom: 26px;
}

.estimate-line-sp {
    width: 100%;
    height: 1px;
    margin-bottom: 26px;
}

.estimate-final-wrapper-sp {
    position: relative;
    width: 100%;
}

.estimate-final-highlight-sp {
    position: absolute;
    top: 19px;
    left: 0;
    width: 201px;
    height: 9px;
    background: #ffea8c;
}

.estimate-final-text-sp {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #d36363;
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height: 1.6;
    margin-bottom: 16px;
    z-index: 1;
}

.estimate-final-desc-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 13.8px;
    letter-spacing: 1.4px;
    line-height: 1.6;
}

.step-image-sp {
    width: 200px;
    height: 150px;
    object-fit: contain;
}

.step-content-wrapper-sp {
    position: relative;
    width: 100%;
}

.step1-highlight-bg-sp {
    position: absolute;
    top: 16px;
    left: 0;
    width: 220px;
    height: 9px;
    background: #ffea8c;
}

.step-content-highlight-sp {
    position: absolute;
    top: 16px;
    left: 0;
    width: 220px;
    height: 9px;
    background: #ffea8c;
}

.step-content-text-sp {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height: 1.6;
    margin-bottom: 16px;
    z-index: 1;
}

.step-content-desc-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 13.8px;
    letter-spacing: 1.4px;
    line-height: 1.6;
}

.step-simple-content-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-simple-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #003a60;
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height: 1.6;
}

.step-simple-desc-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 1.6;
}
/* Troubleshooting Section */
.trouble-section-sp {
    width: 100%;
    padding: 40px 20px 60px 20px;
}

.trouble-header-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 21px;
    padding: 0 16px;
}

.trouble-header-content-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.trouble-subtitle-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #003a60;
    font-size: 13px;
    text-align: center;
    letter-spacing: 1.95px;
    line-height: 1.5;
}

.trouble-title-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.trouble-img-sp {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.trouble-grid-sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding: 0 16px;
    margin-bottom: 32px;
}

.trouble-card-sp {
    background: white;
    border-radius: 8px;
    border: 1.5px solid #003a60;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-title-sp {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
    padding: 0 3px;
}

.card-highlight-sp {
    position: absolute;
    height: 10px;
    background: #ffea8c;
    z-index: 0;
}

.card-highlight-1-sp {
    top: 10px;
    left: 62px;
    width: 60px;
}

.card-highlight-2-sp {
    top: 10px;
    left: 6px;
    width: 105px;
}

.card-highlight-3-sp {
    top: 26px;
    left: 4px;
    width: 40px;
}

.card-highlight-4-sp {
    top: 10px;
    left: 12px;
    width: 105px;
}

.card-highlight-5-sp {
    top: 10px;
    left: 10px;
    width: 125px;
}

.card-highlight-6-sp {
    top: 10px;
    left: 9px;
    width: 90px;
}

.card-title-sp span {
    position: relative;
    z-index: 1;
}

.card-icon-sp {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 12px;
}

.card-desc-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #003a60;
    font-size: 11px;
    line-height: 1.5;
}

.reassurance-box-sp {
    position: relative;
    width: 100%;
    max-width: 343px;
    margin: 16px auto 0;
}

.reassurance-bg-sp {
    position: relative;
    width: 100%;
    background: #ffcb31;
    border-radius: 16px;
    padding: 25px 15px;
    padding-bottom: 40px;
}

.reassurance-line-sp {
    position: absolute;
    top: 56px;
    left: 13px;
    width: 195px;
    height: 20px;
    background: white;
    z-index: 0;
}

.reassurance-text-sp {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.75;
    color: #003a60;
    z-index: 2;
}

.reassurance-text-sp .text-normal-sp {
    color: #003a60;
}

.reassurance-text-sp .text-red-sp {
    color: #d63e3e;
}

.reassurance-images-sp {
    position: absolute;
    bottom: -60px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.reassurance-images-sp img {
    width: auto;
    height: 114px;
    object-fit: contain;
}

.reassurance-images-sp>.reassurance-images1-sp {
    padding-top: 20px;
}

/* フローティングボタン（スマホのみ） */
.floating-buttons-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 16px 10px 16px;
    z-index: 9999;
    gap: 12px;
}

.floating-btn-sp {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
    min-height: 68px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.floating-btn-icon-sp {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
    object-fit: contain;
}

.floating-btn-text-sp {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.4;
    text-align: center;
}

/* 電話ボタン（既存ボタンと同じ青系） */
.floating-btn-phone-sp {
    background: linear-gradient(180deg, #007fd3 0%, #006cb2 100%);
    color: #ffffff;
}

.floating-btn-phone-sp:active {
    background: linear-gradient(180deg, #006cb2 0%, #005a95 100%);
    transform: scale(0.97);
}

/* お問い合わせボタン（既存ボタンと同じ黄色/オレンジ） */
.floating-btn-contact-sp {
    background: linear-gradient(180deg, #ffcb31 0%, #f7ba00 100%);
    color: #ffffff;
}

.floating-btn-contact-sp:active {
    background: linear-gradient(180deg, #f7ba00 0%, #e0a800 100%);
    transform: scale(0.97);
}

/* フローティングボタン SVG版 */
.floating-buttons-svg-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.floating-btn-image-sp {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.floating-btn-link-sp {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: pointer;
    z-index: 10000;
}

.floating-btn-phone-link-sp {
    right: 0;
}

.floating-btn-form-link-sp {
    left: 0;
}

.floating-btn-link-sp:active {
    opacity: 0.8;
}

/* メニューが開いている時は非表示 */
.floating-buttons-sp.hide-floating {
    display: none !important;
}

/* PC/タブレットでは非表示 */
@media (min-width: 769px) {
    .floating-buttons-sp {
        display: none;
    }
}


/* =====================================================
   Top Hero Image Section - SP
   ページ最上部のヒーロー画像
   ===================================================== */
.top-hero-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
}

.top-hero-image-sp {
  width: 100%;
  height: auto;
  display: block;
}


/* =====================================================
   New Header Design - SP
   シンプルなヘッダーデザイン（スマホ版）
   ===================================================== */
.new-header-sp {
  width: 100%;
  background-color: #ffffff;
  padding: 10px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.new-header-left-sp {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-header-truck-icon-sp {
  width: 35px;
  height: auto;
}

.new-header-brand-sp {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.new-header-service-type-sp {
  background-color: #5fb335;
  color: #ffffff;
  font-size: 9px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
}

.new-header-brand-name-sp {
  font-size: 14px;
  font-weight: bold;
  color: #003a60;
}

.new-header-area-badge-sp {
  background-color: #ffffff;
  border: 2px solid #003a60;
  border-radius: 4px;
  padding: 3px 6px;
  margin-left: 5px;
}

.new-header-area-badge-sp span {
  font-size: 10px;
  font-weight: bold;
  color: #003a60;
  line-height: 1.2;
  text-align: center;
  display: block;
}

/* =====================================================
   Image-Based Header - SP
   画像ベースのヘッダー（スマホ版）
   ===================================================== */
.image-header-sp {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

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

/* =====================================================
   Hero Section with Clickable Buttons - SP
   SVG画像とクリック可能なボタンエリア（スマホ版）
   ===================================================== */
.top-hero-section-sp-new {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.top-hero-image-sp-new {
  width: 100%;
  height: auto;
  display: block;
}

.hero-clickable-area-sp {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.hero-clickable-area-sp:active {
  opacity: 0.8;
}

/* 電話ボタン（緑・上）のクリックエリア */
.hero-phone-btn-sp {
  left: 5%;
  top: 63%;
  width: 90%;
  height: 15%;
}

/* 無料相談ボタン（黄色・下）のクリックエリア */
.hero-email-btn-sp {
  left: 5%;
  top: 82%;
  width: 90%;
  height: 15%;
}

/* =====================================================
   SVG Header - SP
   SVG画像ヘッダー（スマホ版）
   ===================================================== */
.svg-header-sp {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #F7F8F6;
}

.header-svg-image-sp {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* =====================================================
   Trouble Section - SP
   トラブルセクション（お悩み）スマホ版
   ===================================================== */
.trouble-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
}

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

/* =====================================================
   Step Section - SP
   ステップセクション（ご利用の流れ）スマホ版
   ===================================================== */
.step-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

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

.step-clickable-area-sp {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.step-clickable-area-sp:active {
  opacity: 0.8;
}

/* 電話ボタン（緑・上）のクリックエリア */
.step-phone-btn-sp {
  left: 5%;
  top: 31%;
  width: 90%;
  height: 5%;
}

/* 無料相談ボタン（黄色・下）のクリックエリア */
.step-email-btn-sp {
  left: 5%;
  top: 36%;
  width: 90%;
  height: 5%;
}

/* =====================================================
   Feature Section - SP
   特徴セクション（おうちスッキリ便の特徴）スマホ版
   ===================================================== */
.feature-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
}

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

/* =====================================================
   Campaign Section - SP
   キャンペーンセクション（スマホ版）
   ===================================================== */
.campaign-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

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

.campaign-clickable-area-sp {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.campaign-clickable-area-sp:active {
  opacity: 0.8;
}

/* 電話ボタン（緑・上）のクリックエリア */
.campaign-phone-btn-sp {
  left: 5%;
  top: 62%;
  width: 90%;
  height: 14%;
}

/* 無料相談ボタン（黄色・下）のクリックエリア */
.campaign-email-btn-sp {
  left: 5%;
  top: 79%;
  width: 90%;
  height: 15%;
}

/* =====================================================
   Service Section - SP
   サービスセクション（スマホ版）
   ===================================================== */
.service-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
}

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

/* =====================================================
   Price Section - SP (SVG Version)
   料金セクション（SVG版・スマホ版）
   ===================================================== */
.price-section-sp {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

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

.price-clickable-area-sp {
  position: absolute;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.price-clickable-area-sp:active {
  opacity: 0.8;
}

/* 電話ボタン（緑・上）のクリックエリア */
.price-phone-btn-sp {
  left: 4.8%;
  top: 77.14%;
  width: 89.34%;
  height: 3.47%;
}

/* 無料相談ボタン（黄色・下）のクリックエリア */
.price-email-btn-sp {
  left: 5.02%;
  top: 81.29%;
  width: 88.89%;
  height: 3.41%;
}

/* =====================================================
   Price Section - SP (HTML/CSS Version)
   料金セクション（HTML/CSS版・スマホ版）
   ===================================================== */
.price-new-section-sp {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* セクションヘッダー */
.total-pricing-section-sp {
  text-align: center;
  padding: 40px 20px 30px;
  background: white;
}

.section-label-sp {
  font-size: 12px;
  font-weight: 600;
  color: #51b049;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title-sp {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* 基本料金セクション */
.basic-pricing-section-sp {
  background: white;
  padding: 0 20px 40px;
}

.section-header-sp {
  position: relative;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 30px;
}

.section-header-bg-sp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 60px;
  background: #FFEB99;
  border-radius: 30px;
  z-index: 0;
}

.section-header-text-sp {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.header-main-sp {
  font-size: 22px;
}

.header-sub-sp {
  font-size: 16px;
}

.header-note-sp {
  font-size: 12px;
  color: #E63946;
}

/* 料金計算式 */
.pricing-formula-sp {
  background: #F8F8F8;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
}

.formula-note-sp {
  font-size: 11px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.formula-price-sp {
  font-size: 32px;
  font-weight: bold;
  color: #E63946;
  text-align: center;
  margin: 15px 0 5px;
}

.formula-sub-sp {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.formula-dot-sp {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #51b049;
  border-radius: 50%;
  top: 45%;
}

.formula-dot-left-sp {
  left: 20px;
}

.formula-dot-right-sp {
  right: 20px;
}

.formula-text-sp {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
}

/* メッセージカード */
.message-card-sp {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.message-card-bg-sp {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  height: 8px;
}

.message-card-content-sp {
  background: #F1F9F1;
  padding: 20px;
  position: relative;
}

.message-card-text-sp {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.text-blue-sp {
  color: #1565C0;
}

.pricing-text-red-sp {
  color: #E63946;
  font-weight: bold;
}

.message-card-highlight-sp {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 235, 59, 0.3) 0%, transparent 70%);
}

.message-card-img-sp {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.message-card-bottom-sp {
  background: white;
  padding: 15px 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  border-top: 1px solid #E0E0E0;
}

/* 料金事例セクション */
.case-pricing-section-sp {
  background: #F5F5F5;
  padding: 40px 0;
}

.carousel-container-sp {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 0 20px 20px;
  scrollbar-width: none;
}

.carousel-container-sp::-webkit-scrollbar {
  display: none;
}

.service-price-card-sp {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: white;
  border-radius: 20px;
  padding: 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-title-sp {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0 0 12px 0;
}

.service-image-wrapper-sp {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 12px auto;
}

.service-image-circle-sp {
  position: absolute;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.service-image-circle-1-sp {
  background: #e9f7ff;
}

.service-image-circle-2-sp {
  background: #e9f7ff;
}

.service-image-circle-3-sp {
  background: #e9f7ff;
}

.service-image-sp {
  position: relative;
  object-fit: cover;
  z-index: 1;
  display: block;
}

.service-examples-sp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.service-example-sp {
  border-radius: 12px;
  padding: 10px;
}

.example-badge-sp {
  display: inline-block;
  background: #fc6a6a;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 10px;
  margin-bottom: 6px;
}

.example-details-sp {
  display: flex;
  gap: 8px;
}

.example-labels-sp {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.example-values-sp {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  line-height: 1.6;
}

.carousel-dots-sp {
  text-align: center;
  padding: 20px 0;
  font-size: 20px;
}

.carousel-dot-sp {
  cursor: pointer;
  transition: all 0.3s;
}

.dot-inactive-sp {
  color: #D0D0D0;
}

.dot-active-sp {
  color: #51b049;
}

.dot-yellow-sp {
  color: #FFCC31;
}

.case-note-sp {
  font-size: 11px;
  color: #666;
  line-height: 1.6;
  padding: 0 20px;
  margin: 0;
}

/* トラックパックセクション */
.truckpack-section-sp {
  background: white;
  padding: 40px 20px;
}

.truckpack-header-sp {
  position: relative;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 30px;
}

.truckpack-header-bg-sp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 70px;
  background: #FFE082;
  border-radius: 35px;
  z-index: 0;
}

.truckpack-header-text-sp {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}

.header-note-2-sp {
  font-size: 12px;
  color: #E63946;
}

.truckpack-image-sp {
  text-align: center;
  margin-bottom: 30px;
}

.truckpack-image-sp img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.truckpack-description-sp {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}

.desc-red-sp {
  color: #E63946;
  font-weight: bold;
}

.desc-blue-sp {
  color: #1565C0;
}

.desc-small-sp {
  font-size: 12px;
  color: #666;
}

.truckpack-note-sp {
  font-size: 11px;
  color: #666;
  background: #F8F8F8;
  padding: 12px;
  border-radius: 8px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.truckpack-cards-sp {
  display: flex;
  gap: 15px;
}

.truckpack-card-sp {
  flex: 1;
  background: #F8F8F8;
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  position: relative;
}

.truckpack-title-sp {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.truckpack-icon-sp {
  width: 100px;
  height: auto;
  margin: 15px auto;
  display: block;
}

.truckpack-price-highlight-sp {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: rgba(255, 235, 59, 0.3);
  border-radius: 20px;
  z-index: 0;
}

.truckpack-price-sp {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.price-main-sp {
  font-size: 28px;
  font-weight: bold;
  color: #E63946;
}

.price-sub-sp {
  font-size: 16px;
  color: #333;
}

/* 安心のお約束セクション */
.promise-section-sp {
  background: #F5F5F5;
  padding: 40px 20px;
}

.promise-card-sp {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
}

.promise-header-sp {
  text-align: center;
  margin-bottom: 30px;
}

.promise-header-sub-sp {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.promise-header-main-sp {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.promise-items-sp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-item-sp {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.promise-icon-sp {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.promise-content-sp {
  flex: 1;
}

.promise-title-sp {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.promise-description-sp {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* =====================================================
   Items Section - SP (HTML/CSS Version)
   品目セクション（HTML/CSS版・スマホ版）
   ===================================================== */
.items-new-section-sp {
  width: 100%;
  padding: 40px 16px;
  background: #bbdfb8;
}

.items-new-header-sp {
  text-align: center;
  margin-bottom: 30px;
}

.items-new-subtitle-sp {
  font-size: 12px;
  font-weight: 600;
  color: #51b049;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.items-new-title-sp {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* カードスタイル */
.item-new-card-sp {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.item-new-category-title-sp {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
  text-align: center;
}

/* アイテムグリッド */
.item-new-items-grid-sp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.item-new-item-sp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.item-new-icon-sp {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 6px;
}

.item-new-label-sp {
  font-size: 10px;
  color: #333;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* 詳細コンテンツ */
.item-new-detail-wrapper-sp {
  display: none;
  background: #ffffff;
  padding: 20px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
}

/* ボタンスタイル */
.item-new-btn-sp {
  width: 100%;
  max-width: 340px;
  min-height: 56px;
  padding: 18px 30px;
  background: #51b049;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 8px rgba(81, 176, 73, 0.3);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  line-height: 1.5;
}

.item-new-btn-sp:active {
  background: #469a3e;
  transform: scale(0.98);
}

/* =====================================================
   Message Section - SP
   メッセージセクション（スマホ版）
   ===================================================== */

.message-section-sp {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.message-img-sp {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =====================================================
   Form Components - SP Layout
   ===================================================== */

.form-section-sp {
  width: 100%;
  padding: 40px 20px;
  background: #f8f8f8;
}

.form-header-sp {
  text-align: center;
  margin-bottom: 32px;
}

.form-subtitle-sp {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #51b049;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.form-title-sp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.contact-form-sp {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group-sp {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 20px 16px;
}

.form-group-header-sp {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.badge-required-sp {
  padding: 5px 12px;
  background: #e04b4b;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: white;
  white-space: nowrap;
}

.badge-optional-sp {
  padding: 4px 10px;
  background: #429d39;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: white;
  white-space: nowrap;
}

.form-group-title-sp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #333;
  margin: 0;
  line-height: 1.6;
  white-space: nowrap;
  flex-shrink: 0;
}

.form-fields-sp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field-sp {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label-sp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

.field-label-86-sp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  min-width: 86px;
}

.field-input-sp {
  height: 40px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.field-input-168-sp {
  max-width: 168px;
}

.field-input-225-sp {
  width: 100%;
}

.field-input-100-sp {
  width: 100%;
  max-width: 200px;
  height: 40px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.field-input-sp::placeholder {
  color: #999;
}

.field-textarea-sp {
  width: 100%;
  min-height: 100px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  margin-top: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  resize: vertical;
}

.field-textarea-sp::placeholder {
  color: #999;
}

.form-divider-sp {
  width: 100%;
  height: 0;
  margin: 35px 0 0;
  border: none;
  border-top: 2px dashed #e0e0e0;
}

.button-group-sp {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.button-group-inline-sp {
  display: flex;
  gap: 8px;
}

.toggle-button-sp {
  height: 38px;
  padding: 0 16px;
  background: white;
  border: 1.5px solid #333;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.toggle-button-selected-sp {
  background: #333;
  color: white;
}

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

.form-field-inline-sp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label-inline-sp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #003a60;
}

.form-field-file-sp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.file-input-sp {
  display: none;
}

.file-label-sp {
  display: inline-block;
  height: 40px;
  padding: 0 20px;
  background: white;
  border: 1.5px solid #003a60;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #003a60;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 38px;
  text-align: center;
  max-width: 140px;
}

.file-label-sp:active {
  background: #003a60;
  color: white;
}

.photos-list-sp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.consent-box-sp {
  background: #d8edd6;
  border-radius: 12px;
  padding: 16px;
}

.consent-badge-sp {
  margin-bottom: 12px;
}

.consent-field-sp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-checkbox-sp {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #003a60;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 2px;
}

.consent-label-sp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #003a60;
  line-height: 1.7;
  cursor: pointer;
  flex: 1;
}

.form-error-sp {
  padding: 12px 16px;
  background: #fff5f5;
  border: 2px solid #df4949;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #df4949;
  text-align: center;
  margin: 16px 0;
}

.submit-button-sp {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 56px;
  margin: 24px auto 0;
  background: linear-gradient(180deg, #ffcb31 0%, #f7ba00 100%);
  border: 2px solid #004a7f;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.submit-button-sp:active {
  transform: translateY(2px);
}

.submit-button-text-sp {
  position: relative;
  z-index: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #003a60;
  display: block;
  line-height: 56px;
  text-align: center;
}

.submit-button-shadow-sp {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: #003a60;
  border-radius: 0 0 8px 8px;
}

/* =====================================================
   Footer Styles - SP Layout
   ===================================================== */

/* Footer */
.footer-links-sp a {
    color: white !important;
    text-decoration: none;
}

.footer-links-sp a:link,
.footer-links-sp a:visited,
.footer-links-sp a:hover,
.footer-links-sp a:active {
    color: white !important;
}

.site-footer-sp {
    width: 100%;
    background: #004877;
    padding: 20px 22px 100px 22px; /* 下部にフローティングボタン分のスペース追加 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
}

.footer-links-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 14px;
    text-align: center;
}

.footer-area-card-sp {
    width: 100%;
    max-width: 334px;
    background: white;
    border-radius: 10px;
    padding: 21px 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-area-badge-sp {
    width: 122px;
    height: 22px;
    background: #003a60;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2.8px;
}

.footer-map-wrapper-sp {
    position: relative;
    width: 148px;
    height: 164px;
    margin-bottom: 21px;
}

.footer-map-sp {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-map-pin-sp {
    position: absolute;
    top: 71.6px;
    left: 30.8px;
    width: 64.45px;
    height: 65.17px;
    border-radius: 50%;
    border: 2px solid #c83737;
}

.footer-area-text-sp {
    width: 100%;
    max-width: 295px;
}

.area-region-text-sp {
    font-family: 'Noto Sans JP', sans-serif;
    color: #003a60;
    font-size: 13px;
    text-align: justify;
    letter-spacing: 0.18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.area-region-text-sp:last-child {
    margin-bottom: 0;
}

.area-region-text-sp strong {
    font-weight: 700;
}

.copyright-sp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 12px;
    text-align: center;
}

/* Footer SVG Section */
.footer-svg-sp {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
}

.footer-svg-image-sp {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.footer-privacy-link-sp {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
  width: 145px;
  height: 15px;
  cursor: pointer;
  z-index: 10;
}

.footer-privacy-link-sp:hover {
  opacity: 0.8;
}
