@charset "UTF-8";

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.site-header {
    width: 100%;
    margin-bottom: 40px; /* Space below header image */
}

.header-image {
    width: 100%;
    object-fit: cover;
}

/* Common Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

/* Main Content: Daily Work */
.daily-work {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

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

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

.work-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.work-image {
    width: 100%;
    border-radius: 8px; /* Optional: slight rounding for aesthetics */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: subtle shadow */
}

/* Contact & SNS Section */
.contact-sns-section {
    background-color: #f9f9f9; /* Slight background distinction */
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-area {
    flex: 1; /* Takes up available space */
    min-width: 0; /* Prevents flex item from overflowing */
}

.sns-area {
    width: 300px; /* Fixed width for SNS column on desktop */
    flex-shrink: 0;
    text-align: center;
}

/* Iframe Responsive Wrapper */
.iframe-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.iframe-wrapper iframe {
    width: 100%;
    display: block;
}

/* SNS Links */
.sns-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sns-link img {
    width: 80px; /* Adjust icon size as needed */
    transition: opacity 0.3s ease;
}

.sns-link:hover img {
    opacity: 0.7; /* Hover effect */
}

/* Responsive Design (Mobile) */
@media (max-width: 768px) {
    /* Daily Work: Stack vertically */
    .work-grid {
        grid-template-columns: 1fr;
    }

    /* Contact & SNS: Stack vertically */
    .container {
        flex-direction: column;
    }

    .sns-area {
        width: 100%; /* Full width on mobile */
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
