/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
:root {
    --primary-color: #2c5530;
    --accent-color: #f4a460;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-beige: #f5f2ed;
    --bg-cream: #fdfbf7;
    --border-color: #ddd7cd;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--bg-cream);
    font-weight: 400;
}

.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.98);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 150px;
    height: 50px;
    object-fit: contain;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--accent-color);
    display: block;
    margin-top: 2px;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

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

.nav-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
}

.nav-contact:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.nav-contact::after {
    display: none !important;
}

.menu-toggle {
    display: none;
}

/* ヒーローセクション - フルスクリーンで印象的に */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hero-slide.active .hero-background {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
}

.hero-button:hover {
    background: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

/* スライダーコントロール */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-prev,
.slider-next {
    display: none;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
}

.scroll-indicator {
    display: none;
}

/* セクション共通 */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.title-en {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.title-ja {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

/* コンセプト - カード型レイアウト */
.concept {
    background: var(--bg-beige);
    position: relative;
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-text {
    text-align: left;
}

.concept .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.concept-description {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.concept-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.concept-image img:hover {
    transform: scale(1.05);
}

/* サービス - グリッドレイアウト */
.services {
    background: white;
}

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

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 140px;
        height: 50px;
    }
    
    .logo h1 {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    padding: 40px 25px;
    text-align: center;
    background: var(--bg-beige);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.service-item:hover::before {
    transform: translateX(0);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* 施工事例 - マガジンスタイル */
.properties {
    background: var(--bg-cream);
}

.property-grid {
    display: grid;
    gap: 60px;
}

.property-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.property-item:nth-child(even) {
    direction: rtl;
}

.property-item:nth-child(even) > * {
    direction: ltr;
}

.property-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.property-item:hover .property-image img {
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
    opacity: 0;
    transition: opacity 0.3s;
}

.property-item:hover .property-overlay {
    opacity: 1;
}

.property-link {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 600;
}

.property-info {
    padding: 50px;
}

.property-name {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.property-price {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.property-details {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 会社情報 - シンプルに */
.about {
    background: var(--bg-beige);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-info {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-list {
    font-size: 16px;
}

.about-list dt {
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-list dd {
    color: var(--text-light);
    padding-left: 20px;
}

/* .about-map {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
} */

/* コンタクト - フルワイドで印象的に */
.contact {
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(244, 164, 96, 0.1);
    transform: rotate(45deg);
}

.contact .section-title .title-ja {
    color: white;
}

.contact-lead {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 400;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-number a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-number a:hover {
    color: #ff8c42;
}

.contact-hours {
    font-size: 15px;
    opacity: 0.9;
}

.contact-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 30px;
}

.contact-button:hover {
    background: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* フッター */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.footer-nav a {
    font-size: 15px;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-weight: 400;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.5;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    position: relative;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
    position: relative;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -1px;
}

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -1px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    /* ナビゲーション */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list a {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .nav-list .nav-contact {
        padding: 12px 30px;
        margin-top: 10px;
        background: var(--accent-color);
        color: white !important;
        border-radius: 50px;
    }
    
    .nav-list .nav-contact:hover {
        background: #ff8c42;
        color: white !important;
    }

    .menu-toggle {
        display: flex;
    }

    /* ヒーロー */
    .hero {
        margin-top: 60px;
        height: 70vh;
    }

    .hero-content {
        bottom: 60px;
    }

    .hero-title {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-button {
        padding: 12px 35px;
        font-size: 14px;
    }

    /* 下層ページヒーロー */
    .page-hero {
        height: 200px;
        margin-top: 60px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-subtitle {
        font-size: 12px;
    }

    /* セクション共通 */
    section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .title-ja {
        font-size: 24px;
    }

    .title-en {
        font-size: 12px;
    }

    /* コンセプト */
    .concept-content {
        display: block;
    }
    
    .concept .section-title {
        text-align: center;
    }
    
    .concept-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .concept-image {
        height: 300px;
        width: 100%;
    }

    /* サービス */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* 物件 */
    .property-grid {
        display: block;
    }

    .property-item {
        display: block;
        margin-bottom: 40px;
    }

    .property-item:nth-child(even) {
        direction: ltr;
    }

    .property-image {
        height: 300px;
    }

    .property-info {
        padding: 30px;
    }

    /* プロパティアイテムの配置 */
    .property-image {
        margin-bottom: 0;
        width: 100%;
    }

    .property-info {
        margin-top: 0;
    }

    /* 会社情報 */
    .about-content {
        max-width: 100%;
    }
    
    .about-info {
        padding: 40px 20px;
    }

    .about-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-list dt {
        margin-top: 20px;
    }

    /* コンタクト */
    .contact-info {
        display: block !important;
    }

    .contact-item {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    /* フッター */
    .footer-content {
        display: block !important;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    /* 下層ページ追加 */
    .form-row {
        display: block;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .service-detail-body {
        display: block !important;
    }

    .service-detail-body.reverse {
        direction: ltr;
    }

    .service-detail-text {
        margin-bottom: 40px;
    }

    .service-detail-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .vision-content {
        display: block !important;
    }

    .vision-text {
        margin-bottom: 40px;
    }

    .vision-image {
        width: 100%;
    }

    .values-grid {
        display: block !important;
    }

    .value-item {
        margin-bottom: 40px;
        text-align: center;
    }

    .promise-items {
        display: block !important;
    }

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

    .philosophy-content {
        display: block;
    }

    .philosophy-item {
        margin-bottom: 40px;
    }

    .ceo-message {
        display: block !important;
    }

    .message-image {
        margin-bottom: 40px;
        width: 100%;
    }

    .message-text {
        margin-top: 0;
    }

    .access-content {
        display: block !important;
    }

    .access-info {
        margin-bottom: 40px;
    }

    .contact-info-grid {
        display: block !important;
    }

    .contact-info-item {
        margin-bottom: 40px;
        text-align: center;
    }

    .history-item {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* コンタクトフォーム */
    .form-wrapper {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .contact-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .wpcf7-form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .wpcf7-submit {
        padding: 15px 50px;
        font-size: 14px;
        width: 100%;
    }

    /* フォーム */
    .form-container {
        padding: 40px 20px;
    }

    .map-wrapper {
        height: 300px;
    }

    /* ボタン */
    .btn-primary,
    a.btn-primary,
    .btn-secondary,
    a.btn-secondary {
        padding: 12px 40px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    /* 準備中セクション */
    .contact-preparing {
        padding: 80px 0;
    }

    .preparing-title {
        font-size: 28px;
    }

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

    /* 画像のレスポンシブ対応 */
    .vision-image,
    .message-image,
    .service-detail-image {
        height: 250px;
    }

    .vision-image img,
    .message-image img,
    .service-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .property-image {
        height: 250px;
    }

    .concept-image {
        height: 250px;
    }

    /* 会社案内ページの追加レスポンシブ対応 */
    .about-content {
        display: block;
    }

    .about-message {
        margin-bottom: 60px;
    }

    .message-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .message-signature {
        margin-top: 30px;
    }

    .signature-title {
        font-size: 14px;
    }

    .signature-name {
        font-size: 18px;
    }

    .company-info {
        margin-bottom: 60px;
    }

    .access-info {
        margin-bottom: 60px;
    }

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

    .access-note {
        font-size: 12px;
    }

    /* アクセスマップ */
    .access-map {
        min-height: 300px;
    }
}

/* 下層ページ用スタイル */
.page-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-cream) 100%);
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-content {
    text-align: center;
}

.page-hero-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* 会社案内ページ */
.about-page {
    padding: 80px 0;
}

.about-intro-section {
    padding: 80px 0;
    text-align: center;
}

.about-intro-content h2 {
    margin-bottom: 30px;
}

.about-intro-text {
    font-size: 18px;
    line-height: 2;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* アクティブナビゲーション */
.nav-list a.active {
    color: var(--accent-color);
}

.nav-list a.active::after {
    width: 100%;
}

/* 下層ページ追加要素 */
.service-intro-section,
.works-intro-section {
    padding: 80px 0;
    text-align: center;
}

.service-intro-text,
.works-intro-text {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* CTAセクション */
.service-cta,
.works-cta,
.concept-cta {
    padding: 100px 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.service-cta-content,
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-cta-content h2,
.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: white;
}

.service-cta-content p,
.cta-content p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* ボタンスタイル */
.btn-primary,
a.btn-primary {
    display: inline-block;
    padding: 15px 50px;
    background: var(--accent-color);
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.15em;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover,
a.btn-primary:hover {
    background: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
    color: white !important;
}

.btn-secondary,
a.btn-secondary {
    display: inline-block;
    padding: 15px 50px;
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.15em;
    transition: all 0.3s;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover,
a.btn-secondary:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}

/* サービス詳細 */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-section.alt {
    background: var(--bg-beige);
}

.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-number {
    display: inline-block;
    font-size: 60px;
    font-weight: 300;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.service-title {
    margin-bottom: 10px;
}

.service-title-en {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
}

.service-title-ja {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

.service-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-body.reverse {
    direction: rtl;
}

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

.service-detail-text p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
}

.service-features {
    margin-top: 30px;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-features ul {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 10px;
}

.service-features li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

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

/* コンセプトページ追加 */
.main-concept,
.vision-section,
.values-section,
.promise-section,
.message-section {
    padding: 80px 0;
}

.concept-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept-title {
    margin-bottom: 40px;
}

.concept-lead {
    font-size: 18px;
    line-height: 2;
    color: var(--text-dark);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
}

.value-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.value-item h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.value-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.promise-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.promise-item {
    text-align: center;
}

.promise-item h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.ceo-message {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.message-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

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

.message-quote {
    font-size: 18px;
    line-height: 2;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-style: italic;
}

/* 物件ページ追加 */
.properties-page .property-item {
    position: relative;
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    z-index: 1;
    border-radius: 15px;
}

.property-features {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.property-location {
    font-size: 13px;
    color: var(--text-light);
}

/* お問い合わせページ */
.contact-intro-section {
    padding: 80px 0;
    text-align: center;
}

.contact-intro-text {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--bg-beige);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    text-align: center;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-phone {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-phone a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-phone a:hover {
    color: var(--accent-color);
}

.contact-hours,
.contact-note {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-address {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
}

/* フォームセクション */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-title {
    text-align: center;
    margin-bottom: 50px;
}

.form-title-en {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
}

.form-title-ja {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

/* フォーム要素 */
.grand-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.required {
    color: var(--accent-color);
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background: white;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 8px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ラジオボタン・チェックボックス */
.radio-group {
    display: flex;
    gap: 30px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.radio-label input,
.checkbox-label input {
    margin-right: 8px;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 送信ボタン */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    display: inline-block;
    padding: 18px 80px;
    background: var(--accent-color);
    color: white;
    border: none;
    font-size: 16px;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50px;
    font-weight: 600;
}

.btn-submit:hover {
    background: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

/* アクセスセクション */
.access-section {
    padding: 80px 0;
    background: var(--bg-beige);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.access-info h4 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.access-details {
    font-size: 15px;
}

.access-details dt {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.access-details dd {
    color: var(--text-light);
    padding-left: 0;
    line-height: 1.8;
}

.access-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* アクセスマップセクション */
.access-map-section {
    padding: 80px 0;
    background: var(--bg-beige);
}

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

.map-container h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* コンタクトフォームセクション */
.contact-form {
    padding: 80px 0;
    background: var(--bg-cream);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

/* Contact Form 7 フィールドスタイル */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wpcf7-form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-cream);
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.1);
}

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

.wpcf7-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path d="M6 8L0 0h12z" fill="%23666"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.wpcf7-submit {
    align-self: center;
    padding: 18px 60px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.wpcf7-submit:hover {
    background: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

/* Contact Form 7 ラベル */
.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* Contact Form 7 エラーメッセージ */
.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.wpcf7-validation-errors {
    background: #ffebee;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.wpcf7-mail-sent-ok {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Contact Form 7 チェックボックス・ラジオボタン */
.wpcf7-list-item {
    margin: 10px 0;
}

.wpcf7-list-item input[type="checkbox"],
.wpcf7-list-item input[type="radio"] {
    margin-right: 8px;
}

/* 準備中セクション */
.contact-preparing {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-beige);
}

.preparing-content {
    max-width: 600px;
    margin: 0 auto;
}

.preparing-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.preparing-text {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
}

/* 画像のレスポンシブ対応 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 追加のレスポンシブ対応 */
@media (max-width: 768px) {
    /* philosophyクラスがないため追加 */
    .philosophy-content {
        display: block !important;
    }

    .philosophy-item {
        margin-bottom: 40px;
        text-align: center;
    }

    /* historyクラスがないため追加 */
    .history-item {
        display: block;
        margin-bottom: 40px;
    }

    .history-year {
        margin-bottom: 15px;
    }

    /* 会社案内ページ */
    .about-content {
        display: block;
    }

    .about-message {
        margin-bottom: 40px;
    }

    .message-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .message-signature {
        margin-top: 30px;
    }

    .signature-title {
        font-size: 12px;
    }

    .signature-name {
        font-size: 16px;
    }

    .company-info {
        margin-bottom: 40px;
    }

    .access-info {
        margin-bottom: 40px;
    }

    .access-text,
    .access-note {
        font-size: 14px;
    }

    .access-map {
        min-height: 300px;
    }
}

/* セミナー詳細ページスタイル */
.single-seminar {
    padding: 100px 0 80px;
}

.seminar-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: var(--bg-beige);
    border-radius: 20px;
}

.single-seminar .seminar-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.single-seminar .seminar-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.single-seminar .meta-item {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.single-seminar .meta-item strong {
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.seminar-thumbnail {
    text-align: center;
    margin-bottom: 60px;
}

.seminar-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.seminar-content {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.seminar-content h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-size: 1.5rem;
}

.seminar-content p {
    margin-bottom: 20px;
}

.seminar-application {
    background: var(--bg-beige);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.seminar-application h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.seminar-application p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.application-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
}

.application-button:hover {
    background: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

.seminar-footer,
.work-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.back-link {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-link:hover {
    background: var(--primary-color);
    color: white;
}

/* 施工事例詳細ページスタイル */
.single-work {
    padding: 100px 0 80px;
}

.work-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: var(--bg-beige);
    border-radius: 20px;
}

.single-work .work-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.work-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.work-category {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.work-gallery {
    margin-bottom: 60px;
    text-align: center;
}

.work-gallery .main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.work-details h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.work-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.work-info {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
}

.work-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-align: center;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.info-table th {
    background: var(--bg-beige);
    font-weight: 600;
    color: var(--primary-color);
    width: 40%;
}

.info-table td {
    color: var(--text-dark);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .single-seminar .seminar-title,
    .single-work .work-title {
        font-size: 1.8rem;
    }
    
    .single-seminar .seminar-meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seminar-header,
    .work-header {
        padding: 40px 20px;
    }
    
    .seminar-application,
    .work-info {
        padding: 30px 20px;
    }
    
    .work-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .work-categories {
        justify-content: center;
    }
    
    .info-table th,
    .info-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .application-button {
        padding: 15px 40px;
        font-size: 14px;
    }
}

/* 施工事例ページ専用スタイル */
.works-archive {
    padding: 100px 0 80px;
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.work-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.work-content {
    padding: 25px;
}

.work-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.work-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.work-link {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.work-link:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .work-image {
        height: 200px;
    }
    
    .work-content {
        padding: 20px;
    }
    
    .work-title {
        font-size: 16px;
    }
    
    .work-link {
        padding: 8px 20px;
        font-size: 12px;
    }
}

/* セミナーページスタイル */
.seminar-section {
    padding: 100px 0 80px;
}

.seminar-list {
    margin-top: 60px;
}

.seminar-item {
    display: flex;
    background: white;
    border: 1px solid #e5e5e5;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.seminar-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.seminar-date {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.date-month {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 5px;
}

.date-year {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
}

.seminar-content {
    padding: 30px 40px;
    flex: 1;
}

.seminar-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.seminar-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.seminar-title a:hover {
    color: var(--accent-color);
}

.seminar-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.seminar-meta span {
    display: flex;
    align-items: center;
}

.seminar-meta span::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
    margin-right: 8px;
}

.seminar-status {
    color: var(--accent-color);
    font-weight: 500;
}

.seminar-status.full {
    color: var(--text-light);
}

.seminar-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.seminar-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.seminar-link::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.seminar-link:hover::after {
    transform: translateX(5px);
}

/* 過去のセミナーセクション */
.past-seminar-section {
    padding: 80px 0;
    background: var(--bg-beige);
}

.past-seminar-list {
    margin-top: 40px;
}

.past-seminar-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.past-seminar-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.past-seminar-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.past-seminar-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* セミナーCTA */
.seminar-cta {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
}

.seminar-cta .cta-content h2 {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.seminar-cta .cta-content p {
    color: white;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .seminar-item {
        flex-direction: column;
    }
    
    .seminar-date {
        min-width: auto;
        padding: 20px;
        flex-direction: row;
        gap: 10px;
    }
    
    .date-month, .date-day {
        font-size: 1.5rem;
    }
    
    .seminar-content {
        padding: 20px;
    }
    
    .seminar-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
}
