        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
        }

        body {
            background-color: #9F9275;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        header {
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 100;
        }

        .cursor-pointer {
            cursor: pointer;
        }

        /* メニューアニメーション */
        @keyframes pulseMenu {
            0% { opacity: 1; }
            25%, 75% { opacity: 0.5; }
            50% { opacity: 0; }
            100% { opacity: 0.5; }
        }

        .animate-pulseMenu {
            animation: pulseMenu 20s ease-in-out infinite;
        }

        /* モバイルメニューのスタイル */
        #menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #a8a09e;
            z-index: 1000;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        #menu.show {
            display: flex;
            opacity: 1;
        }

        #menu .close-button {
            position: absolute;
            top: 2.5rem;
            right: 2.5rem;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 1rem;
            z-index: 1001;
        }

        #menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        #menu li {
            width: fit-content;
        }

        #menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: opacity 0.3s ease;
        }

        #menu a:hover {
            opacity: 0.8;
        }

        /* フレックスボックスユーティリティ */
        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .items-center {
            align-items: center;
        }

        .w-\[60px\] {
            width: 60px;
        }

        .w-full {
            width: 100%;
        }

        .text-\[\#f2cfa1\] {
            color: #f2cfa1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            width: 100%;
            overflow: hidden;
            font-size: 0; /* 画像の下の隙間を削除 */
        }

        .header-image {
            width: 100%;
            height: auto;
            display: block;
            margin: 0;
            vertical-align: bottom;
        }

        .content {
            padding: 40px 60px;
            background-color: #d6d1c0;
            font-size: 16px; /* コンテンツ部分のフォントサイズを元に戻す */
        }

        h1 {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        h1::after {
            content: "";
            display: block;
            width: 50%;
            height: 1px;
            background-color: #666;
            position: absolute;
            bottom: -10px;
            left: 25%;
        }

        .title-jp {
            display: block;
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: normal;
            line-height: 1.3;
        }

        .title-en {
            display: block;
            font-size: 22px;
            font-weight: normal;
            letter-spacing: 1px;
        }

        .intro-text {
            text-align: center;
            margin: 60px 0;
            font-size: 16px;
            line-height: 1.8;
        }

      h2 {
    text-align: center;
    margin: 100px 0 0px 0;
    font-weight: normal;
    position: relative;
}

h2 .title-jp {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: normal;
    line-height: 1.3;
}

h2 .title-en {
    display: block;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 1px;
}

        h2::after {
            content: "";
            display: block;
            width: 40%;
            height: 1px;
            background-color: #666;
            position: absolute;
            bottom: -10px;
            left: 30%;
        }

        .service-list {
            margin-top: 60px;
        }

        .service-item {
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .service-number {
            font-size: 18px;
            font-weight: normal;
            margin-right: 10px;
            min-width: 40px;
        }

        .service-title-container {
            margin-right: 20px;
            min-width: 300px;
            flex: 1 0 300px;
        }

        h3.service-title-en {
            font-size: 18px;
            font-weight: normal;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .service-title-jp {
            font-size: 16px;
            font-weight: normal;
            margin-bottom: 10px;
        }

        .service-separator {
            width: 100%;
            height: 1px;
            background-color: #666;
            margin-bottom: 10px;
        }

        .service-description {
            font-size: 14px;
            line-height: 1.8;
            flex: 1 1 300px;
        }

        /* デスクトップ・モバイル用テキスト表示切り替え */
        /* PC表示（768pxより大きい）：desktop-text表示、mobile-text非表示 */
        .desktop-text {
            display: block;
            flex: 1 1 300px; /* service-descriptionと同じflex設定を継承 */
        }

        .mobile-text {
            display: none;
        }

.cta-section {
    flex: 1;
    text-align: center;
    margin:50px 0;
}

.cta-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info-button {
    margin: 0;
}

.contact-info-btn {
     display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    border: 2px solid #333;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: normal;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-btn:after {
    content: '>';
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-info-btn:hover {
    background-color: #333;
    color: #fff;
}

.contact-info-btn:hover:after {
    transform: translateX(5px);
}

        .footer {
            background-color: #1a1a2e;
            color: #ffffff;
            padding: 60px 40px;
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        /* 左側セクション */
        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin: 0px 100px 0 200px;
        }

        .contact-email {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ffffff;
            width: fit-content;
        }

        .contact-email .mail-icon {
            width: 40px;
            height: 40px;
        }

        .contact-email span {
            font-size: 16px;
            color: #ffffff;
            text-decoration: none;
        }

        .navigation {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #cccccc;
        }

        .contact-phone {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-top: 20px;
        }

        .phone-icon {
            width: 40px;
            height: 60px;
        }

        .phone-info {
            display: flex;
            flex-direction: column;
        }

        .phone-info .phone-label {
            font-size: 14px;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .phone-info .phone-hours {
            font-size: 12px;
            color: #cccccc;
            margin-bottom: 5px;
        }

        .phone-info .phone-number {
            font-size: 18px;
            color: #ffffff;
            font-weight: 500;
        }

        /* 右側セクション */
        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            margin: 0 150px;
        }

        .logo-section {
            text-align: center;
        }

        .logo-main {
            margin-bottom: 5px;
        }

        .logo-main img {
            width: auto;
        }

        .logo-sub {
            font-size: 14px;
            letter-spacing: 4px;
            color: #ffffff;
            font-weight: 300;
        }

        .social-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .note-logo img {
            max-height: auto;
            width: 120px;
        }

        .social-icons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-icon img {
            width: 32px;
            height: 32px;
        }

        /* レスポンシブ対応 */
        @media screen and (max-width: 768px) {
            .content {
                padding: 25px 30px;
            }
            
            .title-jp {
                font-size: 16px;
		line-height: 1.3;
            }
            
            .title-en {
                font-size: 20px;
            }
            
            .intro-text {
                text-align: center;
                margin: 40px 0;
                font-size: 15px;
                padding: 0;
            }

           h2 {
    margin: 100px 0 20px 0;
}

h2 .title-jp {
    font-size: 16px;
    line-height: 1.3;
}

h2 .title-en {
    font-size: 20px;
}

            h3.service-title-en {
                font-size: 16px;
            }

            .service-title-jp {
                font-size: 14px;
            }
            
            .service-title-container {
                min-width: calc(100% - 50px);
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .service-description {
                width: 100%;
                padding-left: 50px;
            }

            /* footer */
            .footer {
                padding: 40px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-left {
                order: 2;
                align-items: center;
                margin: 0;
            }

            .footer-right {
                order: 1;
                align-items: center;
                margin: 0;
            }

            .logo-section {
                text-align: center;
            }

            .social-section {
                align-items: center;
            }

            .social-icons {
                flex-direction: row;
                gap: 20px;
            }

            .contact-email,
            .contact-phone {
                justify-content: center;
            }

            .nav-links {
                align-items: center;
            }

            .logo-main {
                font-size: 36px;
            }

            /* モバイル表示（768px以下）：mobile-text表示、desktop-text非表示 */
            .desktop-text {
                display: none;
            }

            .mobile-text {
                display: block;
                width: 100%;
            }
        }