* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	background: #dbdbdb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inline_block{
	display: inline-block;
}
.container {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 70%;
}

.construction-image {
    width: 40vw;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

h1 {
    color: #c97373;
    font-size: 80px;
    margin-bottom: 1rem;
    font-weight: bold;
	font-family: "BBH Sans Hegarty", sans-serif;
	font-weight: 400;
}

p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
}

.phone {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
    margin-top: 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
		width: 100%;
    }
    
    h1 {
        font-size: 8vw;
    }

	p{
		font-size: max(4vw,14px);
	}
}

/* アニメーション効果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
