/* リセチE�E�E�E��E�E�E�とベ�Eス設宁E*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #007acc;
    letter-spacing: 0.1em;
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav a:hover {
    color: #007acc;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007acc;
    transition: width 0.3s ease;
}
.nav a:hover::after {
    width: 100%;
}
/* ハンバ�Eガーメニュー */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
    margin-left: auto;
}
.hamburger-line {
    width: 100%;
    height: 3px;
    background: #007acc;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* ヒ�Eローセクション */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease, opacity 2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.hero-main-image.active {
    opacity: 1;
}
.hero:hover .hero-main-image {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0;
}
.hero-text {
    max-width: 600px;
    margin-left: 0;
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}
        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: #007acc;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0);
}
.btn-primary:hover {
    background: #005a99;
    transform: translateY(-3px);
}
.phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}
.phone-icon {
    margin-right: 8px;
    vertical-align: middle;
}
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0);
}
.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}
/* ニュースチE�E�E�E��E�E�E�チE�E�E�E��E�E�E�ー */
.news-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 48px;
    z-index: 3;
    overflow: hidden;
}
.news-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}
.news-content span {
    color: #fff;
    font-weight: 500;
    margin-right: 3rem;
    padding: 0 1rem;
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
/* セクション共送E*/
section {
    padding: 5rem 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
    word-break: keep-all;
    overflow-wrap: break-word;
}
/* 私たちにつぁE�E�E�E��E�E�E� */
.overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.overview-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}
.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
}
.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    text-align: left;
    line-height: 1.8;
}
.overview-image {
    overflow: hidden;
    border-radius: 50%;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    max-width: 100%;
}
.overview-image:hover {
    transform: rotate(0deg) scale(1.02);
}
/* サービス紹仁E*/
.services {
    background: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 300px;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 204, 0.1), transparent);
    transition: left 0.5s ease;
}
.service-card:hover::before {
    left: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: #007acc;
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.service-card p {
    color: #666;
    line-height: 1.6;
}
.service-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.service-details li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-details li::before {
    content: '◁E;
    color: #007acc;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.1rem;
}
/* 特徴・強み */
.strengths {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.strengths-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.strengths-text {
    text-align: left;
    margin: 0;
    padding: 0 1rem;
}
.strengths-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
}
.strengths-list {
    list-style: none;
    text-align: left;
}
.strengths-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
    position: relative;
    color: #555;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.strengths-list li::before {
    content: '✁E;
    color: #007acc;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.strengths-image {
    overflow: hidden;
    border-radius: 50%;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}
.strengths-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}
.strengths-image:hover {
    transform: rotate(0deg) scale(1.02);
}
/* 支援企業実績 */
.achievements {
    background: #fff;
    padding: 4rem 0;
}
.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.achievements-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.stat-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    position: relative;
}
.stat-header {
    background: #333;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    margin: -2rem -2rem 1.5rem -2rem;
}
.stat-value {
    margin-bottom: 1.5rem;
}
.highlight-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    border-bottom: 4px solid #ff6b35;
    padding-bottom: 0.5rem;
}
.unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-left: 0.5rem;
}
.stat-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}
.highlight-text {
    color: #ff6b35;
    font-weight: 600;
}
.supported-companies {
    margin-top: 4rem;
}
.companies-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}
.companies-title::before,
.companies-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: #333;
}
.companies-title::before {
    left: -120px;
}
.companies-title::after {
    right: -120px;
}
.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.company-category {
    background: #f8f9fa;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}
.category-title {
    background: #333;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    margin: -2rem -2rem 1.5rem -2rem;
    text-align: center;
}
.sub-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.sub-category h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    background: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
}
.sub-category ul {
    list-style: none;
    padding: 0;
}
.sub-category li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.sub-category li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
}
/* はじめての方へ */
.voices {
    background: #bbdefb;
    width: 100%;
    padding: 4rem 0;
}
.voices .section-title {
    margin-bottom: 3rem;
}
.subtitle-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}
.first-time-content {
    max-width: 800px;
    margin: 0 auto;
}
.intro-text {
    text-align: center;
    margin-bottom: 3rem;
}
.intro-description {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

/* PC版では改行タグを非表示にする */
@media (min-width: 769px) {
    .intro-description br {
        display: none;
    }
}
.concerns-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    border: 1px solid #e0e0e0;
}
.concerns-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.concerns-list {
    list-style: none;
    padding: 0;
}
.concerns-list li {
    font-size: 1.1rem;
    color: #555;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
}
.concerns-list li:last-child {
    border-bottom: none;
}
.concerns-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007acc;
    font-weight: bold;
    font-size: 1.5rem;
}
.promise-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.promise-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #007acc;
    margin-bottom: 1.5rem;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.promise-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
}
/* お客様�E声 */
.customer-voices {
    background: #fff;
    padding: 3rem 0 2.5rem;
}
.customer-voices .section-title {
    margin-bottom: 2rem;
}
/* 実績紹仁E*/
.achievements {
    background: #fff;
    padding: 4rem 0;
}
.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
/* ビフォーアフター写真セクション */
.before-after-section {
    margin-bottom: 4rem;
}
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.before-after-item {
    text-align: center;
}
.before-after-image {
    display: flex;
    gap: 1rem;
    height: 250px;
    margin-bottom: 1rem;
}
.before-image,
.after-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.before-image:hover img,
.after-image:hover img {
    transform: scale(1.05);
}
.before-label,
.after-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.before-label {
    background: rgba(220, 53, 69, 0.8);
}
.after-label {
    background: rgba(40, 167, 69, 0.8);
}
/* 実績チE�E�E�E��E�E�E�ストセクション */
.achievements-text-section {
    margin-top: 3rem;
}
.achievements-text-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.achievement-text-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
}
.achievement-text-item:hover {
    transform: translateY(-3px);
    border-color: #007acc;
}
.achievement-text-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.achievement-text-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
/* レスポンシブ対忁E*/
@media (max-width: 1024px) {
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .achievements-text-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .achievements-text-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .before-after-image {
        height: 200px;
        gap: 0.8rem;
    }
    .achievement-text-item {
        padding: 1.5rem;
    }
    .achievement-text-item h3 {
        font-size: 1.2rem;
    }
    .achievement-text-item p {
        font-size: 0.9rem;
    }
}
/* お客様�E声 - スライダーチE��イン */
.customer-voices {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.voices-slider {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.voices-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    padding: 0 2rem;
}
.voice-item {
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    animation-delay: calc(var(--item-index) * 0.1s);
    width: 320px;
    min-width: 280px;
    max-width: 400px;
}

.voice-item.aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 吁E��イチE��に遁E��を設宁E*/
.voice-item:nth-child(1) { --item-index: 0; }
.voice-item:nth-child(2) { --item-index: 1; }
.voice-item:nth-child(3) { --item-index: 2; }
.voice-item:nth-child(4) { --item-index: 3; }
.voice-item:nth-child(5) { --item-index: 4; }
.voice-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 300px;
    max-height: 300px;
    overflow: hidden;
    flex: 1;
}
.voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007acc 0%, #00a8ff 100%);
    border-radius: 16px 16px 0 0;
    transition: height 0.3s ease;
}
.voice-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 204, 0.05), transparent);
    transition: left 0.6s ease;
}
.voice-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 122, 204, 0.15);
}
.voice-card:hover::before {
    height: 6px;
}
.voice-card:hover::after {
    left: 100%;
}
.voice-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.voice-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
    flex: 1;
    font-style: italic;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    position: relative;
    transition: all 0.3s ease;
}
.voice-text::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: -10px;
    font-size: 2rem;
    color: #007acc;
    opacity: 0.3;
    font-family: serif;
    transition: all 0.3s ease;
}
.voice-text::after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: -5px;
    font-size: 2rem;
    color: #007acc;
    opacity: 0.3;
    font-family: serif;
    transition: all 0.3s ease;
}
.voice-card:hover .voice-text::before,
.voice-card:hover .voice-text::after {
    opacity: 0.6;
    transform: scale(1.1);
}
.voice-meta {
    border-top: 1px solid #f1f3f4;
    padding-top: 1rem;
    margin-top: auto;
    transition: all 0.3s ease;
}
.voice-card:hover .voice-meta {
    border-top-color: #007acc;
}
.voice-author {
    font-weight: 600;
    color: #007acc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.voice-card:hover .voice-author {
    color: #005a99;
    transform: translateX(5px);
}
.voice-location {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.voice-card:hover .voice-location {
    color: #333;
    transform: translateX(5px);
}
.voice-service {
    background: #f8f9fa;
    color: #007acc;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.voice-card:hover .voice-service {
    background: #007acc;
    color: #fff;
    transform: translateY(-2px);
    border-color: #007acc;
}

/* スライダーナビゲーション */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: #007acc;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 122, 204, 0.3);
}

.slider-btn:hover {
    background: #005a99;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.4);
}

.slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.5;
}

.slider-btn:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007acc;
    transform: scale(1.2);
}

.dot:hover {
    background: #007acc;
    transform: scale(1.1);
}
.swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 1.2rem;
}
.swiper-pagination-bullet {
    background: #007acc;
}
.swiper-pagination-bullet-active {
    background: #007acc;
}
.swiper-button-prev,
.swiper-button-next {
    color: #007acc;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}
/* 会社概要E*/
.company {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 4rem 0;
    text-align: center;
}
.company .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.company-content {
    width: 100%;
    display: flex;
    justify-content: center;
}
.company-info {
    width: 100%;
    max-width: 900px;
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
}
.outline-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e0e0e0;
}
.outline-item {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #e0e0e0;
}
.outline-item:last-child {
    border-bottom: none;
}
.outline-label {
    font-weight: 700;
    color: #333;
    background: #f8f9fa;
    padding: 1rem;
    width: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.outline-value {
    color: #666;
    padding: 1rem;
    flex: 1;
    display: flex;
    align-items: center;
}
/* レスポンシブ対忁E*/
@media (max-width: 768px) {
    .company {
        padding: 2rem 0;
    }
    .company .container {
        padding: 0 15px;
    }
    .outline-list {
        max-width: 100%;
    }
    .outline-label {
        width: 120px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .outline-value {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}
.company-philosophy {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.company-philosophy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}
.company-philosophy p {
    color: #666;
    line-height: 1.6;
}
.company-partners h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}
.company-partners ul {
    list-style: none;
}
.company-partners li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}
/* お問ぁE�E�E�E��E�E�E�わせ */
.contact {
    background: #fff;
}
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contact-form-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}
.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-method h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}
.contact-method p {
    margin-bottom: 0.5rem;
    color: #666;
}
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 2rem;
    width: 100%;
    display: block;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    width: 100%;
}

/* 必須・任意の表示スタイル */
label[for="name"]:after,
label[for="email"]:after,
label[for="message"]:after {
    content: "（必須）";
    color: #e74c3c;
    font-weight: 600;
    margin-left: 0.5rem;
}

label[for="phone"]:after {
    content: "（任意）";
    color: #999;
    font-weight: 600;
    margin-left: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007acc;
}
.btn-submit {
    width: 100%;
    background: #007acc;
    color: #fff;
    padding: 0 2rem;
    font-size: 1.1rem;
    height: 48px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-submit:hover {
    background: #005a99;
}

/* フォーム通知とステータス */
.form-notice {
    background: #e8f4fd;
    color: #007acc;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid #b3d9f2;
    border-radius: 0;
}

.submit-icon {
    flex-shrink: 0;
}

#status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    font-weight: 600;
    display: none;
}

#status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

#status.loading {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    display: block;
}
/* フッター */
.footer {
    background: #004b7f;
    color: #fff;
    padding: 3rem 0 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}
.footer-section p,
.footer-section li {
    color: #b0c4de;
    margin-bottom: 0.5rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #005a99;
}
.footer-bottom p {
    color: #b0c4de;
    font-size: 0.9rem;
}
/* レスポンシブ対忁E*/
@media (max-width: 768px) {
    /* ヘッダー */
    .header {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
    .header-container {
        padding: 0.5rem 1rem;
        min-height: 60px;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .logo h1 {
        font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
    }
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .nav.active {
        transform: translateX(0);
    }
    .nav ul {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .nav li {
        font-size: 1.5rem;
    }
    .nav a {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem 2rem;
        display: block;
    }
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        padding: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: none;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }
    .mobile-menu-toggle:hover {
        background: none;
    }
    .hamburger-line {
        width: 100%;
        height: 3px;
        background: #007acc;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    /* ヒ�Eロー */
    .hero {
        width: 100%;
        max-width: 100%;
    }
    .hero-content {
        padding: 0 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.3 !important;
    }
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    /* セクション */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 1.8rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    section {
        padding: 2.5rem 0;
        width: 100%;
        max-width: 100%;
    }
    .container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    /* 私たちにつぁE�E�E�E��E�E�E�・強み */
    .overview-content,
    .strengths-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    .overview-text h2 {
        font-size: clamp(1.4rem, 6vw, 1.7rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        text-align: left !important;
        margin-bottom: 1rem;
        padding: 0 10px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .strengths-text h2 {
        font-size: clamp(1.4rem, 6vw, 1.7rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        text-align: center !important;
        margin-bottom: 1rem;
        padding: 0 10px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .overview-text {
        text-align: left !important;
        padding: 0 10px;
        margin: 0 auto;
        width: 100%;
    }
    .strengths-text {
        text-align: center !important;
        padding: 0 10px;
        margin: 0 auto;
        width: 100%;
    }
    .overview-text p {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.5;
        margin-bottom: 0.8rem;
        padding: 0 5px;
        text-align: left !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .strengths-list {
        text-align: center !important;
        padding: 0 10px;
        margin: 0 auto;
        max-width: 100%;
    }
    .strengths-list li {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.5;
        margin-bottom: 0.8rem;
        padding: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .strengths-list li::before {
        margin-right: 0.3rem !important;
        flex-shrink: 0 !important;
    }
    /* サービス */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }
    .service-card {
        min-height: auto;
        padding: 1.2rem;
        text-align: center;
        margin: 0 5px;
    }
    .service-card h3 {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
        word-break: keep-all;
        overflow-wrap: break-word;
        margin-bottom: 0.8rem;
    }
    .service-card p {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        line-height: 1.4;
    }
    .service-details li {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        line-height: 1.4;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* お問ぁE�E�E�E��E�E�E�わせ */
    .contact-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }
    .contact-form-wrapper {
        width: 100%;
        padding: 0 5px;
    }
    .contact-form {
        max-width: 100%;
        padding: 1rem;
        margin: 0 5px;
    }
    .form-group input,
    .form-group textarea {
        font-size: clamp(0.9rem, 4vw, 1rem);
        padding: 0.8rem;
        width: 100%;
    }
    .btn-submit {
        font-size: clamp(1rem, 4vw, 1.1rem);
        padding: 0.9rem;
        height: 48px;
        width: 100%;
    }
    /* 実績 */
    .achievements-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sub-categories {
        grid-template-columns: 1fr;
    }
    /* 会社概要E*/
    .company-content {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        padding: 0 1rem;
    }
    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* ニュースチE�E�E�E��E�E�E�チE�E�E�E��E�E�E�ー */
    .news-ticker {
        height: 40px;
    }
/* スマ�E牁Eお客様�E声�E�レスポンシブ対忁E*/
@media (max-width: 768px) {
    .voices-slider {
        margin-top: 2rem;
        padding: 0 10px;
    }
    
    .voices-track {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .voice-item {
        flex: 0 0 auto;
        width: calc(100vw - 60px);
        max-width: 320px;
        min-width: 280px;
    }
    
    .voice-card {
        padding: 1.5rem;
        min-height: 280px;
        max-height: 280px;
    }
    
    .voice-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .voice-text::before,
    .voice-text::after {
        font-size: 1.5rem;
    }
    
    .voice-author {
        font-size: 1rem;
    }
    
    .voice-location {
        font-size: 0.85rem;
    }
    
    .voice-service {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .voice-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .slider-navigation {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .voices-slider {
        padding: 0 8px;
    }
    
    .voices-track {
        gap: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .voice-item {
        flex: 0 0 auto;
        width: calc(100vw - 40px);
        max-width: 300px;
        min-width: 260px;
    }
    
    .voice-card {
        padding: 1.2rem;
        min-height: 260px;
        max-height: 260px;
    }
    
    .voice-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .voice-text::before,
    .voice-text::after {
        font-size: 1.2rem;
    }
    
    .voice-author {
        font-size: 0.95rem;
    }
    
    .voice-location {
        font-size: 0.8rem;
    }
    
    .voice-service {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .slider-navigation {
        gap: 1rem;
        margin-top: 1.2rem;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 480px) {
    .header-container {
        padding: 0.4rem 0.8rem;
        min-height: 50px;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .logo h1 {
        font-size: clamp(1.2rem, 5vw, 1.4rem) !important;
        text-align: left;
    }
    .mobile-menu-toggle {
        width: 28px;
        height: 22px;
        padding: 4px;
        position: absolute;
        right: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }
    .hamburger-line {
        height: 2px;
    }
    .hero {
        width: 100%;
        max-width: 100%;
    }
    .hero-content {
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.2 !important;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: clamp(0.8rem, 4vw, 0.9rem);
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        max-width: 280px;
    }
    .section-title {
        font-size: clamp(1.3rem, 6vw, 1.6rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        margin-bottom: 1.2rem;
        padding: 0 8px;
    }
    .overview-text h2 {
        font-size: clamp(1.2rem, 6vw, 1.5rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        text-align: left !important;
        margin-bottom: 0.8rem;
        padding: 0 8px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .strengths-text h2 {
        font-size: clamp(1.2rem, 6vw, 1.5rem) !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        text-align: center !important;
        margin-bottom: 0.8rem;
        padding: 0 8px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .overview-text {
        text-align: left !important;
        padding: 0 8px;
        margin: 0 auto;
        width: 100%;
    }
    .strengths-text {
        text-align: center !important;
        padding: 0 8px;
        margin: 0 auto;
        width: 100%;
    }
    .overview-text p {
        font-size: clamp(0.8rem, 4vw, 0.9rem);
        line-height: 1.4;
        margin-bottom: 0.6rem;
        padding: 0 5px;
        text-align: left !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .strengths-list {
        text-align: center !important;
        padding: 0 8px;
        margin: 0 auto;
    }
    .strengths-list li {
        font-size: clamp(0.8rem, 4vw, 0.9rem);
        line-height: 1.4;
        margin-bottom: 0.6rem;
        padding: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .service-card {
        padding: 1rem;
        margin: 0 8px;
    }
    .service-card h3 {
        font-size: clamp(1rem, 5vw, 1.2rem);
        word-break: keep-all;
        overflow-wrap: break-word;
        margin-bottom: 0.6rem;
    }
    .service-card p {
        font-size: clamp(0.8rem, 4vw, 0.85rem);
        line-height: 1.3;
    }
    .service-details li {
        font-size: clamp(0.8rem, 4vw, 0.85rem);
        line-height: 1.3;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contact-form {
        padding: 1rem;
        margin: 0 8px;
    }
    .form-group {
        margin-bottom: 1.2rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: clamp(0.85rem, 4vw, 0.9rem);
    }
    .btn-submit {
        font-size: clamp(0.9rem, 4vw, 1rem);
        height: 44px;
        padding: 0 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .nav a {
        font-size: clamp(1.2rem, 5vw, 1.3rem);
        padding: 0.8rem 1.5rem;
    }
    .nav ul {
        gap: 2rem;
    }
    section {
        padding: 2rem 0;
        width: 100%;
        max-width: 100%;
    }
    .container {
        padding: 0 8px;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    /* 画像�E最適匁E*/
    .overview-image,
    .strengths-image {
        max-width: 280px;
        margin: 0 auto;
    }
    /* ニュースチE�E�E�E��E�E�E�チE�E�E�E��E�E�E�ー */
    .news-ticker {
        height: 36px;
    }
    .news-content span {
        font-size: 0.8rem;
        margin-right: 1.5rem;
    }
}
/* アニメーション */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}
/* お客様�E声セクションの特別なアニメーション */
.customer-voices .section-title {
    animation: slideInFromBottom 0.8s ease-out;
}
.voice-item {
    animation: slideInFromBottom 0.8s ease-out forwards;
    animation-delay: calc(var(--item-index) * 0.15s);
    animation-fill-mode: both;
}
/* カード�EのチE�E�E�E��E�E�E�ストアニメーション */
.voice-text {
    animation: slideInFromBottom 0.6s ease-out 0.3s forwards;
    animation-fill-mode: both;
    opacity: 0;
}
.voice-card.aos-animate .voice-text {
    animation: slideInFromBottom 0.6s ease-out 0.3s forwards;
}
/* ホバーエフェクチE*/
.service-card:hover .service-icon img {
    animation: pulse 0.6s ease;
}
.achievement-item:hover .achievement-image img {
    animation: float 2s ease infinite;
}
/* スクロールアニメーション */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos].aos-animate {
    opacity: 1;
    transform: none !important;
}
/* カスタムスクロールバ�E */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #007acc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #005a99;
}
/* スマ�E版ヒーロー高さ調整�E�E�E�E�E�E�E�縦を少し短く！E*/
@media (max-width: 768px) {
    .hero {
        height: 85vh;
        height: 85svh;
        height: 85dvh;
    }
}
@media (max-width: 480px) {
    .hero {
        height: 80vh;
        height: 80svh;
        height: 80dvh;
    }
}
/* スマ�E牁Eはじめての方へ�E�E�E�E�E�E�E�紹介文の改行最適匁E*/
@media (max-width: 768px) {
    .intro-description {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 22em;
        line-height: 1.6;
        text-wrap: balance;
        word-break: keep-all;
    }
}
@media (max-width: 480px) {
    .intro-description {
        max-width: 20em;
        line-height: 1.5;
        text-wrap: balance;
        word-break: keep-all;
    }
}
/* スマ�E牁Eお客様�E声�E�E�E�E�E�E�E�カードとドット間の余白を詰める */
@media (max-width: 768px) {
    .customer-voices .voices-slider {
        padding-bottom: 0.5rem;
    }
    .customer-voices .swiper-pagination {
        margin-top: 0.8rem;
    }
}
@media (max-width: 480px) {
    .customer-voices .voices-slider {
        padding-bottom: 0.25rem;
    }
    .customer-voices .swiper-pagination {
        margin-top: 0.6rem;
    }
}
/* スマ�E牁E会社概要E�E�E�E��E�E�E�値を左揁E�E�E�E��E�E�E� */
@media (max-width: 768px) {
    .company .outline-value {
        text-align: left !important;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .company .outline-value {
        text-align: left !important;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
/* スマ�E牁E強み�E�E�E�E�E�E�E�Eつ目の頁E�E�E�E��E�E�E�めE行表示に固宁E*/
@media (max-width: 768px) {
    .strengths-list li:nth-child(3) {
        white-space: nowrap !important;
        font-size: clamp(0.7rem, 3.4vw, 0.95rem);
        letter-spacing: 0;
    }
}
@media (max-width: 480px) {
    .strengths-list li:nth-child(3) {
        white-space: nowrap !important;
        font-size: clamp(0.66rem, 3.3vw, 0.9rem);
        letter-spacing: 0;
    }
}
/* スマ�E牁Eはじめての方へ・見�Eしを1行に固宁E*/
@media (max-width: 768px) {
    .concerns-title {
        white-space: nowrap !important;
        text-align: center !important;
        width: 100%;
        line-height: 1.2;
        font-size: clamp(1rem, 5vw, 1.3rem);
    }
}
@media (max-width: 480px) {
    .concerns-title {
        white-space: nowrap !important;
        text-align: center !important;
        width: 100%;
        line-height: 1.2;
        font-size: clamp(0.95rem, 5.2vw, 1.2rem);
} 
 
 / *   g~y�]~�i�0ڏ;S�0:~%PA�:~f�:~n�A�y�:~x�g~{�g~o�g~w�]~g�]~s��h�􃙅�0���(�t�  * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . v o i c e s   { 
 
                 p a d d i n g :   2 r e m   0 ; 
 
         } 
 
         
 
         . v o i c e s   . c o n t a i n e r   { 
 
                 p a d d i n g :   0   1 0 p x ; 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
         } 
 
         
 
         . f i r s t - t i m e - c o n t e n t   { 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
                 p a d d i n g :   0   5 p x ; 
 
         } 
 
         
 
         . i n t r o - t e x t   { 
 
                 m a r g i n - b o t t o m :   2 r e m ; 
 
                 p a d d i n g :   0   5 p x ; 
 
         } 
 
         
 
         . i n t r o - d e s c r i p t i o n   { 
 
                 f o n t - s i z e :   c l a m p ( 1 r e m ,   4 . 5 v w ,   1 . 2 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 5 ; 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
                 p a d d i n g :   0   5 p x ; 
 
         } 
 
         
 
         . c o n c e r n s - s e c t i o n   { 
 
                 p a d d i n g :   1 . 5 r e m ; 
 
                 m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
                 m a r g i n :   0   5 p x   1 . 5 r e m   5 p x ; 
 
         } 
 
         
 
         . c o n c e r n s - l i s t   l i   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 9 r e m ,   4 v w ,   1 r e m ) ; 
 
                 p a d d i n g :   0 . 6 r e m   0 ; 
 
                 p a d d i n g - l e f t :   1 . 5 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - s e c t i o n   { 
 
                 p a d d i n g :   1 . 5 r e m ; 
 
                 m a r g i n :   0   5 p x ; 
 
         } 
 
         
 
         . p r o m i s e - t i t l e   { 
 
                 f o n t - s i z e :   c l a m p ( 1 . 1 r e m ,   4 . 5 v w ,   1 . 3 r e m ) ; 
 
                 m a r g i n - b o t t o m :   1 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - t e x t   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 9 r e m ,   4 v w ,   1 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 6 ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
 
         . v o i c e s   { 
 
                 p a d d i n g :   1 . 5 r e m   0 ; 
 
         } 
 
         
 
         . v o i c e s   . c o n t a i n e r   { 
 
                 p a d d i n g :   0   8 p x ; 
 
         } 
 
         
 
         . f i r s t - t i m e - c o n t e n t   { 
 
                 p a d d i n g :   0   3 p x ; 
 
         } 
 
         
 
         . i n t r o - t e x t   { 
 
                 m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
                 p a d d i n g :   0   3 p x ; 
 
         } 
 
         
 
         . i n t r o - d e s c r i p t i o n   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 9 r e m ,   4 v w ,   1 . 1 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 4 ; 
 
                 p a d d i n g :   0   3 p x ; 
 
         } 
 
         
 
         . c o n c e r n s - s e c t i o n   { 
 
                 p a d d i n g :   1 . 2 r e m ; 
 
                 m a r g i n :   0   3 p x   1 . 2 r e m   3 p x ; 
 
         } 
 
         
 
         . c o n c e r n s - l i s t   l i   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 8 r e m ,   3 . 8 v w ,   0 . 9 5 r e m ) ; 
 
                 p a d d i n g :   0 . 5 r e m   0 ; 
 
                 p a d d i n g - l e f t :   1 . 2 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - s e c t i o n   { 
 
                 p a d d i n g :   1 . 2 r e m ; 
 
                 m a r g i n :   0   3 p x ; 
 
         } 
 
         
 
         . p r o m i s e - t i t l e   { 
 
                 f o n t - s i z e :   c l a m p ( 1 r e m ,   4 v w ,   1 . 2 r e m ) ; 
 
                 m a r g i n - b o t t o m :   0 . 8 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - t e x t   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 8 r e m ,   3 . 8 v w ,   0 . 9 5 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 5 ; 
 
         } 
 
 } 
 
 / *   g~y�]~�i�0ڏ;S�0:~%PA�:~f�:~n�A�y�:~x�g~{�g~o�g~w�]~g�]~s��h�􃙅�0���(�t�  * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . v o i c e s   { 
 
                 p a d d i n g :   2 r e m   0 ; 
 
         } 
 
         
 
         . v o i c e s   . c o n t a i n e r   { 
 
                 p a d d i n g :   0   1 0 p x ; 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
         } 
 
         
 
         . f i r s t - t i m e - c o n t e n t   { 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
                 p a d d i n g :   0   5 p x ; 
 
         } 
 
         
 
         . i n t r o - t e x t   { 
 
                 m a r g i n - b o t t o m :   2 r e m ; 
 
                 p a d d i n g :   0   5 p x ; 
 
         } 
 
         
 
         . i n t r o - d e s c r i p t i o n   { 
 
                 f o n t - s i z e :   c l a m p ( 1 r e m ,   4 . 5 v w ,   1 . 2 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 5 ; 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
                 p a d d i n g :   0   5 p x ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
         
 
         . c o n c e r n s - s e c t i o n   { 
 
                 p a d d i n g :   1 . 5 r e m ; 
 
                 m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
                 m a r g i n :   0   5 p x   1 . 5 r e m   5 p x ; 
 
         } 
 
         
 
         . c o n c e r n s - l i s t   l i   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 9 r e m ,   4 v w ,   1 r e m ) ; 
 
                 p a d d i n g :   0 . 6 r e m   0 ; 
 
                 p a d d i n g - l e f t :   1 . 5 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - s e c t i o n   { 
 
                 p a d d i n g :   1 . 5 r e m ; 
 
                 m a r g i n :   0   5 p x ; 
 
         } 
 
         
 
         . p r o m i s e - t i t l e   { 
 
                 f o n t - s i z e :   c l a m p ( 1 . 1 r e m ,   4 . 5 v w ,   1 . 3 r e m ) ; 
 
                 m a r g i n - b o t t o m :   1 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - t e x t   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 9 r e m ,   4 v w ,   1 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 6 ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
 
         . v o i c e s   { 
 
                 p a d d i n g :   1 . 5 r e m   0 ; 
 
         } 
 
         
 
         . v o i c e s   . c o n t a i n e r   { 
 
                 p a d d i n g :   0   8 p x ; 
 
         } 
 
         
 
         . f i r s t - t i m e - c o n t e n t   { 
 
                 p a d d i n g :   0   3 p x ; 
 
         } 
 
         
 
         . i n t r o - t e x t   { 
 
                 m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
                 p a d d i n g :   0   3 p x ; 
 
         } 
 
         
 
         . i n t r o - d e s c r i p t i o n   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 9 r e m ,   4 v w ,   1 . 1 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 4 ; 
 
                 p a d d i n g :   0   3 p x ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
         
 
         . c o n c e r n s - s e c t i o n   { 
 
                 p a d d i n g :   1 . 2 r e m ; 
 
                 m a r g i n :   0   3 p x   1 . 2 r e m   3 p x ; 
 
         } 
 
         
 
         . c o n c e r n s - l i s t   l i   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 8 r e m ,   3 . 8 v w ,   0 . 9 5 r e m ) ; 
 
                 p a d d i n g :   0 . 5 r e m   0 ; 
 
                 p a d d i n g - l e f t :   1 . 2 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - s e c t i o n   { 
 
                 p a d d i n g :   1 . 2 r e m ; 
 
                 m a r g i n :   0   3 p x ; 
 
         } 
 
         
 
         . p r o m i s e - t i t l e   { 
 
                 f o n t - s i z e :   c l a m p ( 1 r e m ,   4 v w ,   1 . 2 r e m ) ; 
 
                 m a r g i n - b o t t o m :   0 . 8 r e m ; 
 
         } 
 
         
 
         . p r o m i s e - t e x t   { 
 
                 f o n t - s i z e :   c l a m p ( 0 . 8 r e m ,   3 . 8 v w ,   0 . 9 5 r e m ) ; 
 
                 l i n e - h e i g h t :   1 . 5 ; 
 
         } 
 
 } 
 
 