/* ベースのスタイル設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 20px 40px; */
    padding: 13px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(21, 33, 50, 0.9);
    color: #fff;
}

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

.logo img {
    width: 180px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    font-size: 14px;
    line-height: 1.4;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: 0.3s;
}

.main-nav a:hover {
    opacity: 0.7;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* メニュートグルボタン */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ヒーローセクション */
.hero {
    position: relative;
    width: 100%;
    /* height: 80vh; */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-text {
    position: absolute;
    bottom: 80px;
    left: 80px;
    background-color: rgba(21, 33, 50, 0.8);
    padding: 20px 30px;
    color: #fff;
    max-width: 400px;
}

.hero-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* モバイルサイズ用の背景画像 */
.hero-image .sp-image {
    display: none;
}

@media (max-width: 768px) {
    .hero-image .pc-image {
        display: none;
    }
    
    .hero-image .sp-image {
        display: block;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    color: #152132;
}

.section-header p {
    font-size: 14px;
    color: #666;
}

.button-wrap {
    text-align: center;
    margin: 40px 0;
}

.button {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #152132;
    color: #152132;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: 0.3s;
    position: relative;
}

.button:hover {
    background-color: #152132;
    color: #fff;
}

/* ページヘッダー */
.page-header {
    text-align: center;
    padding: 100px 0 50px;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    color: #152132;
}

.page-header p {
    font-size: 14px;
    color: #666;
}

/* About セクション（元のindex.html用） */
.about {
    background-color: #f5f5f5;
}

/* Instagram セクション */
.instagram {
    background-color: #fff;
}

.instagram .about-images {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.instagram .about-image {
    width: 300px;
    height: 380px;
    max-width: 100%;
}

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

.about-section .about-content {
    text-align: left;
}

.about-content.text-center h2{
    text-align: center;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.about-content p {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
}

.about-images {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.about-image {
    width: 32%;
    height: 200px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: 0.3s;
}

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

/* About セクション（shop.html用） */
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.about-section .about-content {
    width: 55%;
}

.about-section .about-image {
    width: 40%;
}

.about-section h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ギャラリーセクション */
.about-gallery {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.gallery-item {
    width: 32%;
    overflow: hidden;
}

.gallery-row:last-child .gallery-item {
    width: 48%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

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

/* サービスセクション */
.service-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin-bottom: 60px;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-image {
    width: 35%;
}

.service-details {
    width: 60%;
    padding: 20px;
}

.service-details ul {
    list-style-type: none;
    margin-bottom: 30px;
}

.service-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-details ul li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #152132;
    font-size: 10px;
}

.service-note {
    color: #e74c3c;
    font-size: 14px;
    line-height: 1.6;
}

/* 会社概要セクション */
.company-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th, 
.company-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.company-table th {
    width: 20%;
    color: #333;
    font-weight: 500;
}

/* 沿革セクション */
.history-section {
    /* max-width: 1000px; */
    margin: 0 auto 80px;
    padding: 0 20px;
}

.history-content {
    padding: 20px 0;
}

.history-timeline {
    position: relative;
    padding: 20px 0;
}

.history-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 120px;
    height: 100%;
    width: 2px;
    background-color: #ddd;
}

.history-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-year {
    width: 120px;
    font-weight: 500;
    color: #152132;
    position: relative;
    font-size: 18px;
    padding-right: 20px;
    text-align: right;
}

.history-details {
    width: calc(100% - 120px);
    padding-left: 40px;
    position: relative;
}

.history-details:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #152132;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #152132;
}

.history-details h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #152132;
}

.history-details p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* 店舗情報セクション */
.shop-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.shop-content {
    margin-top: 30px;
}

.shop-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.shop-details {
    width: 55%;
}

.shop-details h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 25px 0 10px;
    color: #152132;
    border-left: 4px solid #152132;
    padding-left: 10px;
}

.shop-details h3:first-child {
    margin-top: 0;
}

.shop-details p {
    margin-bottom: 5px;
    line-height: 1.6;
}

.shop-image {
    width: 40%;
}

.shop-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shop-map {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* フッター */
footer {
    background-color: #152132;
    color: #fff;
    padding: 50px 0 0;
}

.footer-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    width: 30%;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.footer-company {
    margin-top: 20px;
}

.footer-company h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-company p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-map {
    width: 70%;
    height: 300px;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.map-overlay:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.map-overlay a {
    background-color: #fff;
    color: #152132;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.map-overlay a:hover {
    background-color: #152132;
    color: #fff;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .hero-text {
        bottom: 60px;
        left: 60px;
    }
    
    .instagram .about-images {
        gap: 20px;
        padding: 0 20px;
    }
    
    .instagram .about-image {
        width: 280px;
        height: 360px;
    }
    
    .section-half {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-map {
        width: 100%;
    }
    
    .footer-map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(21, 33, 50, 0.95);
        padding: 80px 20px 20px;
        transition: 0.3s;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .hero-text {
        bottom: 40px;
        left: 40px;
    }
    
    .about-section {
        flex-direction: column;
    }
    
    .about-section .about-content,
    .about-section .about-image {
        width: 100%;
    }
    
    .about-section .about-image {
        margin-top: 30px;
    }
    
    .gallery-row {
        flex-direction: column;
    }
    
    .gallery-item,
    .gallery-row:last-child .gallery-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .service-image,
    .service-details {
        width: 100%;
    }
    
    .service-image {
        margin-bottom: 30px;
        text-align: center;
    }

    .service-image img {
        max-width: 100%;
        height: auto;
    }
    
    .company-table th {
        width: 30%;
    }
    
    /* index.html用 */
    .about-images {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        margin-bottom: 25px;
    }
    
    /* インスタグラムセクション用 */
    .instagram .about-images {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .instagram .about-image {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    /* shop.html用 */
    .about-section {
        flex-direction: column;
    }
    
    .about-section .about-content,
    .about-section .about-image {
        width: 100%;
    }
    
    .about-section .about-image {
        margin-top: 30px;
    }
    
    .gallery-row {
        flex-direction: column;
    }
    
    .gallery-item,
    .gallery-row:last-child .gallery-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .history-timeline:before {
        display: none; /* タイムライン線を非表示 */
    }
    
    .history-item {
        flex-direction: column;
        background-color: #f9f9f9;
        border-left: 4px solid #152132;
        padding: 20px;
        margin-bottom: 20px;
        margin-left: 15px;
        border-radius: 5px;
    }
    
    .history-year {
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        color: #152132;
        margin-bottom: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
    }
    
    .history-details {
        width: 100%;
        padding-left: 0;
    }
    
    .history-details:before {
        display: none; /* 丸いアイコンを非表示 */
    }
    
    /* shop.html用 */
    .shop-info {
        flex-direction: column;
    }
    
    .shop-details, 
    .shop-image {
        width: 100%;
    }

    .shop-details {
        margin-top: 30px;
    }
    
    .shop-image {
        margin-top: 30px;
        order: -1;
    }
    
    .shop-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-text {
        /* bottom: 20px;
        left: 20px;
        padding: 15px; */
        display: none;
    }
    
    .hero-text h2 {
        font-size: 16px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .button {
        padding: 10px 30px;
    }

    .about-content h3 {
        font-size: 18px;
    }

    .about-content p {
        font-size: 14px;
        text-align: left;
        padding: 0 20px;
    }

    .mobile-hide {
        display: none;
    }
    
    .about-section h2 {
        font-size: 18px;
    }
    
    /* インスタグラムセクション用 */
    .instagram .about-image {
        height: 200px;
    }
    
    .history-timeline:before {
        display: none; /* タイムライン線を非表示 */
    }
    
    .history-item {
        flex-direction: column;
        background-color: #f9f9f9;
        border-left: 4px solid #152132;
        padding: 15px;
        margin-bottom: 15px;
        margin-left: 10px;
        border-radius: 5px;
    }
    
    .history-year {
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        color: #152132;
        margin-bottom: 8px;
        text-align: left;
        border-bottom: 1px solid #ddd;
        padding-bottom: 6px;
    }
    
    .history-details {
        width: 100%;
        padding-left: 0;
    }
    
    .history-details:before {
        display: none; /* 丸いアイコンを非表示 */
    }
    
    .history-details h3 {
        font-size: 16px;
    }
}

/* プライバシーポリシーページのスタイル */
.privacy-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.privacy-content {
    margin-top: 30px;
}

.privacy-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #152132;
}

.privacy-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #152132;
}

.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.contact-info p {
    margin-bottom: 8px;
}

.privacy-date {
    margin-top: 50px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .privacy-content h2 {
        font-size: 20px;
    }
    
    .privacy-content h3 {
        font-size: 18px;
    }
}

/* 店主の写真専用のスタイル */
.owner-profile {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.owner-profile img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
}

.owner-profile:hover img {
    transform: scale(1.05);
}

.owner-profile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(21, 33, 50, 0), rgba(21, 33, 50, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owner-profile:hover::after {
    opacity: 1;
} 


/* shopのCSSを適用 */
/* SHOP INFOセクション */
.shop-info-section {
    padding: 80px 20px;
}

.shops-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.shop-card {
    display: flex;
    gap: 40px;
    border: 1px solid #333;
    padding: 30px;
    background-color: #fff;
}

.shop-photo {
    flex: 1;
    max-width: 350px;
}

.shop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .shop-details {
    flex: 1.5;
} */

.shop-details h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
}

.shop-details table {
    width: 100%;
    border-collapse: collapse;
}

.shop-details th, .shop-details td {
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px dotted #ddd;
    vertical-align: top;
    line-height: 1.6;
    font-weight: normal;
}

.shop-details th {
    width: 100px;
    color: #666;
}

/* コンタクト情報 */
.contact-info {
    max-width: 1200px;
    margin: 20px auto 50px;
    padding: 50px 20px;
    text-align: center;
}

.company-logo {
    margin-bottom: 20px;
}

.company-logo img {
    height: 50px;
}

.company-address {
    margin-bottom: 30px;
}

.company-address .name {
    font-size: 18px;
    margin-bottom: 10px;
}

.company-address p {
    font-size: 14px;
    margin-bottom: 5px;
}

.map {
    margin-bottom: 30px;
}

.map-link {
    text-align: right;
    font-size: 12px;
    margin-top: 10px;
}

.map-link a {
    color: #9e0000;
}


/* ギャラリーセクション */
.gallery-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item2 {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    border: 1px solid #333;
    padding: 30px;
}

.service-image {
    flex: 1;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-details li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 14px;
}

.service-details li:before {
    content: '›';
    position: absolute;
    left: 0;
    color: #9e0000;
}

.service-details .highlight {
    color: #9e0000;
    margin-bottom: 10px;
    font-size: 14px;
}

/* COMPANYセクション */
.company-section {
    padding: 80px 20px;
}

.company-info {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #333;
    padding: 30px;
}

.company-info table {
    width: 100%;
    border-collapse: collapse;
}

.company-info th, .company-info td {
    padding: 15px 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
}

.company-info th {
    width: 150px;
}

/* HISTORYセクション */
.history-section {
    /* padding: 80px 20px; */
    background-color: #f5f5f5;
    padding: 60px 0;
    margin-bottom: 60px;
}

.history-content {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 30px;
    border: 1px solid #333;
    background-color: #fff;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ddd;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 120px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #9e0000;
    transform: translateX(-5px);
}

.year {
    width: 120px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.event {
    flex: 1;
    padding-left: 30px;
}

.event p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* SHOP INFOセクション */
.shop-info-section {
    padding: 80px 20px;
}

.shops-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.shop-card {
    display: flex;
    gap: 40px;
    border: 1px solid #333;
    padding: 30px;
    background-color: #fff;
}

.shop-photo {
    flex: 1;
    max-width: 350px;
}

.shop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .shop-details {
    flex: 1.5;
} */

.shop-details h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
}

.shop-details table {
    width: 100%;
    border-collapse: collapse;
}

.shop-details th, .shop-details td {
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px dotted #ddd;
    vertical-align: top;
    line-height: 1.6;
    font-weight: normal;
}

.shop-details th {
    width: 100px;
    color: #666;
}

.sp-br {
    display: none;
  }

@media (max-width: 480px) {
    .gallery-section .gallery {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    .gallery-section .gallery-item {
        aspect-ratio: 1 / 1;
    }
    .shop-info-section {
        padding: 15px 10px;
        margin: 15px 0;
        border-radius: 3px;
    }
    .shop-card {
        flex-direction: column;
    }
    .shop-photo {
        max-width: 100%;
    }
    .shop-details th, .shop-details td {
        display: block;
        width: 100%;
    }
    
    .shop-details th {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .shop-details td {
        padding-top: 5px;
    }

    .service-content {
        border: none;
    }

    .sp-br {
        display: inline;
      }


}