* {
    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: 1.5rem;
            right: 1.5rem;
            z-index: 100;
        }

        .cursor-pointer {
            cursor: pointer;
        }

        /* メニューアニメーション */
        @keyframes pulseMenu {
            0% { opacity: 1; }
            25%, 75% { opacity: 0.5; }
            50% { opacity: 0; }
            100% { opacity: 0.5; }
        }

        .animate-pulseMenu {
            animation: pulseMenu 20s ease-in-out infinite;
        }

        /* モバイルメニューのスタイル */
        #menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #a8a09e;
            z-index: 1000;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        #menu.show {
            display: flex;
            opacity: 1;
        }

        #menu .close-button {
            position: absolute;
            top: 2.5rem;
            right: 2.5rem;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 1rem;
            z-index: 1001;
        }

        #menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        #menu li {
            width: fit-content;
        }

        #menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: opacity 0.3s ease;
        }

        #menu a:hover {
            opacity: 0.8;
        }

        /* フレックスボックスユーティリティ */
        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .items-center {
            align-items: center;
        }

        .w-\[60px\] {
            width: 60px;
        }

        .w-full {
            width: 100%;
        }

        .text-\[\#f2cfa1\] {
            color: #f2cfa1;
        }


.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: 0;
    padding-bottom: 56.25%; /* 16:9のアスペクト比を維持 (9/16 * 100) */
    min-height: 500px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: contain; /* cover から contain に変更して画像全体を表示 */
    border-radius: 0;
}

.hero-brand {
    position: absolute;
    right: 35%;
    top: 20%;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 1.5vw; /* 34pxから3.5vwに変更 */
    font-weight: normal;
    margin-bottom: 5px;
    line-height: 1.4;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    min-font-size: 16px; /* 最小サイズを設定 */
    max-font-size: 34px; /* 最大サイズを設定 */
}

.hero-title .desktop-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.hero-title .mobile-text {
    font-size: 14px;
    display: block;
    writing-mode: initial;
    line-height: 1.4;
}

.hero-title .mobile-text .text-part {
    display: block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.4;
    white-space: nowrap;
    margin-bottom: 2px;
}



.hero-vision {
    position: absolute;
    bottom: 170px;
    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: #9F9275; /* ロゴの背景色を追加 */
}

.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: 0; /* 余白が背景とのずれを生む場合は削除 */
    padding: 0;
}

.section-image img {
    width: 100%;
    height: auto;          /* 高さを固定せず、画像比率を維持 */
    object-fit: contain;   /* 元画像を切らずに全体表示 */
    background-color: #fff; /* 白背景に明示的に */
    display: block;
}

.owner-image {
    width: 100%;
    margin: 30px 0;
}

.owner-image img {
    width: 400px;
    height: 300px; /* 必要であればheightも自動調整 */
    object-fit: cover; /* 高さを固定するなら併用可能 */
    display: block;
}

.section-text {
    padding: 50px 0px 0;
    text-align: left;
    flex: none;
}

.section-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    color: #000;
    font-weight: normal;
    text-decoration: underline;
    white-space: nowrap;
    margin-left: 60px;
}

.section-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    color: #000;
    font-weight: normal;
    white-space: nowrap;
}

.section-text p {
    font-size: 17.6px;
    color: #000;
    line-height: 2;
    margin: 0 0 15px 60px;
    max-width: 100%; 
    text-align: left;
}

/* プロフィールセクション */
.profile-section {
    background-color: #fff;
    padding: 80px 0px 0;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px; /* 80pxから60pxに縮小 */
    align-items: flex-start;
}

.profile-content {
    flex: 2; /* flex: 1 から flex: 2 に変更してテキスト領域を拡大 */
}

.profile-header {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 40px;
    font-style: italic;
    color: #333;
}

.profile-name {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.profile-english-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.profile-company {
    margin-bottom: 30px;
}

.company-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.company-role {
    font-size: 14px;
    color: #666;
}

.profile-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.media-coverage {
    margin-bottom: 40px;
}

.media-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.media-list {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.profile-image {
    flex-shrink: 0;
    width: 400px;
}

.profile-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.contact-section {
    background-color: #f8f8f8;
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
}

.contact-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.contact-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

.contact-address {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

.contact-hours {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.contact-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid #333;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #333;
    color: #fff;
}

/* デスクトップ・モバイル用テキスト表示切り替え */
.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

.hero-brand .desktop-text {
    display: block;
}

.hero-brand .mobile-text {
    display: none;
}

.contact-info-section {
    background-color: #fefefe;
    padding: 80px 40px;
    border-top: 1px solid #e0e0e0;
}

.contact-info-section h3{
   font-size:20px;
}

.contact-info-section p{
   font-size:17.6px;
  margin-left:0px;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.cta-section {
    flex: 1;
    text-align: left;
}

.cta-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
    margin-left: 20px;
    color: #333;
    letter-spacing: 1px;
}

.contact-info-address {
    font-size: 16px;
    margin-bottom: 8px;
    margin-left: 20px;
    color: #333;
    line-height: 1.6;
}

.contact-info-hours {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-left: 20px;
}

.contact-info-button {
    margin: 0;
}

.contact-info-btn {
     display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    border: 2px solid #333;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: normal;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-btn:after {
    content: '>';
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-info-btn:hover {
    background-color: #333;
    color: #fff;
}

.contact-info-btn:hover:after {
    transform: translateX(5px);
}

    .footer {
            background-color: #1a1a2e;
            color: #ffffff;
            padding: 60px 40px;
            max-width: 100%;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

 .footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0px 100px 0 200px;
    align-items: flex-start; /* 左寄せを明示的に指定 */
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
    width: fit-content;
}

.contact-email .mail-icon {
    width: 40px;
    height: 40px;
}

.contact-email span {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

.navigation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start; /* ナビゲーション全体を左寄せ */
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start; /* リンクを左寄せ */
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cccccc;
}

.contact-phone {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.phone-icon {
    width:40px;
    height: 60px;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-info .phone-label {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

.phone-info .phone-hours {
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 5px;
}

.phone-info .phone-number {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

        /* 右側セクション */
        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            margin: 0 150px;
        }

        .logo-section {
            text-align: center;
        }

        .logo-main {
            margin-bottom: 5px;
        }

        .logo-main img {
            width: auto;
        }

        .logo-sub {
            font-size: 14px;
            letter-spacing: 4px;
            color: #ffffff;
            font-weight: 300;
        }

        .social-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .note-logo img {
            max-height: auto;
            width: 120px;
        }

        .social-icons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-icon img {
            width: 32px;
            height: 32px;
        }




/* モバイル・タブレット対応 */
@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: 0;
        padding-bottom: 65%; /* 75%から65%に短縮 */
        min-height: 380px; /* 400pxから380pxに調整 */
    }
  
  .hero-vision img {
    width: 250px; /* 370pxから250pxに縮小 */
    height: auto; /* 比率を維持 */
}

 .hero-brand {
    right: 30%;
    top: 30%;
    transform: translateY(-50%);
    z-index: 2;
}
.hero-brand .desktop-text {
    display: none;
}

.hero-brand .mobile-text {
    display: block;
}

   .hero-title .desktop-text {
        display: none;
    }
    .hero-title .mobile-text {
        display: block;
    }

 


.hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; /* 追加 */
        object-fit: cover; /* containからcoverに変更 */
        border-radius: 0;
        z-index: 1; /* 背景層 */    }


     .hero-vision {
        bottom: 25px; /* 30pxから25pxに調整 */
        z-index: 2; /* 画像の上に表示 */
    }

    .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 {
        width: 100%;
        margin: 30px 0;
      padding: 0;
    }

    .section-image img {
        height: 450px;
    width: 100vw; /* 画面幅いっぱいに */
    margin-left: calc(-50vw + 50%); /* 中央揃えで画面幅いっぱいに */
    object-fit: cover; /* 画像を切り抜いて表示 */
    }

    .section-text {
        padding: 0 0px 15px 0px; /* 左右の余白を対称にする */
        flex: none; 
    }

    .section {
        padding: 0;
        width: 100%; /* 追加 */
        max-width: 100%; 
    }

    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%; /* 追加 */
        width: 100%;
    }

    .section-text h2 {
        font-size: 17.6px;
        margin-top: 40px; /* ← ここで余白を追加 */
        background-color: #fefefe; /* ← 背景色を白に上書き */
        padding-top: 20px; /* 必要に応じて追加の余白 */
        margin-left: 20px;
    }

    .section-text p {
        font-size: 16px;
        margin: 0 0 15px 20px;
        max-width: 100%;
        text-align: left;
    }
  
    /* プロフィールセクション モバイル対応 */
    .profile-section {
        padding: 40px 0;
    }

    .profile-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .profile-image {
        width: 100%;
        order: -1;
    }

    .profile-header {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .profile-name {
        font-size: 20px;
    }
  
   .contact-info-section {
        padding: 40px 20px;
    }
    
.contact-info-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    align-items: center; /* 追加 */
}

.contact-info-content {
    text-align: center; /* 追加 */
}

.contact-info-title {
    font-size: 20px;
    margin-bottom: 15px;
    margin-left: 0; /* 左余白をリセットして中央揃え */
}

.contact-info-address,
.contact-info-hours {
    font-size: 14px;
    margin-left: 0; /* 左余白をリセットして中央揃え */
}

.cta-section {
    text-align: center;
    margin-left: 0; /* 左余白をリセット */
}

.cta-section h3 {
    margin-left: 0; /* h3のmargin-leftをリセット */
}

.cta-section p {
    margin-left: 0; /* pのmargin-leftをリセット */
}

.contact-info-btn {
    padding: 14px 35px;
    font-size: 15px;
}
  
 

/* footer */
            .footer {
                padding: 40px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-left {
        order: 2;
        align-items:center;
        margin: 0;
    }

    .contact-email,
    .contact-phone {
        justify-content: center; 
    }

    .nav-links {
        align-items: center; 
    }

            .footer-right {
                order: 1;
                align-items: center;
                margin: 0;
            }

            .logo-section {
                text-align: center;
            }

            .social-section {
                align-items: center;
            }

            .social-icons {
                flex-direction: row;
                gap: 20px;
            }


            .logo-main {
                font-size: 36px;
            }


    /* モバイル表示：mobile-text表示、desktop-text非表示 */
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }
}