* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.8;
    color: #333;
    background-color: #fefefe;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
}

.online-shop-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.online-shop-btn:hover {
    background: #555;
}

.shop-icon {
    width: 16px;
    height: 16px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.2em;
}

.header-right {
    display: flex;
    align-items: center;
}

.hamburger-menu {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    padding: 5px 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background: #666;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    background-color: #fefefe; /* コンテンツ部分は白背景のまま */
}

.hero-section .container {
    padding: 0;
    max-width: none;
}

.hero-section {
    text-align: center;
    padding: 0;
    background-color: #f8f8f8;
    position: relative;
    width: 100%;          /* 100vw → 100% に変更 */
    margin-left: 0;       /* calc(-50vw + 50%) → 削除または0 */
}


.hero-container {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-brand {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    color: white;
    padding: 10px;
    border-radius: 4px;
}

.hero-brand h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
    line-height: 1.4;
}

.hero-brand .medium-text {
    font-size: 30px;
}

.hero-brand .large-text {
    font-size: 20px;
}

.hero-vision {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-vision h3 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-decoration: underline;
    white-space: nowrap;
}

.hero-vision p {
    font-size: 24px;
    font-weight: normal;
    white-space: nowrap;
}

.section {
    padding: 0;
    text-align: center;
    background-color: #8A9BA8; /* ロゴの背景色を追加 */
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 0px;
}

.section-content:nth-child(even) {
    flex-direction: row-reverse;
}

.section-image {
    width: 100%;
    margin: 30px 0;
}

.section-image img {
    width: 100%;
    height: 500px; /* 必要であればheightも自動調整 */
    object-fit: cover; /* 高さを固定するなら併用可能 */
    display: block;
}

  .owner-image {
    width: 100%;
    margin: 30px 0;
}

.owner-image img {
    width: 400px;
    height: 300px; /* 必要であればheightも自動調整 */
    object-fit: cover; /* 高さを固定するなら併用可能 */
    display: block;
}


.section-text {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: left;
    flex: none;
}

.section-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    color: #000;
    font-weight: normal;
    text-decoration: underline;
    white-space: nowrap;
}

.section-text p {
    font-size: 17.6px;
    color: #000;
    line-height: 2;
    margin: 0 0 15px 0;
    max-width: 100%; 
    text-align: left;
}

/* PC用ロゴを表示、モバイル用を非表示 */
.footer-logo .desktop-text {
    display: block;
}

.footer-logo .mobile-text {
    display: none;
}



/* フッターセクション */
.footer-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    margin-bottom: 2rem;
    color: #666;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.company-address {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.company-phone {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    background: #745848;
    color: white;
    transform: translateY(-2px);
}

.footer-icon svg {
    width: 20px;
    height: 20px;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon:hover {
    background: #745848;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888;
    padding-top: 1.5rem;
}


/* モバイル・タブレット対応 */
@media (max-width: 768px) {
    .header {
        padding: 0 1rem;
    }

   .logo img {
        height: 40px;
        width: auto;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .online-shop-btn {
        font-size: 0; /* テキストを非表示 */
        padding: 0.6rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        gap: 0; /* gapを削除 */
    }
    
    /* アイコンのサイズを調整 */
    .shop-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .hero-container {
        height: 60vh;
        min-height: 350px;
    }

    .hero-brand {
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-brand h2 {
        font-size: 14px;
    }

    .hero-brand .medium-text {
        font-size: 24px;
    }

    .hero-brand .large-text {
        font-size: 22px;
    }

    .hero-vision {
        bottom: 20px;
    }

    .hero-vision h3 {
        font-size: 17.6px;
    }

    .hero-vision p {
        font-size: 16px;
    }

    .section-content {
        flex-direction: column !important;
        gap: 30px;
    }

  .owner-image {
    display: flex;
    justify-content: center;
    }

  .owner-image img {
    width: 100%;
    display: block;
    margin:10px;
    padding: 10px;
  }

    .section-image {
        min-width: auto;
        margin: 30px 0;
    }

    .section-image img {
        height: 250px;
    }

    .section-text {
        padding: 0 20px 15px 20px; /* 左右の余白を対称にする */
        flex: none; 
    }

    .section {
        padding:0;
    }

    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

   .section-text h3 {
    font-size: 17.6px;
    margin-top: 40px; /* ← ここで余白を追加 */
    background-color: #fefefe; /* ← 背景色を白に上書き */
    padding-top: 20px; /* 必要に応じて追加の余白 */
}

    .section-text p {
        font-size: 16px;
        margin: 0 0 15px 0;
        max-width: 100%;
        text-align: left;
    }

   .footer-section {
        padding: 2rem 1rem 1.5rem;
        margin-top: 2rem;
        background-color: #738994;
    }

    .footer-logo img {
        height: 70px;
    }

    .footer-info {
        margin-bottom: 1.5rem;
       color: #fefefe;
    }

    .company-name {
        font-size: 1rem;
    }

    .company-address,
    .company-phone {
        font-size: 0.8rem;
    }

    .footer-icons {
        gap: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-icon {
        width: 35px;
        height: 35px;
    }

    .footer-icon svg {
        width: 18px;
        height: 18px;
    }
  
  .footer-copyright{
  color: #fefefe;
    }

     /* モバイルでPC用ロゴを非表示、モバイル用を表示 */
    .footer-logo .desktop-text {
        display: none;
    }

    .footer-logo .mobile-text {
        display: block;
    }

    }

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

/* モバイル表示：mobile-text表示、desktop-text非表示 */
@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }
}