/* CSS变量定义 */
:root {
    /* 通用变量 */
    --bg: #F7F8FA;
    --text: #2B2B2B;
    --line: #E6EAF0;
    --brand: #1F4E79;
    --accent: #C0A46B;
    --white: #FFFFFF;
    --radius: 10px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    /* 业务主题色 */
    --food: #0E4B5A;
    --care: #2F6FA3;
    --buy: #1F4E79;
    
    /* 字体 */
    --sans: 'Noto Sans JP', sans-serif;
    --serif: 'Noto Serif JP', serif;
    
    /* 间距 */
    --section-space: 80px;
    --container-width: 1240px;
    --gutter: 24px;
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.8;
    overflow-x: hidden;
}

/* 容器和栅格系统 */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

/* 通用组件样式 */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.18s ease;
    border: none;
    font-size: 1rem;
    min-height: 44px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--brand);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: var(--line);
    color: var(--text);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: var(--accent);
    color: var(--white);
}

.section {
    padding: var(--section-space) 0;
}

.section-title {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    text-align: center;
}

/* 主题切换 */
.theme-food {
    --brand: var(--food);
}

.theme-care {
    --brand: var(--care);
}

.theme-buy {
    --brand: var(--buy);
}

/* 导航栏 - 参考seminarbase.com样式 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--gutter);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--brand);
}

.logo  img{
 max-width: 40px;
}

.logo-icon {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-right: 8px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.contact-link {
    background-color: var(--brand);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #0d3a5c;
    transform: translateY(-2px);
}

.contact-link:after {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.nav-toggle .bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 0;
}

.nav-toggle .bar:nth-child(1) {
    top: 5px;
}

.nav-toggle .bar:nth-child(2) {
    top: 13px;
}

.nav-toggle .bar:nth-child(3) {
    top: 21px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 13px;
}

/* Hero区域 */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(155, 211, 248, 0.863), rgb(255, 255, 255)), url(../images/hero_02.jpg);
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: linear-gradient(45deg, #f5e6d3, #e8d5c4);
    border-radius: var(--radius) 0 0 var(--radius);
    box-shadow: var(--shadow);
    background-image: url(../images/hero_image.jpg);
  background-size: contain;        /* 整张图完整显示 */
  background-repeat: no-repeat;    /* 不平铺 */
  background-position: center;     /* 居中 */
}

/* 业务介绍 */
.business-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.tab {
    padding: 16px 32px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width 0.3s;
}

.tab.active {
    color: var(--brand);
}

.tab.active:after {
    width: 100%;
}

.business-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.business-content.active {
    display: block;
}

/* 共通板块样式 */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 24px;
    border-left: 3px solid var(--brand);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--line);
    margin-right: 12px;
}

.testimonial-date {
    font-size: 0.875rem;
    opacity: 0.7;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--line);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.access-map {
    height: 400px;
    background-color: var(--line);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* 页脚 - 参考seminarbase.com样式 */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img{
    max-width: 40px;
}

.footer-logo-icon {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--white);
    margin-right: 12px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--brand);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* お問い合わせ模块样式 */
.contact {
    padding: var(--section-space) 0;
    background-color: var(--white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    background-color: var(--bg);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--brand);
}

.contact-item p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.contact-actions {
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-image {
        width: 40%;
    }
    
    .grid-12 {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
        padding: 20px;
    }
    
    .nav-wrapper.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .contact-link {
        margin-top: 16px;
        text-align: center;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 680px;

        top: 10%;
        margin-top: 0px;
        transform: none;
        box-shadow:none;
        border-radius: var(--radius);

        background-image: url(../images/hero_image_sp.jpg);
        background-size: contain;      /* 关键：完整显示整张图，不裁切 */
        background-repeat: no-repeat;  /* 不平铺 */
        background-position: center;   /* 居中 */
 
        
    }
    
    .business-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab {
        width: 100%;
        text-align: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

}

/* 会社紹介ページ専用スタイル */

/* 会社概要 */
.company-profile {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.profile-header {
    background-color: var(--brand);
    color: var(--white);
    padding: 32px;
    text-align: center;
}

.profile-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.profile-header p {
    opacity: 0.9;
}

.profile-content {
    padding: 32px;
}

.profile-item {
    display: flex;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.profile-item:last-child {
    border-bottom: none;
}

.profile-label {
    width: 150px;
    font-weight: 600;
    color: var(--brand);
    flex-shrink: 0;
}

.profile-value {
    flex: 1;
}

.profile-value ul {
    list-style: none;
    padding-left: 0;
}

.profile-value li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.profile-value li:before {
    content: "•";
    color: var(--brand);
    position: absolute;
    left: 0;
}

/* 価値観アイコン */
.value-icon {
    margin-bottom: 16px;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, #0d3a5c 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius);
    text-align: center;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .profile-item {
        flex-direction: column;
    }
    
    .profile-label {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .profile-header {
        padding: 24px 20px;
    }
    
    .profile-content {
        padding: 24px 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
}

/* 事業紹介ページ専用スタイル */

/* サービス概要 */
.services-overview {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 48px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.service-card p {
    margin-bottom: 24px;
    opacity: 0.8;
}

.service-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* サービス詳細 */
.service-detail {
    padding: var(--section-space) 0;
}

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

.service-badge {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.service-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.service-content {
    align-items: center;
    margin-bottom: 0px;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: var(--radius);
    overflow: hidden;

}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
        
}

.service-features h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--text);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-content p {
    opacity: 0.8;
}

/* メニュー */
.service-menu {
    margin-bottom: 60px;
}

.service-menu h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.menu-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text);
}

.menu-item p {
    margin-bottom: 16px;
    opacity: 0.8;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
}

.menu-price span {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* サービス種類 */
.service-types {
    margin-bottom: 60px;
}

.service-types h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text);
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.type-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--line);
}

.type-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text);
}

.type-item p {
    margin-bottom: 16px;
    opacity: 0.8;
}

.type-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* プロセス */
.service-process {
    margin-bottom: 60px;
}

.service-process h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text);
}

.process-step p {
    opacity: 0.8;
}

/* 取扱い品目 */
.service-items {
    margin-bottom: 60px;
}

.service-items h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text);
}

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

.item-category {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    border: 1px solid var(--line);
}

.item-category h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--brand);
    border-bottom: 2px solid var(--line);
    padding-bottom: 8px;
}

.item-category ul {
    list-style: none;
    padding-left: 0;
}

.item-category li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.item-category li:before {
    content: "•";
    color: var(--brand);
    position: absolute;
    left: 0;
}

/* 査定フォーム */
.service-estimate {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.service-estimate h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text);
}

.service-estimate p {
    margin-bottom: 24px;
    opacity: 0.8;
}

.estimate-form {
    max-width: 400px;
    margin: 0 auto;
}

/* CTA */
.service-cta {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .services-grid,
    .menu-grid,
    .type-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .menu-grid,
    .type-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-estimate {
        padding: 24px 20px;
    }
}

/* 買取方法ページ専用スタイル */

/* ページヘッダー */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
    background-image: linear-gradient(rgba(155, 211, 248, 0.863), rgb(255, 255, 255)), url(../images/hero_page.jpg);
}

.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 16px;
    color: rgba(43, 43, 43, 0.7);
}

.breadcrumb a {
    color: var(--brand);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.page-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    opacity: 0.8;
}

/* 買取方法グリッド */
.methods-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.method-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.method-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--brand);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.method-description {
    margin-bottom: 24px;
    opacity: 0.8;
}

.method-features {
    margin-bottom: 32px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature i {
    color: var(--brand);
    margin-right: 12px;
    font-size: 1rem;
}

.feature span {
    font-size: 0.95rem;
}

.method-cta {
    margin-top: auto;
}

/* 買取の流れ */
.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.flow-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background-color: var(--line);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 32px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.step-content p {
    opacity: 0.8;
}

/* 買取品目 */
.items-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text);
}

.category-card ul {
    list-style: none;
    padding-left: 0;
}

.category-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.category-card li:before {
    content: "•";
    color: var(--brand);
    position: absolute;
    left: 0;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(31, 78, 121, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text);
}

.faq-question i {
    color: var(--brand);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

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

.faq-answer p {
    margin: 0;
    opacity: 0.8;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, #0d3a5c 100%);
    color: var(--white);
    padding: 80px 40px;
    text-align: center;
    border-radius: var(--radius);
    margin: 80px 0;
}

.cta-section h2 {
    font-family: var(--serif);
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .items-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .flow-step:not(:last-child):after {
        left: 50%;
        top: 60px;
        bottom: -40px;
        transform: translateX(-50%);
    }
    
    .cta-section {
        padding: 60px 20px;
        margin: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* 採用情報ページ専用スタイル */

/* 採用メッセージ */
.message-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.message-text {
    padding-right: 40px;
}

.message-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #f5e6d3, #e8d5c4);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-image: linear-gradient(rgba(155, 211, 248, 0.014), rgb(255, 255, 255)), url(../images/message_image.jpg);
}

/* 職種タブ */
.job-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}

.job-tab {
    padding: 16px 32px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.job-tab:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width 0.3s;
}

.job-tab.active {
    color: var(--brand);
}

.job-tab.active:after {
    width: 100%;
}

/* 職種グリッド */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 32px;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text);
}

.job-badge {
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-description {
    margin-bottom: 24px;
    opacity: 0.8;
    flex: 1;
}

.job-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.detail-item i {
    color: var(--brand);
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.job-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.job-actions .btn {
    flex: 1;
    text-align: center;
}

/* 採用フロー */
.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.flow-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background-color: var(--line);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 32px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.step-content p {
    opacity: 0.8;
}

/* 福利厚生 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--line);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--brand);
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text);
}

.benefit-card p {
    opacity: 0.8;
}

/* 社員の声 */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.voice-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    border-left: 3px solid var(--brand);
}

.voice-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.voice-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--line);
    margin-right: 16px;
}

.voice-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.voice-position {
    font-size: 0.875rem;
    opacity: 0.7;
}

.voice-card p {
    font-style: italic;
    opacity: 0.8;
    line-height: 1.6;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .message-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .message-text {
        padding-right: 0;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .job-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .job-tab {
        width: 100%;
        text-align: center;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-badge {
        margin-top: 8px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .flow-step:not(:last-child):after {
        left: 50%;
        top: 60px;
        bottom: -40px;
        transform: translateX(-50%);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .voices-grid {
        grid-template-columns: 1fr;
    }
}

/* プライバシーポリシーページ専用スタイル */

/* ポリシーコンテンツ */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 40px;
    border-left: 4px solid var(--brand);
}

.policy-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.policy-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 32px;
}

.policy-section h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--brand);
    border-bottom: 2px solid var(--line);
    padding-bottom: 12px;
}

.policy-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
}

.policy-section li:before {
    content: "•";
    color: var(--brand);
    font-weight: bold;
    position: absolute;
    left: -16px;
}

/* 利用目的グリッド */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.purpose-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--line);
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.5rem;
}

.purpose-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text);
}

.purpose-card p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

/* 安全管理措置 */
.security-measures {
    margin: 32px 0;
}

.measure {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    border-left: 3px solid var(--brand);
}

.measure:last-child {
    margin-bottom: 0;
}

.measure h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text);
}

.measure p {
    margin: 0;
    opacity: 0.8;
    line-height: 1.6;
}

/* お問い合わせ詳細 */
.contact-details {
    margin-top: 24px;
}

.contact-item {
    /*display: flex;*/
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
}

.contact-item i {
    color: var(--brand);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 4px;
    min-width: 24px;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

/* 制定日 */
.policy-date {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.policy-date p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .purpose-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-section {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .policy-intro {
        padding: 24px 20px;
    }
    
    .policy-section {
        padding: 24px 20px;
    }
    
    .policy-section h2 {
        font-size: 1.375rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .purpose-card {
        padding: 20px 16px;
    }
    
    .measure {
        padding: 20px 16px;
    }
}

/* サイトマップページ専用スタイル */

/* サイトマップ紹介文 */
.sitemap-intro {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 48px;
    text-align: center;
    border-left: 4px solid var(--brand);
}

.sitemap-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.sitemap-intro a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
}

.sitemap-intro a:hover {
    text-decoration: underline;
}

/* サイトマップグリッド */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.sitemap-category {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--line);
}

.category-header {
    background: var(--brand);
    color: var(--white);
    padding: 24px;
    display: flex;
    align-items: center;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.5rem;
}

.category-header h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

/* サイトマップリンク */
.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links > li {
    border-bottom: 1px solid var(--line);
}

.sitemap-links > li:last-child {
    border-bottom: none;
}

.sitemap-link {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.sitemap-link:hover {
    background-color: rgba(31, 78, 121, 0.05);
    color: var(--brand);
}

.sitemap-link i {
    color: var(--brand);
    margin-right: 12px;
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.sitemap-link:hover i {
    transform: scale(1.1);
}

/* サブリンク */
.sublinks {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--bg);
    display: none;
}

.sitemap-links > li:hover .sublinks {
    display: block;
}

.sublinks li {
    border-top: 1px solid var(--line);
}

.sublinks a {
    display: block;
    padding: 16px 24px 16px 56px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.sublinks a:before {
    content: "›";
    position: absolute;
    left: 40px;
    color: var(--brand);
    font-weight: bold;
}

.sublinks a:hover {
    background-color: rgba(31, 78, 121, 0.08);
    color: var(--brand);
    padding-left: 60px;
}

/* 検索ヘルプ */
.search-help {
    background: linear-gradient(135deg, var(--brand) 0%, #0d3a5c 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
}

.search-help-content h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.search-help-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.search-help-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 400px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--sans);
    outline: none;
}

.search-button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.search-button:hover {
    background: #b08c4a;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-help-actions {
        flex-direction: column;
    }
    
    .search-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-header h2 {
        font-size: 1.375rem;
    }
    
    .sitemap-link {
        padding: 16px 20px;
    }
    
    .sublinks a {
        padding: 12px 20px 12px 48px;
    }
    
    .sublinks a:before {
        left: 32px;
    }
    
    .sublinks a:hover {
        padding-left: 52px;
    }
    
    .search-help {
        padding: 40px 20px;
    }
    
    .search-help-content h3 {
        font-size: 1.5rem;
    }
}

/* お問い合わせページ専用スタイル */

/* お問い合わせフォーム */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 40px;
    text-align: center;
    border-left: 4px solid var(--brand);
}

.form-intro h2 {
    font-family: var(--serif);
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text);
}

.form-intro p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.required-note {
    font-size: 0.875rem;
    color: #d32f2f;
}

.required-mark {
    color: #d32f2f;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(31, 78, 121, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* 郵便番号入力 */
.postal-code-input {
    display: flex;
    gap: 12px;
}

.postal-code-input .form-control {
    flex: 1;
}

.postal-code-input .btn {
    white-space: nowrap;
}

/* チェックボックス */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid var(--line);
    border-radius: 4px;
    margin-right: 12px;
    transition: all 0.3s;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--brand);
    border-color: var(--brand);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label a {
    color: var(--brand);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* フォームアクション */
.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.form-actions .btn {
    min-width: 120px;
}

/* 連絡方法グリッド */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.contact-method {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text);
}

.method-info {
    margin-bottom: 20px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
}

.email-address {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 8px;
}

.business-hours p,
.address p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.contact-method p {
    opacity: 0.8;
    line-height: 1.5;
}

/* アクセス情報 */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.access-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text);
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.access-item i {
    color: var(--brand);
    font-size: 1.5rem;
    margin-top: 4px;
    min-width: 24px;
}

.access-item h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text);
}

.access-item p {
    margin: 4px 0;
    opacity: 0.8;
}

.access-map {
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--line);
    border-radius: var(--radius);
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    color: var(--text);
    opacity: 0.7;
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--brand);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto 48px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(31, 78, 121, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text);
}

.faq-question i {
    color: var(--brand);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

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

.faq-answer p {
    margin: 0 0 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-answer li {
    margin-bottom: 8px;
    opacity: 0.8;
}

.faq-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.faq-cta p {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 24px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .postal-code-input {
        flex-direction: column;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .access-map {
        height: 300px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

 /* サービスセクションのスタイル */
        .services {
            padding: var(--section-space) 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 250px;
            background-color: var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        #buy-service .service-img {
            background-size: contain;        /* 整张图完整显示 */

        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
}
        
        #care-service .service-img {
            background: linear-gradient(45deg, #2F6FA3, #0E4B5A);
        }
        
        #food-service .service-img {
            background: linear-gradient(45deg, #0E4B5A, #C0A46B);
        }
        
        .service-content {
            padding: 15px 4px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--text);
            font-family: var(--serif);
        }
        
        .service-content p {
            margin-bottom: 24px;
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: var(--radius);
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.18s ease;
            border: 1px solid var(--brand);
            background-color: transparent;
            color: var(--brand);
            font-size: 0.95rem;
        }
        
        .btn-outline:hover {
            background-color: var(--brand);
            color: var(--white);
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-img {
                height: 200px;
            }
        }

