/* 和モダンスタイル - company2 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 - 和の色彩 */
:root {
    --sumi: #1c1c1c;           /* 墨色 */
    --hai: #828282;            /* 灰色 */
    --kinari: #f7f3e9;         /* 生成り色 */
    --bengara: #9b3d3d;        /* 弁柄色 */
    --ruri: #19448e;           /* 瑠璃色 */
    --shiro: #ffffff;          /* 白 */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ ProN', sans-serif;
    color: var(--sumi);
    line-height: 1.8;
    background: var(--shiro);
    font-weight: 300;
}

/* リンクの基本スタイル */
a {
    color: var(--sumi);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--bengara);
}

/* 施工事例・セミナーページのリンクスタイル */
.property-name a,
.seminar-title a,
.work-title a {
    color: var(--sumi);
    text-decoration: none;
}

.property-name a:hover,
.seminar-title a:hover,
.work-title a:hover {
    color: var(--bengara);
}

.property-link,
.seminar-link,
.work-link {
    color: var(--bengara);
    text-decoration: none;
    font-weight: 500;
}

.property-link:hover,
.seminar-link:hover,
.work-link:hover {
    color: var(--sumi);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー - 極めてシンプルに */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--shiro);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

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

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

.logo h1 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--sumi);
}

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

.logo-tagline {
    font-size: 10px;
    color: var(--hai);
    letter-spacing: 0.2em;
    margin-top: 3px;
    display: block;
}

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

.nav-list a {
    font-size: 14px;
    color: var(--sumi);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.nav-list a:hover {
    opacity: 0.6;
}

.nav-contact {
    padding: 10px 30px;
    border: 1px solid var(--sumi);
    transition: all 0.3s;
}

.nav-contact:hover {
    background: var(--sumi);
    color: var(--shiro) !important;
    opacity: 1 !important;
}

.menu-toggle {
    display: none;
}

/* ヒーロー - 日本庭園のような静けさ */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--kinari);
}

.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 2s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--hai);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--sumi);
    white-space: nowrap;
}

.hero-description {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
    color: var(--hai);
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--sumi);
    color: var(--shiro);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.hero-button:hover {
    background: var(--bengara);
}

/* スライダーコントロール - 和風に */
.slider-controls {
    position: absolute;
    bottom: 60px;
    right: 10%;
    z-index: 10;
}

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

.dot {
    width: 8px;
    height: 8px;
    background: var(--hai);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

.dot.active {
    background: var(--sumi);
    transform: scale(1.5);
}

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

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

.title-en {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--hai);
    display: block;
    margin-bottom: 15px;
}

.title-ja {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* コンセプト - 和の空間 */
.concept {
    background: var(--kinari);
}

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

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

.concept-description {
    font-size: 16px;
    line-height: 2.5;
    margin-bottom: 30px;
    color: var(--sumi);
}

.concept-image {
    position: relative;
    height: 600px;
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    display: block;
}

/* 縦書き風の装飾 */
.concept::before {
    content: '自然と共に暮らす';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 18px;
    letter-spacing: 0.5em;
    color: var(--hai);
    opacity: 0.3;
}

/* サービス - 格子のようなレイアウト */
.services {
    background: var(--shiro);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.service-item {
    padding: 80px 60px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s;
    position: relative;
}

.service-item:nth-child(2n) {
    border-right: none;
}

.service-item:hover {
    background: var(--kinari);
}

.service-number {
    font-family: 'Times New Roman', serif;
    font-size: 80px;
    font-weight: 100;
    color: var(--hai);
    opacity: 0.2;
    position: absolute;
    top: 40px;
    right: 40px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.service-description {
    font-size: 14px;
    line-height: 2;
    color: var(--hai);
}

/* 施工事例 - 掛け軸のような表現 */
.properties {
    background: var(--shiro);
}

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

.property-item {
    position: relative;
    background: var(--shiro);
    transition: all 0.3s;
}

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

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

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

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.property-link {
    color: var(--shiro);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.property-info {
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-top: none;
}

.property-name {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.property-price {
    font-size: 14px;
    color: var(--bengara);
    margin-bottom: 10px;
}

.property-details {
    font-size: 13px;
    color: var(--hai);
}

/* 会社概要 - 和紙のような背景 */
.about {
    background: var(--kinari);
    position: relative;
}

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

.about-info {
    background: var(--shiro);
    padding: 80px;
    position: relative;
}

/* 和紙のような質感 */
.about-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--hai);
    opacity: 0.1;
    z-index: -1;
}

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

.about-list dt {
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--sumi);
    letter-spacing: 0.1em;
}

.about-list dd {
    color: var(--hai);
    padding-left: 0;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

/* コンタクト - 墨絵のような雰囲気 */
.contact {
    background: var(--sumi);
    color: var(--shiro);
}

.contact-lead {
    text-align: center;
    font-size: 16px;
    margin-bottom: 80px;
    line-height: 2.5;
    letter-spacing: 0.1em;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-item h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
}

.contact-number {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.contact-number a {
    color: inherit;
    text-decoration: none;
}

.contact-number a:hover {
    opacity: 0.8;
}

.contact-hours {
    font-size: 14px;
    opacity: 0.8;
}

.contact-button {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid var(--shiro);
    color: var(--shiro);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    margin-top: 40px;
}

.contact-button:hover {
    background: var(--shiro);
    color: var(--sumi);
}

/* フッター */
.footer {
    background: var(--shiro);
    border-top: 1px solid #e5e5e5;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--sumi);
}

.footer-logo p {
    font-size: 12px;
    color: var(--hai);
    margin-top: 5px;
    letter-spacing: 0.1em;
}

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

.footer-nav a {
    font-size: 14px;
    color: var(--hai);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--sumi);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    font-size: 12px;
    color: var(--hai);
}

/* ハンバーガーメニュー */
.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(--sumi);
    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) {
    .logo-img {
        width: 140px;
        height: 50px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--shiro);
        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;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-content {
        left: 5%;
        max-width: 90%;
        bottom: 60px;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 40px);
        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-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .concept-image {
        height: 300px;
        width: 100%;
    }

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

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

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

    /* 会社情報 */
    .about-info {
        padding: 40px 20px;
    }

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

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

    /* コンタクト */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* フッター */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

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

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

    .value-list {
        font-size: 14px;
    }

    .value-list li {
        margin-bottom: 10px;
        line-height: 1.8;
    }

    .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;
    }

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

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

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

    .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;
    }

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

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

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

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

    /* 哲学ページ */
    .philosophy-content {
        display: block;
    }

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

    /* アクセス */
    .access-content {
        display: block;
    }

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

    .access-map {
        height: 300px;
    }

    /* 価値リスト */
    .value-list {
        font-size: 14px;
        line-height: 1.8;
    }

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

    /* 経営理念 */
    .philosophy-content {
        display: block;
    }

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

    /* アクセス */
    .access-content {
        display: block;
    }

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

    .access-map {
        height: 300px;
    }

    /* フォーム */
    .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;
        overflow: hidden;
    }

    .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;
    }
}

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

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

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

.page-hero-subtitle {
    font-size: 14px;
    color: var(--hai);
    letter-spacing: 0.1em;
}

/* アクティブナビゲーション */
.nav-list a.active {
    border-bottom: 1px solid var(--sumi);
}

/* 下層ページセクション */
.about-intro-section,
.service-intro-section,
.works-intro-section,
.properties-intro-section {
    padding: 80px 0;
    text-align: center;
}

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

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

.btn-primary:hover,
a.btn-primary:hover {
    background: var(--bengara);
    transform: translateY(-2px);
    color: var(--shiro) !important;
}

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

.btn-secondary:hover,
a.btn-secondary:hover {
    background: var(--sumi);
    color: var(--shiro) !important;
}

/* セクションタイトル */
.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle-en {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    color: var(--hai);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.subtitle-ja {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--sumi);
}

/* 下層ページ画像 */
.vision-image,
.message-image,
.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.cta-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--shiro);
}

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

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

/* CTAセクション内のボタン */
.about-cta .btn-primary,
.concept-cta .btn-primary,
.works-cta .btn-primary,
.service-cta .btn-primary {
    background: var(--shiro);
    color: var(--sumi) !important;
}

.about-cta .btn-primary:hover,
.concept-cta .btn-primary:hover,
.works-cta .btn-primary:hover,
.service-cta .btn-primary:hover {
    background: var(--kinari);
    color: var(--sumi) !important;
}

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

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

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

.service-detail-header .service-number {
    display: block;
    font-size: 60px;
    font-weight: 300;
    color: var(--bengara);
    opacity: 0.3;
    margin-bottom: 20px;
    position: static;
    top: auto;
    right: auto;
}

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

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

.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(--bengara);
}

/* 物件バッジ */
.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bengara);
    color: var(--shiro);
    padding: 5px 15px;
    font-size: 12px;
    z-index: 1;
}

/* 沿革 */
.history-section {
    padding: 80px 0;
    background: var(--kinari);
}

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

.history-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

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

.history-year {
    font-size: 18px;
    font-weight: 500;
    color: var(--bengara);
    min-width: 100px;
}

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

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

.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(--bengara);
    opacity: 0.3;
    margin-bottom: 20px;
}

/* プロミスセクション */
.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(--bengara);
}

/* メッセージセクション */
.ceo-message {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.message-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.ceo-info {
    margin-top: 40px;
}

.ceo-position {
    font-size: 14px;
    color: var(--hai);
    margin-bottom: 5px;
}

.ceo-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--sumi);
}

/* 経営理念 */
.philosophy-section {
    padding: 80px 0;
}

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

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

.philosophy-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bengara);
}

/* プロミス */
.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(--bengara);
}

/* CEOメッセージ */
.ceo-message {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

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

.ceo-info {
    margin-top: 40px;
}

.ceo-position {
    font-size: 14px;
    color: var(--hai);
    margin-bottom: 10px;
}

.ceo-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--sumi);
}

/* アクセス */
.access-section {
    padding: 80px 0;
    background: var(--kinari);
}

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

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

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

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

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

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

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

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

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

.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(--bengara);
}

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

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

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

.contact-hours,
.contact-note {
    font-size: 14px;
    color: var(--hai);
    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: var(--shiro);
    padding: 60px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

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

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

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

/* フォーム要素 */
.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(--sumi);
    font-weight: 500;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bengara);
}

.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(--bengara);
    text-decoration: underline;
}

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

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

.btn-submit:hover {
    background: var(--bengara);
    transform: translateY(-2px);
}

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

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

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

.map-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
}

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

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

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

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

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

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

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

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

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

.seminar-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.seminar-date {
    background: var(--bengara);
    color: var(--shiro);
    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(--sumi);
    margin-bottom: 15px;
}

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

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

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

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

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

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

.seminar-link {
    display: inline-block;
    color: var(--bengara);
    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);
}


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

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

.seminar-cta .cta-content p {
    color: var(--shiro);
    opacity: 0.8;
    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;
    }
}

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

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

.property-item {
    background: var(--shiro);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.property-overlay .property-link {
    color: var(--shiro);
    background: var(--bengara);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.property-item:hover .property-overlay .property-link {
    transform: translateY(0);
}

.property-info {
    padding: 25px;
}

.property-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sumi);
    margin-bottom: 15px;
    line-height: 1.4;
}

.property-price {
    color: var(--bengara);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.property-details {
    color: var(--hai);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.property-description {
    color: var(--hai);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 施工事例レスポンシブ対応 */
@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-info {
        padding: 20px;
    }
}

/* セミナー詳細ページスタイル */
.single-seminar-content {
    padding: 80px 0;
    background: var(--shiro);
}

.seminar-detail {
    max-width: 800px;
    margin: 0 auto;
}

.seminar-info-section {
    background: var(--shiro);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.seminar-meta-detail .seminar-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--sumi);
    margin-bottom: 30px;
    text-align: center;
}

.seminar-details {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.seminar-details dt {
    font-weight: 600;
    color: var(--bengara);
    font-size: 1rem;
    margin-bottom: 5px;
}

.seminar-details dd {
    color: var(--sumi);
    font-size: 1.1rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}

.status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--shiro);
}

.status-badge.受付中 {
    background: #28a745;
}

.status-badge.満員 {
    background: #dc3545;
}

.status-badge.終了 {
    background: var(--hai);
}

.seminar-content-detail {
    background: var(--kinari);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.seminar-content-detail h3 {
    font-size: 1.5rem;
    color: var(--sumi);
    margin-bottom: 20px;
    text-align: center;
}

.seminar-content-detail .content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sumi);
}

.seminar-application {
    background: var(--bengara);
    color: var(--shiro);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.seminar-application h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.application-button {
    display: inline-block;
    background: var(--shiro);
    color: var(--bengara);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.application-button:hover {
    background: var(--kinari);
    transform: translateY(-2px);
}

/* 施工事例詳細ページスタイル */
.single-work-content {
    padding: 80px 0;
    background: var(--shiro);
}

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

.work-main-image {
    text-align: center;
    margin-bottom: 40px;
}

.work-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.work-info-section {
    background: var(--shiro);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.work-meta .work-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--sumi);
    margin-bottom: 30px;
    text-align: center;
}

.work-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.work-details dt {
    font-weight: 600;
    color: var(--bengara);
    font-size: 1rem;
    margin-bottom: 5px;
}

.work-details dd {
    color: var(--sumi);
    font-size: 1.1rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}

.work-content-detail {
    background: var(--kinari);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.work-content-detail h3 {
    font-size: 1.5rem;
    color: var(--sumi);
    margin-bottom: 20px;
    text-align: center;
}

.work-content-detail .content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sumi);
}

.work-cta {
    background: var(--sumi);
    color: var(--shiro);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.work-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    background: var(--bengara);
    color: var(--shiro);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #7a2f2f;
    transform: translateY(-2px);
}

/* 詳細ページレスポンシブ対応 */
@media (max-width: 768px) {
    .seminar-info-section,
    .work-info-section,
    .seminar-content-detail,
    .work-content-detail,
    .seminar-application,
    .work-cta {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .seminar-meta-detail .seminar-title,
    .work-meta .work-title {
        font-size: 1.5rem;
    }
    
    .work-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seminar-details,
    .work-details {
        gap: 15px;
    }
    
    .application-button,
    .contact-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Contact Form 7 スタイル */
.wpcf7 {
    margin: 0;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.wpcf7-form label {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--sumi);
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    background: var(--shiro);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 4px;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--bengara);
    box-shadow: 0 0 0 2px rgba(155, 61, 61, 0.1);
}

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

.wpcf7-form input[type="submit"] {
    align-self: center;
    padding: 18px 60px;
    background: var(--sumi);
    color: var(--shiro);
    border: none;
    font-size: 16px;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    font-family: inherit;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--bengara);
    transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
    color: var(--bengara);
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-response-output {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wpcf7-spam-blocked {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}