@charset "UTF-8";

/* Basic Reset & Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background-color: #fff;
    /* オフホワイト */
    color: #5d4e46;
    /* 淡いダークブラウン */
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1140px;
    background-color: #fff;
    /* 角丸 */
    box-shadow: 0 10px 30px rgba(93, 78, 70, 0.05);
    /* やわらかい陰影 */
    overflow: hidden;
    min-height: 80vh;
    border: 3px solid #000;
}

article{
    padding:0px;
    margin:0px;
}

/* Sidebar (Left Column) */
.sidebar {
    width: 35%;
    padding: 40px;
    background-color: #ffffff;
    background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    /* 白背景にうすいドット模様 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.sidebar-logo h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

.sidebar-logo p {
    font-size: 0.9rem;
    color: #aca098;
}

.sidebar-image-box {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.sidebar-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.btn-box {
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff0000;
    /* くすみピンク/ブラウン */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.btn:hover {
    background-color: #b08d7d;
}

.sns-link {
    font-size: 2rem;
    color: #000;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sns-link:hover {
    color: #ff0000;
    transform: scale(1.1);
}

/* Main Content (Right Column) */
.main-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
    /* コンテンツが多い場合はスクロール */
}

.hero-message {
    text-align: center;
    margin-bottom: 10px;
}

.hero-message h2 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
}

.card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.card-body {
    padding: 15px 5px;
    text-align: center;
}

.card-body h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 8px;
    font-weight: 500;
}

.card-body p {
    font-size: 0.85rem;
}

.separator {
    border: none;
    border-top: 1px dashed #d7ccc8;
    /* 点線で優しく */
    margin: 10px 0;
}

/* Access Section */
.access-section {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 30px;
}

.access-info {
    flex: 1;
}

.access-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: 500;
}

.access-info p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.access-map {
    flex: 1;
    height: 250px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

/* Responsive Setting */
@media screen and (max-width: 768px) {
    body {
        padding: 0;
        height: auto;
        display: block;
    }

    .container {
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
        height: auto;
        max-height: none;
    }

    .sidebar {
        width: 100%;
        padding: 40px 20px;
        order: -1;
        /* サイドバー（ロゴなど）を上に */
    }

    .sidebar-image-box {
        max-width: 400px;
    }

    .main-content {
        padding: 30px 20px;
        height: auto;
    }

    .grid-top {
        grid-template-columns: 1fr;
        /* スマホでは1カラム */
        gap: 40px;
    }

    .card-image {
        height: 200px;
        /* スマホでは画像を少し大きく */
    }

    .access-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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