@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ============================
    Reset & Base
============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333333;
    background-color: #F8F8F8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    overflow-y: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* プライバシーポリシーリンクのスタイル */
.p-contact-form__privacy-link {
    color: #0066cc;
    text-decoration: underline;
}

.p-contact-form__privacy-link:hover {
    color: #004499;
}

/* ============================
    About Page Styles
============================ */

/* About Intro Section */
.p-about-intro {
    color: #333;
    background-color: #f8f9ff;
    padding: 60px 0;
}

.p-about-intro__content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.p-about-intro__text {
    flex: 1;
}

.p-about-intro__title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.p-about-intro__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.p-about-intro__detail {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.p-about-intro__image {
    flex: 0.5;
    vertical-align: top;
}

.p-about-intro__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}
.p-about-intro__description strong {
    font-weight: 600 !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
    display: inline !important;
    position: relative !important;
    padding-bottom: 5px !important;
    background-image: repeating-linear-gradient(
        to right,
        #5dade2 0px,
        #5dade2 3px,
        transparent 3px,
        transparent 6px
    ) !important;
    background-position: left bottom !important;
    background-size: 100% 4px !important;
    background-repeat: repeat-x !important;
}

/* ::after は削除 */

/* About Mission Section */
.p-about-mission {
    padding: 80px 0;
    background-color: white;
}

.p-about-mission__content {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.p-about-mission__item {
    flex: 1;
    text-align: center;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
}

.p-about-mission__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: white;
}

.p-about-mission__title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}

.p-about-mission__text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* About Features Section */
.p-about-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

.p-about-features__list {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.p-about-features__item {
    flex: 1;
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
}

.p-about-features__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: white;
}

.p-about-features__title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}

.p-about-features__text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* About Services Section */
.p-about-services {
    padding: 80px 0;
    background-color: white;
}

.p-about-services__content {
    margin-top: 40px;
}

.p-about-services__category {
    margin-bottom: 60px;
}

.p-about-services__category:last-child {
    margin-bottom: 0;
}

.p-about-services__category-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-about-services__category-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p-about-services__category-link:hover {
    color: #4facfe;
}

.p-about-services__category-title i {
    font-size: 2.8rem;
    color: #4facfe;
}

.p-about-services__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.p-about-services__item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.p-about-services__item-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.p-about-services__item-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* About Flow Section */
.p-about-flow {
    padding: 80px 0;
    background-color: white;
}

.p-about-flow__steps {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.p-about-flow__step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.p-about-flow__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #ddd;
}

.p-about-flow__step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.p-about-flow__step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #4facfe;
}

.p-about-flow__step-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.p-about-flow__step-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #666;
}

/* About Staff Section */
.p-about-staff {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f8ff 100%);
}

.p-about-staff__content {
    margin-top: 40px;
}

.p-about-staff__intro {
    text-align: center;
    margin-bottom: 60px;
}

.p-about-staff__intro-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
}

.p-about-staff__features {
    display: flex;
    gap: 40px;
}

.p-about-staff__feature {
    flex: 1;
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
}

.p-about-staff__feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: white;
}

.p-about-staff__feature-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}

.p-about-staff__feature-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* About License Section */
.p-about-license {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f8ff 100%);
}

.p-about-license__content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.p-about-license__text {
    flex: 1;
}

.p-about-license__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.p-about-license__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-about-license__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
}

.p-about-license__item i {
    font-size: 2rem;
    color: #4facfe;
}

.p-about-license__item span {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
}

.p-about-license__image {
    flex: 1;
}

.p-about-license__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* About SDGs Section */
.p-about-sdgs {
    padding: 80px 0;
    background-color: white;
}

.p-about-sdgs__content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.p-about-sdgs__image {
    flex: 1;
}

.p-about-sdgs__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.p-about-sdgs__text {
    flex: 1;
}

.p-about-sdgs__title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.p-about-sdgs__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.p-about-sdgs__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.p-about-sdgs__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #333;
}

.p-about-sdgs__item i {
    font-size: 2rem;
    color: #28a745;
}

/* About Company Section */
.p-about-company {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

.p-about-company__table {
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.p-about-company__table table {
    width: 100%;
    border-collapse: collapse;
}

.p-about-company__table th {
    background: #4facfe;
    color: white;
    padding: 20px 30px;
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
    width: 200px;
}

.p-about-company__table td {
    padding: 20px 30px;
    font-size: 1.6rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.p-about-company__table tr:last-child td {
    border-bottom: none;
}

/* About CTA Section */
.p-about-cta {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.p-about-cta__title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.p-about-cta__text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.p-about-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .p-about-intro__content,
    .p-about-license__content,
    .p-about-sdgs__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .p-about-mission__content,
    .p-about-features__list,
    .p-about-staff__features {
        flex-direction: column;
        gap: 30px;
    }
    
    .p-about-services__items {
        grid-template-columns: 1fr;
    }
    
    .p-about-flow__steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .p-about-flow__step:not(:last-child)::after {
        display: none;
    }
    
    .p-about-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================
    Household Page Styles
============================ */

/* Household Intro Section */
.p-household-intro {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 60px 0;
}

.p-household-intro__content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.p-household-intro__text {
    flex: 1;
}

.p-household-intro__title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.p-household-intro__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.p-household-intro__description strong {
    font-weight: 600 !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
    display: inline !important;
    position: relative !important;
    padding-bottom: 5px !important;
    background-image: repeating-linear-gradient(
        to right,
        #5dade2 0px,
        #5dade2 6px,
        transparent 6px,
        transparent 9px
    ) !important;
    background-position: left bottom !important;
    background-size: 100% 4px !important;
    background-repeat: repeat-x !important;
}

.p-household-intro__detail {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.p-household-intro__image {
    flex: 1;
}

.p-household-intro__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Household Problems Section */
.p-household-problems {
    padding: 80px 0;
    background-color: white;
}

.p-household-problems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.p-household-problems__item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    /* transition: transform 0.3s ease; */
}

/* .p-household-problems__item:hover {
    transform: translateY(-4px);
} */

.p-household-problems__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.p-household-problems__icon i {
    font-size: 3.2rem;
    color: white;
}

.p-household-problems__title {
    font-size: 2.0rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}

.p-household-problems__text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333;
}

/* Household Items Section */
.p-household-items {
    padding: 80px 0;
    background-color: white;
}

.p-household-items__categories {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.p-household-items__category {
    flex: 1;
    text-align: center;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .p-household-items__category:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
} */

.p-household-items__image {
    height: 200px;
    overflow: hidden;
}

.p-household-items__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-household-items__title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.p-household-items__title i {
    font-size: 2.8rem;
    color: #4facfe;
}

.p-household-items__text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
    padding: 0 30px 40px;
}

/* Household Method Section */
.p-household-method {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f8ff 100%);
}

.p-household-method__content {
    margin-top: 40px;
}

.p-household-method__text {
    text-align: center;
    margin-bottom: 60px;
}

.p-household-method__description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #666;
}

.p-household-method__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.p-household-method__item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* transition: transform 0.3s ease; */
}

/* .p-household-method__item:hover {
    transform: translateY(-2px);
} */

.p-household-method__item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-household-method__item-icon i {
    font-size: 2.4rem;
    color: white;
}

.p-household-method__item-content {
    flex: 1;
}

.p-household-method__item-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.p-household-method__item-desc {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #666;
}

/* Household Flow Section */
.p-household-flow {
    padding: 80px 0;
    background-color: white;
}

.p-household-flow__notice {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px 30px;
    margin: 40px 0 60px;
    border-radius: 8px;
}

.p-household-flow__notice-text {
    font-size: 1.6rem;
    color: #1565c0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.p-household-flow__notice-text i {
    font-size: 2rem;
}

.p-household-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.p-household-flow__step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    /* transition: transform 0.3s ease; */
}

/* .p-household-flow__step:hover {
    transform: translateX(8px);
} */

.p-household-flow__step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.p-household-flow__step-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
}

.p-household-flow__step-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.p-household-flow__step-text {
    flex: 1;
}

.p-household-flow__step-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.p-household-flow__step-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* Household Vehicles Section */
.p-household-vehicles {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

.p-household-vehicles__lead {
    font-size: 1.8rem;
    text-align: center;
    color: #666;
    margin: 40px 0 60px;
}

.p-household-vehicles__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.p-household-vehicles__item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    /* transition: transform 0.3s ease; */
}

/* .p-household-vehicles__item:hover {
    transform: translateY(-4px);
} */

.p-household-vehicles__item:nth-child(even) {
    flex-direction: row-reverse;
}

.p-household-vehicles__image {
    flex: 1;
    max-width: 300px;
}

.p-household-vehicles__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.p-household-vehicles__content {
    flex: 1;
}

.p-household-vehicles__title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-household-vehicles__title i {
    font-size: 2.8rem;
    color: #4facfe;
}

.p-household-vehicles__desc {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
}

/* Household Area Section */
.p-household-area {
    padding: 80px 0;
    background-color: white;
}

.p-household-area__top {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.p-household-area__info {
    flex: 2;
}

.p-household-area__description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.p-household-area__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-household-area__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.p-household-area__feature i {
    font-size: 2rem;
    color: #4facfe;
}

.p-household-area__feature span {
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
}

.p-household-area__map {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.p-household-area__map-img {
    max-width: 100%;
    height: auto;
}

.p-household-area__regions {
    width: 100%;
}

.p-household-area__regions-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.p-household-area__regions-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.p-household-area__region-group {
    background: #f8f9ff;
    padding: 10px 20px;
    border-radius: 12px;
}

.p-household-area__region-group-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4facfe;
    margin-bottom: 16px;
    text-align: center;
    border-bottom: 2px solid #4facfe;
    padding-bottom: 8px;
}

.p-household-area__region-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.p-household-area__region-list li {
    font-size: 1.4rem;
    color: #666;
    padding: 2px;
    text-align: center;
    line-height: 1.2;
}

.p-household-area__note {
    font-size: 1.4rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Household Service Flow Section */
.p-household-service-flow {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f8ff 100%);
}

.p-household-service-flow__steps {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.p-household-service-flow__step {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.p-household-service-flow__step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: white;
}

.p-household-service-flow__step-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.p-household-service-flow__step-text {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #666;
}

/* Household CTA Section */
.p-household-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.p-household-cta__title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.p-household-cta__title i {
    font-size: 3.6rem;
}

.p-household-cta__text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.p-household-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.c-button--large {
    padding: 20px 40px;
    font-size: 1.8rem;
    min-width: 220px;
}

.p-household-cta__line {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.p-household-cta__line-text {
    font-size: 1.6rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.p-household-cta__line-text i {
    font-size: 2rem;
    color: #00c851;
}

/* Responsive Design for Household Page */
@media (max-width: 768px) {
    .p-household-problems__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .p-household-method__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .p-household-method__item {
        padding: 20px;
        gap: 15px;
    }
    
    .p-household-items__categories {
        flex-direction: column;
        gap: 30px;
    }
    
    .p-household-flow__step {
        flex-direction: column;
        text-align: center;
    }
    
    .p-household-flow__step-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .p-household-vehicles__item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .p-household-area__top {
        flex-direction: column;
        gap: 40px;
    }
    
    .p-household-area__regions-grid {
        gap: 20px;
    }
    
    .p-household-area__region-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p-household-service-flow__steps {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .p-household-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .p-household-cta__buttons .c-button {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================
    Business Page Styles
============================ */

/* Business Intro Section */
.p-business-intro {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 60px 0;
}

.p-business-intro__content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.p-business-intro__text {
    flex: 1;
}

.p-business-intro__title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.p-business-intro__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.p-business-intro__description strong {
    font-weight: 600 !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
    display: inline !important;
    position: relative !important;
    padding-bottom: 5px !important;
    background-image: repeating-linear-gradient(
        to right,
        #5dade2 0px,
        #5dade2 6px,
        transparent 6px,
        transparent 9px
    ) !important;
    background-position: left bottom !important;
    background-size: 100% 4px !important;
    background-repeat: repeat-x !important;
}


.p-business-intro__detail {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.p-business-intro__image {
    flex: 1;
}

.p-business-intro__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Business Flow Section */
.p-business-flow {
    padding: 80px 0;
    background-color: white;
}

.p-business-flow__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.p-business-flow__step {
    text-align: center;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 20px;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}


.p-business-flow__step-visual {
    margin-bottom: 20px;
}

.p-business-flow__step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.p-business-flow__step-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.p-business-flow__step-content {
    text-align: center;
}

.p-business-flow__step-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.p-business-flow__step-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* Business Industrial Section */
.p-business-industrial {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f8ff 100%);
}

.p-business-industrial__subtitle {
    font-size: 2rem;
    text-align: center;
    color: #666;
    margin: 40px 0 60px;
}

.p-business-industrial__content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
    border: 1px solid #ddd;
}

.p-business-industrial__table {
    overflow-x: auto;
}

.p-business-industrial__table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.p-business-industrial__table th {
    background: #f8f9fa;
    color: #333;
    padding: 12px 16px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

.p-business-industrial__table td {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

.p-business-industrial__table tr:last-child td {
    border-bottom: none;
}

.p-business-industrial__table tbody tr:nth-child(odd) {
    background: #fff;
}

.p-business-industrial__table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.p-business-industrial__notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 30px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.p-business-industrial__notice-text {
    font-size: 1.5rem;
    color: #856404;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}

.p-business-industrial__notice-text i {
    font-size: 1.8rem;
    margin-top: 2px;
}

/* Business General Section */
.p-business-general {
    padding: 80px 0;
    background-color: white;
}

.p-business-general__content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.p-business-general__text {
    flex: 1;
}

.p-business-general__subtitle {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.p-business-general__description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.p-business-general__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.p-business-general__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.p-business-general__item i {
    font-size: 2rem;
    color: #4facfe;
}

.p-business-general__item span {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
}

.p-business-general__image {
    flex: 1;
}

.p-business-general__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Business Industries Section */
.p-business-industries {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
}

.p-business-industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.p-business-industries__category {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}


.p-business-industries__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: white;
}

.p-business-industries__title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}

.p-business-industries__desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* Business Licenses Section */
.p-business-licenses {
    padding: 80px 0;
    background-color: white;
}

.p-business-licenses__content {
    margin-top: 40px;
}

.p-business-licenses__subtitle {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.p-business-licenses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.p-business-licenses__item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    /* transition: transform 0.3s ease; */
}


.p-business-licenses__item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.p-business-licenses__item-header i {
    font-size: 2.4rem;
    color: #4facfe;
}

.p-business-licenses__item-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.p-business-licenses__item-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-business-licenses__item-details li {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.p-business-licenses__item-details li::before {
    content: '•';
    color: #4facfe;
    font-size: 1.6rem;
    position: absolute;
    left: 0;
}

.p-business-licenses__compliance {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.p-business-licenses__compliance-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.p-business-licenses__compliance-title i {
    font-size: 2.8rem;
}

.p-business-licenses__compliance-text {
    font-size: 1.6rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Business Area Section */
.p-business-area {
    padding: 80px 0;
    background-color: white;
}

.p-business-area__content {
    display: flex;
    gap: 60px;
}

.p-business-area__text {
    flex: 1;
}

.p-business-area__description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.p-business-area__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-business-area__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    color: #333;
}

.p-business-area__feature i {
    font-size: 2.0rem;
    color: #4facfe;
    width: 24px;
}

.p-business-area__regions {
    flex: 1;
}

.p-business-area__regions-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.p-business-area__regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.p-business-area__region-group {
    background: #f8f9ff;
    padding: 30px 20px;
    border-radius: 12px;
}

.p-business-area__region-group-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4facfe;
    margin-bottom: 16px;
    text-align: center;
    border-bottom: 2px solid #4facfe;
    padding-bottom: 8px;
}

.p-business-area__region-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.p-business-area__region-list li {
    font-size: 1.4rem;
    color: #666;
    padding: 4px;
    text-align: center;
}

.p-business-area__note {
    font-size: 1.4rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Business CTA Section */
.p-business-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.p-business-cta__title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.p-business-cta__title i {
    font-size: 3.6rem;
}

.p-business-cta__text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.p-business-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.p-business-cta__features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.p-business-cta__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 500;
}

.p-business-cta__feature i {
    font-size: 2rem;
    opacity: 0.8;
}

/* Responsive Design for Business Page */
@media (max-width: 1024px) {
    .p-business-intro__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .p-business-area__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .p-business-flow__steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p-business-industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .p-business-area__regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .p-business-area__region-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p-business-flow__steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .p-business-industries__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .p-business-general__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .p-business-general__items {
        grid-template-columns: 1fr;
    }
    
    .p-business-licenses__grid {
        grid-template-columns: 1fr;
    }
    
    .p-business-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .p-business-cta__buttons .c-button {
        width: 100%;
        max-width: 300px;
    }
    
    .p-business-cta__features {
        flex-direction: column;
        gap: 20px;
    }
    
    .p-business-industrial__table {
        font-size: 1.2rem;
    }
    
    .p-business-industrial__table th,
    .p-business-industrial__table td {
        padding: 12px 16px;
    }
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============================
    Layout
============================ */
.l-inner {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.l-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.l-subinner {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* --------------------
    Header
-------------------- */
.l-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.l-header__top {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.l-header__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
}

.l-header__logo {
    flex-shrink: 0;
}

.l-header__logo img {
    width: auto;
}

.l-header__contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.l-header__tel {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: bold;
    color: #333;
    transition: opacity 0.3s ease;
    padding-bottom: 8px;
}

.l-header__tel:hover {
    opacity: 0.8;
}

.l-header__tel-icon {
    flex-shrink: 0;
    padding-top: 8px;
}

.l-header__tel-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.l-header__tel-number {
    margin-top: 5px;
    font-size: 3.3rem;
    line-height: 1.2;
    white-space: nowrap;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
}

.l-header__tel-time {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}

.l-header__contact-img img {
    width: auto;
}

.l-header__contact-img:hover img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.l-header__bottom {
    background-color: #333333;
    padding: 3px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.l-header__bottom.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideInDown 0.5s ease forwards;
    z-index: 1000;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.l-header__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-header__nav-list {
    display: flex;
    gap: 20px;
    font-weight: 500;
}

.l-header__nav-list .active a {
    border-bottom: 1px solid #FFF;
    border-radius: 0px;
}

.l-header__nav-item a {
    display: block;
    padding: 8px 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px;
    color: #fff;
    white-space: nowrap;
    font-size: 1.6rem;
}

.l-header__nav-item a:hover {
    background-color: #0068C0;
    color: #fff;
}

/* --------------------
    Hero Section
-------------------- */
.l-hero {
    position: relative;
    width: 100%;
    height: 680px;
}

.l-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

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

.l-hero__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    gap: 30px;
}

.l-hero__catchcopy-img {
    max-width: 100%;
    height: auto;
    margin-top: -45px;
}

.l-hero__estimate-btn {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.l-hero__estimate-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.l-hero__estimate-btn img {
    max-width: 100%;
    height: auto;
}

/* --------------------
    Footer
-------------------- */
.l-footer {
    background-color: #0041A3;
    color: #fff;
    padding-top: 60px;
}

.l-footer__inner {
    max-width: 1340px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.l-footer__info {
    flex-shrink: 0;
    width: 300px;
    position: relative;
    padding-bottom: 50px;
}

.l-footer__logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.l-footer__address {
    font-size: 1.4rem;
    line-height: 1.8;
}

.l-footer__character {
    position: absolute;
    top: 30%;
    left: 0;
    width: 200px;
}

.l-footer__nav-wrap {
    display: flex;
    flex-grow: 1;
    gap: 40px;
    align-items: flex-start;
}

.l-footer__nav-col {
    flex: 1;
}

.l-footer__nav-heading {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 0;
}

.l-footer__nav-list li {
    margin-bottom: 8px;
}

.l-footer__nav-list a {
    font-size: 1.4rem;
    transition: opacity 0.3s ease;
}

.l-footer__nav-list a:hover {
    opacity: 0.7;
}

.l-footer__area-summary {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 20px 20px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.l-footer__area-main {
    font-size: 1.6rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 8px;
}

.l-footer__area-desc {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.l-footer__area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.l-footer__area-group h4 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    padding-bottom: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.l-footer__area-group ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px 10px;
}

.l-footer__area-group li {
    font-size: 1.2rem;
    opacity: 0.9;
    padding: 2px 0;
}

.l-footer__nav-col:nth-child(1),
.l-footer__nav-col:nth-child(2) {
    flex: 0.8;
}

.l-footer__nav-col:nth-child(3) {
    flex: 1.4;
}

.l-footer__copyright {
    font-size: 1.2rem;
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.1);
}

/* ============================
    Component
============================ */
.c-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.c-button--primary {
    background-color: #FF8C00;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.8rem;
    border-radius: 8px;
}

.c-button--primary:hover {
    background-color: #e67e00;
}

.c-section-title {
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
    color: #333333;
}

.c-section-title img {
    max-width: 90px;
    margin-right: 10px;
}

.c-section-title--blue-band {
    background-color: #0068C0;
    color: #fff;
    padding: 30px 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    font-size: 3.2rem;
    text-align: center;
}

.c-section-title--blue-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(-45deg,
            transparent 0px,
            transparent 11.5px,
            rgba(255, 255, 255, 0.11) 12px,
            rgba(255, 255, 255, 0.11) 12.5px,
            transparent 13px);
    z-index: -1;
}

.c-section-title--blue-band::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #0068C0 transparent transparent transparent;
    z-index: 0;
}

/* ハンバーガーメニュー */
.c-hamburger {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1200;
    margin-left: auto;
}

.c-hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-hamburger span:nth-child(2) {
    top: 10px;
}

.c-hamburger span:nth-child(3) {
    top: 19px;
}

.c-hamburger span:nth-child(4) {
    top: 28px;
}

.c-hamburger.is-active span:nth-child(2) {
    transform: translateY(9px) rotate(45deg);
}

.c-hamburger.is-active span:nth-child(3) {
    opacity: 0;
}

.c-hamburger.is-active span:nth-child(4) {
    transform: translateY(-9px) rotate(-45deg);
}

.c-estimate-btn {
    position: fixed;
    right: 20px;
    bottom: 90px;
    max-width: 120px;
    background: transparent;
    border: none;
    box-shadow: none;
    /* transition: transform 0.3s ease; */
    z-index: 98;
    cursor: pointer;
}

.c-estimate-btn img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.c-estimate-btn:hover {
    transform: scale(1.05);
}

.c-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #0068C0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    cursor: pointer;
}

.c-scroll-top.is-show {
    opacity: 1;
    visibility: visible;
}

.c-scroll-top:hover {
    opacity: 0.8;
}

/* Common upload area styles */
.c-upload-area {
    border: 4px dashed #E9F1FE;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background-color: #E9F1FE;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.c-upload-area:hover,
.c-upload-area.dragover {
    border-color: #007bff;
    background-color: #E9F1FE;
}

.c-upload-area__icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1;
}

.c-upload-area__text {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.5;
}

.c-upload-area__input {
    display: none;
}

.c-upload-area__preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.c-upload-area__preview-item {
    position: relative;
    display: inline-block;
}

.c-upload-area__preview-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.c-upload-area__remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background-color: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.c-upload-area__remove-btn:hover {
    background-color: #cc0000;
}

.c-upload-area__file-count {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.c-submit-button--upload {
    background-color: #6c757d;
    transition: all 0.3s ease;
}

.c-submit-button--upload:not(:disabled) {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.c-submit-button--upload:not(:disabled):hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.upload-text-mobile {
    display: none;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5em;
    color: #34495e;
}

.loading-overlay .spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ============================
    Project
============================ */

/* --------------------
    Hero Section
-------------------- */
.p-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 600px;
}

.p-hero__bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.p-hero__img-pc,
.p-hero__img-sp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.p-hero__img-sp {
    display: none;
}

/* --------------------
    Hero Message Section
-------------------- */
.p-hero-message {
    background-color: #0068C0;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    position: relative;
}

.p-hero-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(-45deg,
            transparent 0px,
            transparent 11.5px,
            rgba(255, 255, 255, 0.11) 12px,
            rgba(255, 255, 255, 0.11) 12.5px,
            transparent 13px);
    z-index: 1;
}

.p-hero-message__text {
    font-size: 3.0rem;
    font-weight: 800;
    line-height: 1.6;
}

.u-text-strong {
    color: #FFE102;
    font-weight: bold;
    font-size: 4.2rem;
}

/* --------------------
    One Stop Section
-------------------- */
.p-onestop {
    background-color: #FDFCEE;
    background-image: url('../img/sec01_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    padding: 15px 0 25px 0;
    position: relative;
    min-height: 500px;
}

.p-onestop__visual {
    position: relative;
    width: 100%;
    height: 350px;
}

.p-onestop__balloon {
    position: absolute;
    z-index: 2;
}

.p-onestop__balloon img {
    width: auto;
    height: auto;
}

.p-onestop__balloon--01 {
    top: 20px;
    left: 25%;
}

.p-onestop__balloon--02 {
    top: 10px;
    right: 25%;
}

.p-onestop__balloon--03 {
    bottom: 80px;
    left: 5%;
}

.p-onestop__balloon--04 {
    bottom: 90px;
    right: 8%;
}

.p-onestop__character {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.p-onestop__character img {
    max-width: 280px;
}

.p-onestop__box {
    background-color: #fff;
    padding: 10px;
    border: 3px solid #0068C0;
    position: relative;
    text-align: center;
    z-index: 4;
    margin-top: -60px;
}

.p-onestop__box::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #0068C0;
    pointer-events: none;
}

.p-onestop__title {
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #0068C0;
    position: relative;
    z-index: 1;
}

.p-onestop__text {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

/* --------------------
    Estimate Photo Section
-------------------- */
.p-estimate-photo {
    background-color: #F0F9FE;
}

.p-estimate-photo .l-inner {
    background-color: #fff;
    border-radius: 12px;
    padding: 50px;
    margin: 0 auto;
    max-width: 870px;
}

.p-estimate-photo .l-inner .c-section-title {
    font-size: 3.3rem;
    font-weight: bold;
    color: #007ACC;
    text-align: left;
    text-decoration: underline;
    text-decoration-color: #007ACC;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    margin: 0px 0px 15px 0px;
    padding: 0px;
}

.p-estimate-photo__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.p-estimate-photo__text-wrap {
    flex: 1;
}

.p-estimate-photo__lead {
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.6rem;
    color: #333;
    display: inline;
}

.p-estimate-photo__desc {
    font-weight: bold;
    font-size: 1.6rem;
    color: #333;
    display: inline;
}

.p-estimate-photo__image {
    flex-shrink: 0;
    margin-top: -80px;
}

.p-estimate-photo__image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.p-estimate-photo__form {
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
}

.p-estimate-photo__upload-section {
    background-color: #ededed;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    margin-bottom: 25px;
}

.p-estimate-photo__upload-label {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    text-align: left;
}

.p-estimate-photo__upload-label::before {
    content: "📷";
    margin-right: 8px;
    font-size: 1.8rem;
}

.p-estimate-photo__upload-area {
    margin-bottom: 30px;
}

.p-estimate-photo__submit-button {
    width: 100%;
    background-color: #4A5568;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.p-estimate-photo__submit-button:hover {
    background-color: #2D3748;
}

.p-estimate-photo__region-selection {
    margin-bottom: 25px;
    text-align: left;
    background-color: #ededed;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
}

.p-estimate-photo__region-label {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 12px;
    position: relative;
}

.p-estimate-photo__region-label::before {
    content: "📍";
    margin-right: 8px;
    font-size: 1.6rem;
}

.p-estimate-photo__region-select {
    width: 100%;
    max-width: 320px;
    padding: 14px 50px 14px 16px;
    border: 2px solid #3498db;
    border-radius: 10px;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #2c3e50;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233498db'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.1);
}

.p-estimate-photo__region-select:focus {
    outline: none;
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
    transform: translateY(-1px);
}

.p-estimate-photo__region-select:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.15);
}

.p-estimate-photo__region-select option {
    padding: 12px;
    font-size: 1.6rem;
    color: #2c3e50;
    background-color: #fff;
}

.p-estimate-photo__region-select option:hover {
    background-color: #f8f9fa;
}

.p-estimate-photo__region-select option[value=""] {
    color: #95a5a6;
    font-style: italic;
}

/* --------------------
    Error Section
-------------------- */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}

.message.note {
    margin-top : 15px;
    border:1px solid #ff0000;
    text-align: left;
    color: #c62828;
    display: block;
}

.message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 2px solid #ef5350;
}

.message.success {
    background-color: #e8f5e8;
    color: #2e7d32;
    border: 2px solid #66bb6a;
}

/* --------------------
    Trouble Section
-------------------- */
.p-trouble {
    background-image: url('../img/sec03_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.p-trouble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

.p-trouble__head {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url('../img/sec03_title_no_text.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
}

.p-trouble__text-overlay {
    position: absolute;
    right: 10%;
    top: 45%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
}

.p-trouble__subtitle {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
}

.p-trouble__title {
    margin-top: 10px;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 0.85;
    color: #0068C0;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #FFCC01;
    text-underline-offset: 0px;
    text-decoration-thickness: 7px;
}

.p-trouble__title span {
    color: #d32f2f;
}

.p-trouble__head-img {
    object-fit: contain;
    margin-bottom: 0px;
}

.p-trouble__list {
    margin-top: -31px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

.p-trouble__item {
    color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0;
    height: 154px;
}

.p-trouble__item-img-wrap {
    flex-shrink: 0;
    width: 154px;
    height: 100%;
    overflow: hidden;
}

.p-trouble__item-img {
    height: 154px;
    object-fit: cover;
}

.p-trouble__item-text {
    flex-grow: 1;
    font-size: 2rem;
    font-weight: bold;
    padding: 30px;
    line-height: 1.4;
    text-align: left;
    background: linear-gradient(to bottom, #7a8ba3, #5b6e85);
    border-radius: 0 20px 20px 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.p-trouble__arrow {
    text-align: center;
    margin: 15px auto;
}

.p-trouble__arrow-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
}

.p-trouble__arrow-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 35px;
    border-left: 4px solid #0068C0;
    border-top: 4px solid #0068C0;
    border-bottom: 4px solid #0068C0;
}

.p-trouble__arrow-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35px;
    border-right: 4px solid #0068C0;
    border-top: 4px solid #0068C0;
    border-bottom: 4px solid #0068C0;
}

.p-trouble__arrow-wrap h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

.trouble-black-text {
    color: #333333;
    font-size: 32px;
    margin-bottom: 8px;
}

.trouble-blue-text {
    color: #0068C0;
    font-size: 32px;
    margin-bottom: 15px;
}

.trouble-bottom-text {
    font-size: 32px;
    color: #333333;
}

.trouble-orange-box {
    display: inline-block;
    background-color: #ff7700;
    color: white;
    padding: 2px 12px;
    margin: 0 4px;
    border-radius: 3px;
    font-weight: bold;
}

/* --------------------
    Service Section
-------------------- */
.p-service {
    background-color: #E6F0FF;
}

.p-service .c-section-title {
    font-size: 3.3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #FFCC01;
    text-underline-offset: 0px;
    text-decoration-thickness: 12px;
    margin-bottom: 20px;
    font-style: italic;
}

.p-service .u-underline {
    font-size: 5.0rem;
    font-weight: 700;
    color: #007ACC;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #FFCC01;
    text-underline-offset: 0px;
    text-decoration-thickness: 12px;
    margin-bottom: 40px;
    font-style: italic;
}

.p-service__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.p-service__item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.p-service__item-img-wrap {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

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

.p-service__item-title {
    font-size: 1.8rem;
    color: #007ACC;
    font-weight: bold;
    margin: 20px 10px 10px;
    line-height: 1.3;
}

.p-service__item-text {
    text-align: left;
    font-size: 1.4rem;
    color: #333;
    padding: 0 10px 0px 10px;
}

/* --------------------
    Area Section
-------------------- */
.p-area {
    background-image: url('../img/sec05_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.p-area__inner {
    position: relative;
    z-index: 2;
}

.p-area__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.p-area__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.p-area__title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.p-area__icon {
    font-weight: bold;
    font-size: 10rem;
    color: #0068C0;
    margin-right: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.p-area__title {
    width: 600px;
    font-size: 4.0rem;
    color: #0041A3;
    font-weight: bold;
    line-height: 1.3;
    font-weight: 1100;
    font-style: italic;
    text-shadow:
        -4px -4px 0 #ffffff,
        4px -4px 0 #ffffff,
        -4px 4px 0 #ffffff,
        4px 4px 0 #ffffff,
        -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px 1px 0 #ffffff,
        1px 1px 0 #ffffff;
}

.p-area__title-underline {
    color: #FF0000;
    font-size: 5.2rem;
    font-weight: bold;
    display: block;
    text-shadow:
        -4px -4px 0 #ffffff,
        4px -4px 0 #ffffff,
        -4px 4px 0 #ffffff,
        4px 4px 0 #ffffff,
        -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px 1px 0 #ffffff,
        1px 1px 0 #ffffff;
}

.p-area__list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    max-width: 600px;
    list-style: none;
    align-items: flex-start;
    justify-content: flex-start;
}

.p-area__item {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background-color: #0041A3;
    padding: 5px;
    text-align: center;
    transition: all 0.3s ease;
    width: auto;
    min-width: fit-content;
    transform: skew(-10deg);
    position: relative;
    display: inline-block;
}

.p-area__right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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

/* --------------------
    Contact Banner Section
-------------------- */
.p-contact-banner {
    background-image: url('../img/sec06_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.p-contact-banner__inner {
    max-width: 980px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.p-contact-banner__lead-wrap {
    background-color: #00A8EF;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.p-contact-banner__lead {
    margin: 0px;
    font-size: 3.2rem;
    padding: 5px 40px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.4em;
}

.p-contact-banner__content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
    justify-content: center;
    width: 100%;
}

.p-contact-banner__tel {
    color: #FFC107;
    padding: 15px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 5rem;
    line-height: 1;
    flex: 0 0 auto;
}

.p-contact-banner__tel:hover {
    opacity: 0.8;
}

.p-contact-banner__tel-head {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    color: #FFF;
}

.p-contact-banner__tel i {
    color: #FFC107;
    font-size: 5rem;
    margin-right: 10px;
}

.p-contact-banner__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    max-width: none;
}

.p-contact-banner__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.4;
}

.p-contact-banner__button:hover {
    opacity: 0.8;
}

.p-contact-banner__button img {
    width: 350px;
    height: auto;
}

.p-contact-banner__button i {
    font-size: 3rem;
}

.p-contact-banner__tel-time {
    color: #FFF;
    border-top: 1px solid #FFF;
    font-size: 2rem;
    padding-top: 15px;
    font-weight: normal;
}

/* --------------------
    Reason Section
-------------------- */

.p-reason .c-section-title {
    font-size: 3.3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #FFCC01;
    text-underline-offset: 0px;
    text-decoration-thickness: 12px;
    margin-bottom: 20px;
    font-style: italic;
}

.p-reason .u-underline {
    font-size: 5.0rem;
    font-weight: 700;
    color: #007ACC;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #FFCC01;
    text-underline-offset: 0px;
    text-decoration-thickness: 12px;
    margin-bottom: 40px;
    font-style: italic;
}

.p-reason__list {
    display: flex;
    flex-direction: column;
}

.p-reason__item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.p-reason__item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            #ddd 20%,
            #ddd 80%,
            transparent 100%);
}

.p-reason__item-img-wrap {
    flex-shrink: 0;
    width: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.p-reason__item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.p-reason__item-content {
    flex-grow: 1;
}

.p-reason__item-body {
    flex-grow: 1;
}

.p-reason__item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.p-reason__item-number {
    font-size: 4rem;
    font-style: italic;
    font-weight: bold;
    color: #C00000;
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.p-reason__item-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #0068C0;
    text-align: left;
}

.p-reason__item-text {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
}

/* --------------------
    Flow Section
-------------------- */
.p-flow {
    background-color: #fff;
    padding-top: 0;
}

.p-flow .c-section-title {
    font-style: italic;
    font-size: 6rem;
    font-weight: bold;
}

.p-flow__lead-text {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.8rem;
}

.p-flow__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-flow__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
}

.p-flow__item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 60px;
    height: calc(100% + 30px);
    width: 2px;
    background-color: #ADD8E6;
    z-index: 1;
}

.p-flow__item:last-child::before {
    display: none;
}

.p-flow__item-number {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

.p-flow__item:nth-child(1) .p-flow__item-number {
    background-color: #FFB3B3;
}

.p-flow__item:nth-child(2) .p-flow__item-number {
    background-color: #FF9999;
}

.p-flow__item:nth-child(3) .p-flow__item-number {
    background-color: #FF6666;
}

.p-flow__item:nth-child(4) .p-flow__item-number {
    background-color: #FF3333;
}

.p-flow__item:nth-child(5) .p-flow__item-number {
    background-color: #FF1A1A;
}

.p-flow__item:nth-child(6) .p-flow__item-number {
    background-color: #FF0000;
}

.p-flow__item-content {
    flex-grow: 1;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.p-flow__item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-top: 5px;
}

.p-flow__item-text-content {
    flex-grow: 1;
}

.p-flow__item-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #0068C0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.p-flow__item-text {
    font-size: 1.5rem;
    line-height: 1.8;
}

/* --------------------
    Voice Section
-------------------- */
.p-voice {
    background-color: #FDFCEE;
    background-image: url('../img/sec09_bg.png');
    background-repeat: repeat;
}

.p-voice h3 {
    margin: 0px;
    padding: 0px;
}

.p-voice__head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.p-voice__head-img {
    object-fit: contain;
    margin-bottom: 15px;
}

.p-voice__title-wrapper {
    position: relative;
    display: inline-block;
}

.p-voice__item-icon {
    margin-left: 25px;
    margin-bottom: 25px;
}

.p-voice .c-section-title {
    font-size: 4rem;
    font-style: italic;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    text-align: left;
    position: relative;
    margin: 0 5px;
}

.p-voice .u-underline {
    font-size: 5rem;
    position: relative;
    display: inline-block;
    color: #ff6600;
}

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

.p-voice__item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.p-voice__item-img-wrap {
    overflow: hidden;
    background-color: #fff;
    padding: 5px;
}

.p-voice__item-img {
    width: 100%;
    height: 100%;
}

.p-voice__item .woman {
    color: #FF1493;
    font-weight: bold;
}

.p-voice__item .man {
    color: #0068C0;
    font-weight: bold;
}

.p-voice__item-info {
    font-size: 1.6rem;
    color: #666;
    margin-top: 15px;
    margin-bottom: 0px;
}

.p-voice__item-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #333;
}

.p-voice__item-text {
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 0 20px;
}

/* --------------------
    FAQ Section
-------------------- */

.p-faq .c-section-title {
    font-style: italic;
    font-size: 6rem;
    font-weight: bold;
}

.p-faq__list {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.p-faq h2 {
    margin-top: 0px !important;
}

.p-faq__item {
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 20px 25px 0 25px;
    margin-bottom: 15px;
    overflow: hidden;
}

.p-faq__item:last-child {
    margin-bottom: 0;
}

.p-faq__question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 10px;
}

.p-faq__q-icon {
    flex-shrink: 0;
    font-size: 3rem;
    font-weight: bold;
    color: #0068C0;
    line-height: 1.0;
}

.p-faq__answer {
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    padding-top: 15px;
    padding-bottom: 5px;
    margin-bottom: 25px;
    width: calc(100% - (2.8rem + 15px));
    box-sizing: border-box;
    text-align: left;
    position: relative;
    z-index: 1;
}

.p-faq__answer-text {
    padding: 0 25px;
    margin-top: 0;
}

/* --------------------
    SDGs Section
-------------------- */
.p-sdgs {
    background-color: #E6F0FF;
    margin-top: 60px;
}

.p-sdgs h2 {
    margin: 0;
    padding: 0;
}

.p-sdgs__inner-wrap {
    background-color: #fff;
    border: 3px solid #0068C0;
    border-radius: 15px;
    padding: 0px 0px 30px 0px;
    text-align: center;
    box-shadow: none;
    max-width: 980px;
    margin: 0 auto;
}

.p-sdgs .c-section-title {
    color: #FFF;
    background-color: #0068C0;
    border-radius: 10px 10px 0px 0px;
    margin-top: 0px;
    margin-bottom: 40px;
    padding: 25px;
}

.p-sdgs__img-wrap {
    margin-bottom: 30px;
}

.p-sdgs__lead-text h3 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
    color: #0041A3;
}

.p-sdgs__lead-text {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.p-sdgs__list {
    display: grid;
    grid-template-columns: 1fr 250px 20px 250px 20px 250px 1fr;
    grid-template-rows: auto 20px auto;
    justify-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-sdgs__item:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
}

.p-sdgs__item:nth-child(2) {
    grid-column: 4;
    grid-row: 1;
}

.p-sdgs__item:nth-child(3) {
    grid-column: 6;
    grid-row: 1;
}

.p-sdgs__item:nth-child(4) {
    grid-column: 3;
    grid-row: 3;
}

.p-sdgs__item:nth-child(5) {
    grid-column: 5;
    grid-row: 3;
}

.p-sdgs__item {
    width: 250px;
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    padding: 30px 20px;
    border: 1px solid #666;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-sdgs__item-img-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.p-sdgs__item-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-sdgs__item-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.4;
    color: #0068C0;
}

.p-sdgs__item-text {
    font-size: 1.4rem;
    line-height: 1.7;
}

/* --------------------
    News / Blog Section
-------------------- */

.p-news {
    margin-top: -30px;
}

.p-blog {
    margin-top: 0px;
}

.p-news,
.p-blog {
    background-color: #F8F8F8;
}

.p-news .c-section-title,
.p-blog .c-section-title {
    margin-bottom: 40px;
}

.p-news__list,
.p-blog__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.p-news__item,
.p-blog__item {
    margin-top: 30px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.p-news__item-img-wrap,
.p-blog__item-img-wrap {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.p-news__item-img,
.p-blog__item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-news__item-date,
.p-blog__item-date {
    font-size: 1.2rem;
    color: #999;
    padding: 15px 15px 0px;
}

.p-news__item-title,
.p-blog__item-title {
    color: #0068C0;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 15px;
    line-height: 1.4;
}

.p-news__item-text,
.p-blog__item-text {
    font-size: 1.4rem;
    color: #666;
    padding: 0 15px 20px;
}

/* --------------------
    Contact Form Section
-------------------- */
.p-contact-form {
    padding-top: 30px;
    background-color: #E6F0FF;
}

.p-contact-form h2 {
    margin: 0;
    padding: 0;
}

.p-contact-form__inner-wrap {
    background-color: #fff;
    border: 3px solid #0068C0;
    border-radius: 15px;
    padding: 0px 0px 30px 0px;
    text-align: center;
    box-shadow: none;
    max-width: 1200px;
    margin: 0 auto;
}

.p-contact-form .c-section-title {
    color: #FFF;
    background-color: #0068C0;
    border-radius: 10px 10px 0px 0px;
    margin-top: 0px;
    margin-bottom: 40px;
    padding: 25px;
}
.p-contact-form__form {
    max-width: 900px;
    margin: 0 auto;
}

.p-contact-form__group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.p-contact-form__label {
    flex-shrink: 0;
    width: 150px;
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0;
}

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

.p-contact-form__input-wrap {
    flex-grow: 1;
    position: relative;
}

.p-contact-form__input,
.p-contact-form__select,
.p-contact-form__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}

.p-contact-form__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23333' d='M9.293 12.95l.707.707 4.243-4.243-1.414-1.414L10 11.586l-2.828-2.829-1.414 1.414L9.293 12.95z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.p-contact-form__input:focus,
.p-contact-form__select:focus,
.p-contact-form__textarea:focus {
    outline: none;
    border-color: #0068C0;
    box-shadow: 0 0 0 2px rgba(0, 104, 192, 0.2);
}

.p-contact-form__textarea {
    min-height: 150px;
    resize: vertical;
}

.p-estimate-photo__upload-area,
.p-contact-form__upload-area,
.upload-area,
#dropArea,
#uploadArea {
    border: 4px dashed #E9F1FE !important;
    border-radius: 8px !important;
    padding: 40px 20px !important;
    text-align: center !important;
    background-color: #E9F1FE !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.p-estimate-photo__upload-area:hover,
.p-contact-form__upload-area:hover,
.upload-area:hover,
.upload-area.dragover,
.p-estimate-photo__upload-area.dragover,
.p-contact-form__upload-area.dragover,
#dropArea:hover,
#dropArea.dragover,
#uploadArea:hover,
#uploadArea.dragover {
    border-color: #007bff !important;
    background-color: #E9F1FE !important;
}

.fas.fa-cloud-upload-alt.upload-icon {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: block !important;
    font-size: 48px !important;
    color: #007bff !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    line-height: 1 !important;
}

.p-contact-form__upload-text, 
.p-estimate-photo__upload-text {
    color: #666 !important;
    font-size: 16px !important;
    margin: 10px 0 !important;
    line-height: 1.5 !important;
}

.p-contact-form__upload-info,
.p-estimate-photo__upload-info {
    text-align: center !important;
    margin: 10px 0 !important;
    color: #666 !important;
}
.p-contact-form__submit-button {
    display: block;
    margin: 40px auto 0;
    width: 250px;
}
.p-contact-form__back-button {
    display: block;
    color: #fff !important;
    background-color: #999 !important;
    margin: 25px auto 0;
    width: 250px;
}
.p-estimate-photo__upload-icon:not(.upload-icon),
.p-estimate-photo__select-button,
.upload-area button:not(.fas),
#dropArea button:not(.fas),
.p-estimate-photo__upload-area button:not(.fas) {
    display: none !important;
}

.p-contact-form__file-input,
input[type="file"] {
    display: none !important;
}

.p-contact-form__preview-container,
.preview-container,
.file-list,
.p-estimate-photo__file-list,
#fileList {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 15px !important;
}

.p-contact-form__preview-item,
.preview-item {
    position: relative !important;
    display: inline-block !important;
}

.p-contact-form__preview-image,
.preview-image {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
}

.p-contact-form__remove-btn,
.remove-btn {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    width: 24px !important;
    height: 24px !important;
    background-color: #ff4444 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.p-contact-form__remove-btn:hover,
.remove-btn:hover {
    background-color: #cc0000 !important;
}

.p-contact-form__file-count,
.file-count {
    margin-top: 10px !important;
    font-size: 14px !important;
    color: #666 !important;
}

#submitUpload {
    background-color: #6c757d !important;
    transition: all 0.3s ease !important;
}

#submitUpload:not(:disabled) {
    background-color: #ff6b35 !important;
    border-color: #ff6b35 !important;
}

#submitUpload:not(:disabled):hover {
    background-color: #e55a2b !important;
    border-color: #e55a2b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3) !important;
}

/* --------------------
    News System Styles
-------------------- */
.news-list-container {
    margin: 40px 0;
}

.news-item-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    text-decoration: none;
}

.news-item-link {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.news-item-image {
    width: 200px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-item-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.news-item-date {
    font-size: 1.4rem;
    color: #999;
}

.news-category {
    display: inline-block;
    font-size: 1.2rem;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #f0f0f0;
    color: #666;
}

.news-category-group {
    display: flex;
    gap: 8px;
}

.news-item-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-item-excerpt {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* Simple news list (dl) */
.news-list {
    margin: 40px 0;
}

.news-list dt {
    padding: 15px 0 5px;
    font-weight: normal;
    color: #666;
    border-bottom: 1px solid #eee;
}

.news-list dd {
    margin: 0;
    padding: 10px 0 15px;
}

.news-list dd a {
    font-size: 1.6rem;
    text-decoration: none;
    color: #333;
}

.news-list dd a:hover {
    text-decoration: underline;
}

/* News detail styles */
.news-detail {
    max-width: 800px;
    margin: 40px auto;
}

.news-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-title {
    font-size: 2.4rem;
    margin: 0 0 15px;
    line-height: 1.4;
    color: #333;
}

.news-meta {
    font-size: 1.4rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-content {
    line-height: 1.8;
    font-size: 1.6rem;
    color: #333;
}

.news-content img {
    max-width: 100%;
    height: auto;
}

.news-content p {
    margin-bottom: 1em;
}

.news-back {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.news-back a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.4rem;
    transition: background-color 0.3s ease;
}

.news-back a:hover {
    background-color: #f5f5f5;
}


/* ============================
    Media Queries (Smartphone)
============================ */
@media (max-width: 767px) {
    .l-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .l-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .l-subinner {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* --------------------
        Header
    -------------------- */
    .l-header__top {
        padding: 10px 0;
    }

    .l-header__top-inner {
        flex-direction: column;
        gap: 10px;
    }

    .l-header__logo img {
        max-width: 100%;
        margin: 15px auto 5px auto;
    }

    .l-header__contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .l-header__tel {
        display: none;
        font-size: 1.6rem;
        align-items: center;
    }

    .l-header__tel i {
        font-size: 2rem;
    }

    .l-header__tel-time {
        font-size: 1rem;
    }

    .l-header__contact-img {
        display: none;
    }

    .l-header__bottom {
        padding: 10px 0;
    }

    .l-header__bottom-inner {
        justify-content: flex-end;
    }

    .l-header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333;
        z-index: 1100;
        padding-top: 80px;
        overflow-y: auto;
    }

    .l-header__nav.is-open {
        display: block;
    }

    .l-header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .l-header__nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .l-header__nav-item a {
        padding: 15px 0;
        text-align: center;
        font-size: 1.8rem;
        border-radius: 0;
        color: #fff;
    }

    .l-header__nav-item a:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .c-hamburger {
        display: block;
    }

    .menu {
        color: #FFF;
        margin-left: -100px;
        display: block;
    }

    .l-hero {
        height: 330px;
    }

    .l-hero__catchcopy {
        margin-top: 20px;
        width: 90%;
        text-align: center;
        margin-bottom: 20px;
    }

    /* --------------------
        Footer
    -------------------- */

    .l-footer__inner {
        width: 90%;
        flex-direction: column;
        gap: 30px;
    }
    
    .l-footer__info {
        width: 100%;
        text-align: center;
        padding-bottom: 30px;
    }
    
    .l-footer__character {
        position: static;
        margin: 20px auto 0;
        display: block;
    }
    
    .l-footer__nav-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 20px 30px;
    }
    
    .l-footer__nav-col:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .l-footer__nav-col:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .l-footer__nav-col:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .l-footer__nav-col {
        flex: none;
    }
    
    .l-footer__area-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
    }
    
    .l-footer__area-group ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .l-footer__area-summary {
        padding: 15px;
    }

    /* --------------------
        Component
    -------------------- */
    .c-section-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .c-section-title .u-underline::after {
        height: 8px;
    }

    .c-section-title--blue-band {
        font-size: 2.6rem;
        padding: 20px 15px;
        margin-top: -45px;
        margin-bottom: 40px;
    }

    .c-section-title--blue-band::after {
        border-width: 10px 10px 0 10px;
        bottom: -10px;
    }

    .c-estimate-btn {
        max-width: 100px;
        bottom: 85px;
        right: 15px;
        z-index: 980;
    }

    .c-scroll-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
        z-index: 990;
    }

    .c-upload-area {
        padding: 30px 15px;
    }

    .c-upload-area__icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .upload-text-desktop {
        display: none;
    }

    .upload-text-mobile {
        display: block;
    }

    /* --------------------
        Hero Section
    -------------------- */
    .p-hero {
        height: 500px;
    }

    .p-hero__img-pc {
        display: none;
    }

    .p-hero__img-sp {
        display: block;
    }

    /* --------------------
        Hero Message Section
    -------------------- */

    .p-hero-message__text {
        font-size: 1.6rem;
    }

    .p-hero-message .u-text-strong {
        font-size: 2.4rem;
    }

    /* --------------------
        One Stop Section
    -------------------- */
    .p-onestop {
        padding: 40px 0;
        min-height: 350px;
    }

    .p-onestop__visual {
        height: 250px;
    }

    .p-onestop__balloon img {
        max-width: 120px;
    }

    .p-onestop__balloon--01 {
        top: 15px;
        left: 20%;
    }

    .p-onestop__balloon--02 {
        top: 8px;
        right: 20%;
    }

    .p-onestop__balloon--03 {
        bottom: 60px;
        left: 2%;
    }

    .p-onestop__balloon--04 {
        bottom: 70px;
        right: 5%;
    }

    .p-onestop__character img {
        max-width: 200px;
    }

    .p-onestop__box {
        padding: 5px 30px;
        margin-top: -40px;
        border-width: 2px;
    }

    .p-onestop__box::before {
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
        border-width: 1px;
    }

    .p-onestop__title {
        font-size: 1.8rem;
    }

    .p-onestop__text {
        font-size: 1.6rem;
    }

    .p-onestop__visual {
        height: 270px;
    }

    .p-onestop__balloon {
        max-width: 100px;
    }

    .p-onestop__character {
        max-width: 200px;
    }

    /* --------------------
        Estimate Photo Section
    -------------------- */
    .p-estimate-photo .l-inner {
        padding: 20px;
        margin: 0 15px;
    }

    .p-estimate-photo .l-inner .c-section-title {
        font-size: 22px;
        margin-bottom: 25px;
        text-align: center;
    }

    .p-estimate-photo__content {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .p-estimate-photo__text-wrap {
        flex: 1;
        text-align: left;
        padding-top: 0;
    }

    .p-estimate-photo__lead {
        font-size: 16px;
    }

    .p-estimate-photo__desc {
        font-size: 16px;
    }

    .p-estimate-photo__image {
        order: 0;
        margin-top: 0;
        flex-shrink: 0;
    }

    .p-estimate-photo__image img {
        width: 100px;
        height: 100px;
    }

    .p-estimate-photo__upload-area {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .p-estimate-photo__submit-button {
        font-size: 1.6rem;
        padding: 12px 25px;
    }

    .p-estimate-photo__region-label {
        font-size: 1.6rem;
    }

    .p-estimate-photo__region-select {
        max-width: 100%;
        font-size: 1.4rem;
        padding: 10px 40px 10px 12px;
    }

    .p-estimate-photo__region-selection {
        margin-bottom: 20px;
    }

    .message {
        font-size: 1.4rem;
        padding: 12px 15px;
    }

    /* --------------------
        Trouble Section
    -------------------- */
    .p-trouble::before {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .p-trouble__head {
        height: auto;
        background-size: 200px auto;
        background-position: top center;
        padding: 120px 20px 20px;
        flex-direction: column;
        background-image: none;

    }

    .p-trouble__text-overlay {
        padding: 0px;
        position: static;
        transform: none;
        text-align: left;
        margin-top: -150px;
        padding-left: 0px;
    }

    .p-trouble__subtitle {
        font-size: 20px;
    }

    .p-trouble__title {
        font-size: 20px;
        text-align: left;
    }

    .p-trouble__list {
        grid-template-columns: 1fr;
    }

    .p-trouble__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .p-trouble__item {
        height: 154px;
    }

    .p-trouble__item-text {
        font-size: 1.6rem;
        padding: 15px;
    }

    .p-trouble__solution-img {
        width: 90%;
    }

    .p-trouble__arrow-wrap {
        padding: 10px;
        width: 80%;
    }

    .p-trouble__arrow-wrap::before,
    .p-trouble__arrow-wrap::after {
        width: 12px;
        border-width: 2px;
    }

    .trouble-black-text,
    .trouble-blue-text {
        font-size: 22px;
    }

    .trouble-bottom-text {
        font-size: 22px;
    }

    .trouble-orange-box {
        padding: 5px 10px;
        font-size: 22px;
        margin: 0 2px;
    }

    /* --------------------
        Service Section
    -------------------- */
    .p-service__list {
        grid-template-columns: 1fr;
    }

    .p-service__item-img-wrap {
        height: 200px;
    }

    .p-service .c-section-title {
        font-size: 2.4rem;
        margin-bottom: 30px;
        margin-top: 0px;
    }

    .p-service .c-section-title img {
        vertical-align: top;
    }

    .p-service .c-section-title .u-underline {
        font-size: 3rem;
        margin-top: -40px;
        display: block;
    }

    .p-service__item-title {
        font-size: 1.8rem;
    }

    .p-service__item-text {
        font-size: 1.6rem;
    }

    /* --------------------
        Area Section
    -------------------- */
    .p-area {
        padding: 60px 0;
    }

    .p-area__content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .p-area__left {
        align-items: center;
        text-align: center;
    }

    .p-area__title-wrapper {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .p-area__icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .p-area__title {
        font-size: 2rem;
    }

    .p-area__title-underline {
        font-size: 2.8rem;
    }

    .p-area__list {
        max-width: 70%;
    }

    .p-area__item {
        margin: 0 auto;
        font-size: 1.6rem;
    }

    /* --------------------
        Contact Banner Section
    -------------------- */
    .p-contact-banner {
        padding: 30px 0;
        background-image: url('../img/sec06_bg.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .p-contact-banner__lead-wrap {
        padding: 10px 20px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .p-contact-banner__lead {
        font-size: 1.8rem;
        white-space: normal;
    }

    .p-contact-banner__content {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-bottom: 15px;
    }

    .p-contact-banner__tel {
        width: calc(100% - 30px);
        font-size: 2.8rem;
        padding: 15px 20px;
    }

    .p-contact-banner__tel-head {
        font-size: 2rem;
    }

    .p-contact-banner__tel i {
        font-size: 2.8rem;
    }

    .p-contact-banner__buttons {
        width: calc(100% - 30px);
        gap: 10px;
    }

    .p-contact-banner__button {
        width: 100%;
        font-size: 1.4rem;
        padding: 5px;
    }

    .p-contact-banner__button i {
        font-size: 2.4rem;
    }

    .p-contact-banner__tel-time {
        font-size: 1.5rem;
        margin-top: 10px;
    }

    /* --------------------
        Reason Section
    -------------------- */
    .p-reason__item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .p-reason__item-number {
        font-size: 2.8rem;
    }

    .p-reason__item-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .p-reason__item-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .p-reason__item-img-wrap {
        width: 100%;
        max-width: 300px;
    }

    .p-reason .c-section-title {
        font-size: 2.4rem;
        margin-bottom: 30px;
        margin-top: 0px;
    }

    .p-reason .c-section-title img {
        vertical-align: top;
    }

    .p-reason .c-section-title .u-underline {
        font-size: 3rem;
        margin-top: -40px;
        display: block;
    }

    /* --------------------
        Flow Section
    -------------------- */
    .p-flow .c-section-title {
        font-size: 2.4rem;
    }

    .p-flow__lead-text {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .p-flow__list {
        gap: 20px;
    }

    .p-flow__item {
        padding-left: 10px;
        gap: 10px;
    }

    .p-flow__item::before {
        left: 32.5px;
        height: calc(100% + 20px);
    }

    .p-flow__item-number {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .p-flow__item-content {
        gap: 10px;
        padding-bottom: 20px;
        flex-direction: column;
    }

    .p-flow__item-icon {
        width: 45px;
        height: 45px;
        margin-top: 0;
        align-self: flex-start;
    }

    .p-flow__item-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .p-flow__item-text {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    /* --------------------
        Voice Section
    -------------------- */
    .p-voice .c-section-title {
        font-size: 2rem;
    }

    .p-voice__item-icon {
        width: 50px;
        margin-left: 5px;
        margin-bottom: 15px;
    }

    .p-voice .u-underline {
        font-size: 2.5rem;
        margin-left: 0px;
    }

    .p-voice__list {
        grid-template-columns: 1fr;
    }

    .p-voice__item {
        width: 90%;
        margin:0px auto;
    }

    .p-voice__item-img-wrap {
        margin-top: 0px;
    }

    .p-voice__item-title {
        font-size: 1.8rem;
    }

    .p-voice__item-text {
        font-size: 1.4rem;
    }

    /* --------------------
        FAQ Section
    -------------------- */

    .p-faq .c-section-title {
        font-size: 2.4rem;
    }

    .p-faq__list {
        padding: 15px;
    }

    .p-faq__item {
        padding: 15px 20px 0 20px;
    }

    .p-faq__question {
        font-size: 1.6rem;
    }

    .p-faq__q-icon {
        font-size: 2.4rem;
    }

    .p-faq__answer {
        padding-top: 10px;
        padding-bottom: 15px;
        padding-left: calc(2.4rem + 15px);
        padding-right: 20px;
        margin-left: calc(-20px + 2.4rem + 15px);
        margin-right: -20px;
        width: calc(100% - (2.4rem + 15px));
    }

    .p-faq__answer-text {
        padding: 0;
    }

    /* --------------------
        SDGs Section
    -------------------- */

    .p-sdgs__inner-wrap {
        width: 90%;
        padding: 0 5% 30px 5%;
    }

    .p-sdgs__lead-text {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .p-sdgs h2 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .p-sdgs h3 {
        font-size: 2rem;
    }

    .p-sdgs__logo {
        width: 80%;
    }

    .p-sdgs .c-section-title {
        color: #FFF;
        background-color: #0068C0;
        border-radius: 10px 10px 0px 0px;
        margin: 0px -7% 40px -7%;
        width: auto;
        font-size: 2rem;
    }

    .p-sdgs__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .p-sdgs__item {
        width: 100%;
        max-width: 400px;
        padding: 15px;
    }

    .p-sdgs__item:nth-child(1),
    .p-sdgs__item:nth-child(2),
    .p-sdgs__item:nth-child(3),
    .p-sdgs__item:nth-child(4),
    .p-sdgs__item:nth-child(5) {
        grid-column: unset;
        grid-row: unset;
    }

    /* --------------------
        News / Blog Section
    -------------------- */
    .p-news__list,
    .p-blog__list {
        grid-template-columns: 1fr;
    }

    .p-news__item-img-wrap,
    .p-blog__item-img-wrap {
        height: 100px;
    }

    .p-news__item-date,
    .p-blog__item-date {
        font-size: 1.1rem;
    }

    .p-news__item-title,
    .p-blog__item-title {
        font-size: 1.8rem;
    }

    .p-news__item-text,
    .p-blog__item-text {
        font-size: 1.3rem;
    }

    /* --------------------
        Contact Form Section
    -------------------- */
    .p-contact-form {
        padding-top: 30px;
        width: 100%;
        padding: 30px;
    }

    .p-contact-form__inner-wrap {
        width: 95%;
        padding: 0 5% 30px 5%;
    }

    .p-contact-form h2 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .p-contact-form .c-section-title {
        color: #FFF;
        background-color: #0068C0;
        border-radius: 10px 10px 0px 0px;
        margin: 0px -7% 40px -7%;
        width: auto;
        font-size: 2rem;
    }

    .p-contact-form__group {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .p-contact-form__label {
        width: 100%;
        margin-bottom: 5px;
        font-size: 1.4rem;
    }

    .p-contact-form__input-wrap {
        width: 100%;
        box-sizing: border-box;
    }

    .p-contact-form__input,
    .p-contact-form__select,
    .p-contact-form__textarea {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 1.4rem;
        padding: 10px 12px;
    }

    .p-contact-form__upload-area {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .p-contact-form__submit-button {
        width: 100%;
        font-size: 1.6rem;
        padding: 12px 25px;
        margin-top: 30px;
    }
}