
/* ==================== */
/* CSS変数定義（更新版）
/* ==================== */
:root {
    --primary-color: #ffffff;
    --secondary-color: #014385;      /* メインの青 */
    --accent-color: #165b8e;   /* アクセントの明るい青 */
    --accent-green: #00a86b;        /* アクセントの緑 */
    --text-color: #333333;
    --light-text: #666666;
    --background-light: #f5f5f5;
    --border-light: #eee;
    --border-medium: #ddd;
    --hover-light: #f5f5f5;
    --shadow-light: rgba(0, 102, 204, 0.1);
    --shadow-medium: rgba(0, 102, 204, 0.15);
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-dark: rgba(0, 96, 161, 0.6); /* アクセントカラーのダークバージョン */
    --overlay-medium: rgba(0, 0, 0, 0.5);
    --success-bg: #d4edda;
    --success-text: #155724;
    --error-bg: #f8d7da;
    --error-text: #721c24;
}

/* ==================== */
/* リセット & ベーススタイル
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

html {
    scroll-padding-top: 80px; 
    scroll-behavior: smooth;
}

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

img[loading="lazy"] {
    background-color: var(--hover-light);
}

/* ==================== */
/* レイアウト & コンテナ
/* ==================== */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    font-weight: 400;
}

/* ==================== */
/* 背景色がライトのセクション
/* ==================== */
#Features,
#vision,
#ceo,
#contact
 {
    background-color: var(--background-light);
}

#about,
#services,
#expansion,
#company{
    background-color: var(--primary-color);
}

/* ==================== */
/* ヘッダー & ナビゲーション（修正版）
/* ==================== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: var(--primary-color);
    z-index: 1000;
    padding: 10px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
}

.logo-img {
    height: 60px;
    margin-right: 10px;
    filter: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 言語切り替え */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    font-size: 0.85rem;
    color: var(--light-text);
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--secondary-color);
    background-color: var(--background-light);
}

.lang-separator {
    color: var(--border-medium);
    font-size: 0.85rem;
}

/* デスクトップ用言語切り替え */
.lang-switcher.desktop {
    display: flex;
}

/* モバイル用言語切り替え（デフォルト非表示） */
.lang-switcher.mobile {
    display: none;
}

.nav ul {
    display: flex;
    align-items: center;
}

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

.nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ホバー時（デスクトップのみ） */
.header:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(-50%) translateY(-2px);
}


/* ==================== */
/* メインビジュアル（スライダー）
/* ==================== */
.image-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.image-slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--primary-color);
    background-color: var(--overlay-dark);
    padding: 20px 30px;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.slide-content p {
    font-size: 1.1rem;
    font-weight: 400;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-controls button {
    background-color: var(--overlay-dark);
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--overlay-dark);
    margin: 0 6px;
    cursor: pointer;
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
}



/* ==================== */
/* 会社概要セクション（更新版）
/* ==================== */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ポイント表示 */
.about-points {
    margin-top: 30px;
}

.about-point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-point:last-child {
    margin-bottom: 0;
}

.point-number-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 20px;

    background: linear-gradient(
        145deg,
        rgba(0, 102, 204, 0.85) 0%,
        rgba(0, 153, 255, 0.75) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.point-text {
    flex: 1;
}

.point-text h4 {
    font-size: 1.1rem;
    color:var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

/* ==================== */
/* 特徴セクション（統一版）
/* ==================== */


.features .container{
    max-width: 800px;
}


/* 特徴行 */
.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-row:last-child {
    margin-bottom: 0;
}



.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* テキストコンテンツ */
.feature-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    line-height: 1.4;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.feature-intro {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* 特徴アイテム */
.feature-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background-light);
    color: var(--secondary-color);
    border-radius: 8px;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1;
}



/* ==================== */
/* サービスセクション
/* ==================== */


/* サービス概要説明 */
.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.intro-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.intro-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow-light);
}

.intro-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1rem;
}

.intro-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* サービスグリッド */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* サービスカード */
.service-card {
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    position: relative;
    transition: transform 0.3s ease;
}

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

.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-text p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* 現在の展開状況 */
.current-status {
    background: var(--background-light);
    border-radius: 8px;
    padding: 20px 25px;
    border-left: 4px solid var(--accent-color);
    margin: 0 auto;
    max-width: 600px;
}

.status-content h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.status-content h4 i {
    margin-right: 8px;
    color: var(--accent-color);
}



/* 現在の状況（シンプルテキスト） */
.current-status p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    text-align: start;
    max-width: 800px;
    margin: 0 auto;
}


/* ==================== */
/* 販売商品一例ブロック（シンプル版）
/* ==================== */

.products-example {
    margin-top: 40px;
    text-align: center;
}

.products-example h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.products-subtitle {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4列（デスクトップ） */
    gap: 15px;
}

.product-item {
    aspect-ratio: 1 / 1; /* 正方形 */
    border-radius: 8px;
    overflow: hidden;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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



/* ==================== */
/* ビジョンセクション（修正版）
/* ==================== */
.vision-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}



/* 将来ビジョンと戦略 */
.vision-future {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.vision-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.vision-strategy-content {
    flex: 1;
    min-width: 300px;
}

.future-vision h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
}

.future-vision h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.future-vision p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* 戦略アイテム（横並び） */
.strategy-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strategy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    background: linear-gradient(
        145deg,
        rgba(0, 102, 204, 0.85) 0%,
        rgba(0, 153, 255, 0.75) 100%
    );
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 4px 15px rgba(0, 102, 204, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.strategy-item:hover {
    transform: translateY(-5px);
}

.strategy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px var(--shadow-light);
}

.strategy-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.strategy-item h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}


/* ==================== */
/* 海外展開セクション（About風）
/* ==================== */

.expansion .container {
    max-width: 800px;
}

.expansion-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.expansion-image {
    flex: 1;
    min-width: 300px;
}

.expansion-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.expansion-text {
    flex: 1;
    min-width: 300px;
}

.expansion-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.additional-text {
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* 拡張ポイント */
.expansion-points {
    margin-top: 25px;
}

.expansion-point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.expansion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1.4;
}



/* ==================== */
/* 代表紹介セクション（2段構造版）
/* ==================== */


/* 第1段目：写真2枚 + メッセージ */
.ceo-row-first {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* 写真エリア */
.ceo-photos-left,
.ceo-photos-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ceo-photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.ceo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 代表メッセージボックス（枠付き） */
.ceo-message-box {
    flex: 2;
    min-width: 300px;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px solid var(--border-light);
}

.ceo-message-box h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.ceo-message-box p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.ceo-message-box p:last-of-type {
    margin-bottom: 20px;
}

/* 名前（シンプル） */
.ceo-name-simple {
    text-align: right;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.ceo-name-simple p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* 第2段目：経歴 + 写真2枚 */
.ceo-row-second {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* 経歴 */
.ceo-education {
    flex: 2;
    min-width: 300px;
}

.ceo-education h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.education-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.education-column p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.education-column p:last-child {
    margin-bottom: 0;
}

/* ==================== */
/* 会社情報セクション
/* ==================== */
.company-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.company-info {
    flex: 1;
    min-width: 300px;
}

.company-info-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.info-item {
    display: grid;
    grid-template-columns: 100px 1fr; /* ラベルと内容をグリッドで分割 */
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    align-items: start; /* 上部を揃える */
    gap: 20px; /* 間隔 */
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}

.info-item p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

/* ==================== */
/* お問い合わせフォーム
/* ==================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--primary-color);
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-medium);
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.required {
    color: #e74c3c;
}

.form-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-result {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    text-align: center;
}

.success {
    background-color: var(--success-bg);
    color: var(--success-text);
    display: block;
}

.error {
    background-color: var(--error-bg);
    color: var(--error-text);
    display: block;
}

/* ==================== */
/* フッター（ヘッダーと同じ色合い）
/* ==================== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}


.footer-info p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.footer-info address p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.footer-info address {
    margin-top: 20px;
}

.footer-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
}

.footer-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--secondary-color);
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: var(--text-color);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--light-text);
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    margin-right: 10px;
    filter: none;
}

/* 追加 */


/* 既存の.footer, .footer-content, .footer-infoなどはそのまま */

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3カラムに固定 */
    gap: 40px;
    margin-bottom: 30px;
}

/* 会社情報セクション（既存スタイルを拡張） */
.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info address {
    margin-top: 10px;
}

.footer-info address p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* メニューリンクセクション（既存スタイルそのまま） */
.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    padding-bottom: 8px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-color);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* オンラインショップセクション（新規追加） */
.footer-shops h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    padding-bottom: 8px;
}

.shop-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.shop-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shop-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.external-icon {
    color: var(--secondary-color);
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.shop-link:hover .external-icon {
    opacity: 1;
    transform: translateX(2px);
}

/* フッター下部（既存スタイルそのまま） */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--light-text);
}


/* ==================== */
/* プライバシーポリシー
/* ==================== */

#privacy {
    margin-top: 80px;
}
.privacy .container {
    max-width: 500px;
}

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

.privacy-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-top: -20px;
}

.privacy-text p {
    line-height: 1;
    margin-bottom: 15px;
    font-size: 14px;
}

.privacy-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-text li {
    line-height: 1;
    font-size: 14px;
}

.policy-date {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-medium);
    font-style: italic;
    color: #777;
}


/* ==================== */
/* 404エラーページ（スマホ最適化）
/* ==================== */

.error-page {
    min-height: calc(100vh - 140px); /* ヘッダーとフッターの高さを考慮 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-container {
    width: 100%;
    max-width: 400px; /* スマホサイズに固定 */
    margin: 0 auto;
    padding: 0 20px;
}

.error-content {
    text-align: center;
    width: 100%;
    padding: 40px 30px;
}

.error-content h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 700;
}

.error-content h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.error-content p {
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.home-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.home-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}





/* ==================== */
/* レスポンシブデザイン
/* ==================== */

/* タブレットサイズ（992px以下） */
@media (max-width: 992px) {
    /* 共通スタイル */
    .section {
        padding: 40px 0;
    }
    
    .container {
        width: 95%;
    }
    
    /* ヘッダー */
    .header {
        width: 95%;
        top: 10px;
        padding: 12px 20px;
    }
    
    .lang-switcher.desktop {
        display: none;
    }
    
    .lang-switcher.mobile {
        display: flex;
    }
    
    /* ナビゲーション */
    .nav {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        top: 70px;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 0;
    }
    
    .nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav ul li a {
        display: block;
        padding: 10px 15px;
        border-radius: 8px;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* メインビジュアル */
    .slide-content {
        width: 90%;
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    /* Aboutセクション */
    /* .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    } */

    .about-content {
        flex-direction: row; /* 横並びを維持 */
        gap: 30px;
    }
    
    .about-text, .about-image {
        width: 48%; /* 幅を調整 */
    }
    
    .about-image img {
        height: auto;
        max-height: 250px; /* 最大高さを制限 */
        object-fit: cover;
    }
    
    /* 特徴セクション - タブレットでは横並びを維持 */
    .feature-row {
        flex-direction: row; /* 横並びを維持 */
        gap: 30px;
        margin-bottom: 50px;
    }

    .feature-row:nth-child(2) {
        flex-direction: row-reverse; /* 2段目は逆順 */
    }

    .feature-text, .feature-image {
        width: 48%; /* 幅を調整 */
    }
    
    .feature-image {
        height: 200px; /* 高さを少し小さく */
    }
    
    /* サービスセクション */
    .intro-points {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 500px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列を維持 */
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .service-image {
        height: 150px; /* 高さを調整 */
    }
    
    .service-content, .current-status {
        padding: 20px;
    }
    
    /* ビジョンセクション - タブレットでは横並びを維持 */
    .vision-future {
        flex-direction: row; /* 横並びを維持 */
        gap: 30px;
    }
    
    .vision-image {
        width: 48%;
        height: 200px;
    }
    
    .vision-strategy-content {
        width: 48%;
    }
    
    .strategy-items {
        grid-template-columns: repeat(3, 1fr); /* 3列を維持 */
    }
    
    /* 海外展開セクション - タブレットでは横並びを維持 */
    .expansion-content {
        flex-direction: row; /* 横並びを維持 */
        gap: 30px;
    }
    
    .expansion-text, .expansion-image {
        width: 48%;
    }
    
    .expansion-image {
        height: 200px;
    }
    
    /* 代表紹介セクション - タブレットでは横並びを維持 */
    .ceo-row-first {
        flex-direction: row;
        gap: 30px;
    }
    
    .ceo-photos-left {
        width: 48%;
        flex-direction: column;
    }
    
    .ceo-message-box {
        width: 48%;
        padding: 25px;
    }
    
    .ceo-row-second {
        flex-direction: row;
        gap: 30px;
    }
    
    .ceo-education {
        width: 60%;
    }
    
    .ceo-photos-right {
        width: 35%;
    }
    
    .education-items {
        grid-template-columns: repeat(3, 1fr); /* 3列を維持 */
    }
    
    /* 会社情報セクション */
    .company-content {
        flex-direction: column;
    }
    
    .company-info, .map-container {
        width: 100%;
    }
    
    .info-item h4 {
        margin-bottom: 5px;
    }
}

/* タブレット小サイズ（768px以下） */
@media (max-width: 768px) {
    /* ヘッダー */
    .header {
        width: 90%;
        padding: 10px 15px;
    }
    
    .header-left {
        gap: 15px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .header-right {
        gap: 15px;
    }

    .about-content {
        gap: 25px;
    }
    
    .about-image img {
        max-height: 220px;
    }
    
    /* 特徴セクション */
    .feature-row {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .feature-image {
        height: 180px;
    }
    
    /* サービスセクション */
    .services-intro p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .intro-item {
        padding: 10px 12px;
        justify-content: flex-start;
    }
    
    .intro-item span {
        font-size: 0.85rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    /* ビジョンセクション */
    .strategy-items {
        grid-template-columns: repeat(2, 1fr); /* 2列に変更 */
        gap: 10px;
    }
    
    /* 代表紹介セクション */
    .education-items {
        grid-template-columns: repeat(2, 1fr); /* 2列に変更 */
    }
}

/* モバイルサイズ（576px以下） */
@media (max-width: 576px) {
    /* ここから下は変更なし、既存のモバイルスタイルを維持 */
    /* 共通スタイル */
    .section-title {
        font-size: 1.6rem;
    }
    
    /* ヘッダー */
    .header {
        width: 92%;
        top: 10px;
    }
    
    .header-left {
        gap: 12px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav {
        width: 92%;
        max-width: 400px;
        top: 65px;
    }
    
    .nav.active {
        top: 60px;
    }
    
    .lang-btn {
        font-size: 0.8rem;
        padding: 4px 6px;
    }
    
    /* メインビジュアル */
    .slide-content h2 {
        font-size: 1.4rem;
    }
    
    .slider-controls button {
        display: none;
    }
    
    /* Aboutセクション */
    .about-content {
        flex-direction: column!important; /* 縦1列に強制 */
        gap: 25px;
    }
    
    .about-text, .about-image {
        width: 100%!important; /* 全幅に */
    }
    
    .about-image img {
        max-height: 200px;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-point {
        margin-bottom: 12px;
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列 */
        gap: 12px;
    }
    
    .point-number-circle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-right: 15px;
    }
    
    /* 特徴セクション - モバイルでは縦1列 */
    .feature-row {
        flex-direction: column!important; /* 縦1列に強制 */
        gap: 30px;
        margin-bottom: 40px;
    }

    .feature-row:nth-child(2) {
        flex-direction: column!important; /* 2段目も縦1列 */
    }

    .feature-text, .feature-image {
        width: 100%!important; /* 全幅に */
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    
    .feature-intro {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .item-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .item-content h4 {
        font-size: 0.95rem;
    }
    
    /* サービスセクション - モバイルでは縦1列 */
    .services-intro {
        margin-bottom: 30px;
    }
    
    .services-intro p {
        font-size: 0.95rem;
    }
    
    .intro-item {
        padding: 8px 10px;
    }
    
    .intro-item i {
        font-size: 0.9rem;
        margin-right: 8px;
    }
    
    .intro-item span {
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr!important; /* 1列に強制 */
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-content {
        padding: 18px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列 */
        gap: 12px;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .current-status {
        padding: 15px 18px;
    }
    
    .status-content h4 {
        font-size: 0.95rem;
    }
    
    .status-content p {
        font-size: 0.85rem;
    }
    
    /* ビジョンセクション - モバイルでは縦1列 */
    .vision-content {
        gap: 30px;
    }
    
    .current-status p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .future-vision h3 {
        font-size: 1.3rem;
    }
    
    .future-vision p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .vision-future {
        flex-direction: column!important; /* 縦1列に強制 */
    }
    
    .vision-image {
        width: 100%!important;
        height: 200px;
    }
    
    .vision-strategy-content {
        width: 100%!important;
    }
    
    .strategy-items {
        grid-template-columns: 1fr!important; /* 1列に強制 */
        gap: 15px;
    }
    
    .strategy-item {
        padding: 18px;
    }
    
    .strategy-icon {
        width: 50px;
        height: 50px;
    }
    
    .strategy-icon i {
        font-size: 1.3rem;
    }
    
    .strategy-item h4 {
        font-size: 0.95rem;
    }
    
    /* 海外展開セクション - モバイルでは縦1列 */
    .expansion-content {
        flex-direction: column!important; /* 縦1列に強制 */
    }
    
    .expansion-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .additional-text {
        font-size: 0.9rem;
    }
    
    .expansion-text, .expansion-image {
        width: 100%!important;
    }
    
    .expansion-image {
        height: 180px;
    }
    
    /* 代表紹介セクション - モバイルでは縦1列 */
    .ceo-row-first {
        flex-direction: column!important; /* 縦1列に強制 */
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .ceo-photos-left {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%!important;
        margin: 0;
        padding: 0;
    }
    
    .ceo-photo {
        width: 100%;
        height: 180px;
        margin: 0;
        padding: 0;
    }
    
    .ceo-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }
    
    .ceo-message-box {
        order: 1;
        width: 100%!important;
        padding: 20px;
        margin: 0;
    }
    
    .ceo-message-box h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .ceo-message-box p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .ceo-name-simple {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .ceo-row-second {
        flex-direction: column!important; /* 縦1列に強制 */
        gap: 30px;
    }
    
    .ceo-education {
        width: 100%!important;
    }
    
    .ceo-education h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .education-items {
        grid-template-columns: 1fr!important; /* 1列に強制 */
        gap: 15px;
    }
    
    .education-column p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .ceo-photos-right {
        width: 100%!important;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .ceo-photos-right .ceo-photo {
        width: 100%;
        height: 180px;
    }
    
    /* 会社情報セクション */
    .company-content {
        flex-direction: column;
    }
    
    .company-info, .map-container {
        width: 100%;
    }
    
    .map-container {
        height: 250px;
    }
    
    /* フッター */

     .footer-content {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    
    .shop-link {
        padding: 10px 12px;
    }
    
    .shop-name {
        font-size: 0.9rem;
    }
    
    .footer-links ul li a {
        font-size: 0.9rem;
    }
}


/* ==================== */
/* WeChat Floating Button (CSS Only)
/* ==================== */

.wechat-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* チェックボックスは非表示 */
.wechat-toggle {
    display: none;
}

.wechat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color, #07C160);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: white;
    font-size: 28px;
}

.wechat-icon:hover {
    background-color: var(--accent-color, #07C160);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wechat-qr {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    width: 180px;
    text-align: center;
    z-index: 1001;
}

.wechat-qr::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* チェックボックスがチェックされたらQRコードを表示 */
.wechat-toggle:checked ~ .wechat-qr {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.qr-code {
    width: 140px;
    height: 140px;
    margin: 0 auto 10px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 5px;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wechat-qr p {
    font-size: 12px;
    color: #666;
    margin: 8px 0 0;
    font-weight: 500;
}

/* QRコードをクリックしても閉じないようにする */
.wechat-qr label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: default;
}

/* ==================== */
/* レスポンシブ対応
/* ==================== */

@media (max-width: 768px) {
    .wechat-float {
        bottom: 15px;
        right: 15px;
    }
    
    .wechat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .wechat-qr {
        bottom: 60px;
        width: 160px;
        padding: 15px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .wechat-float {
        bottom: 10px;
        right: 10px;
    }
    
    .wechat-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .wechat-qr {
        width: 140px;
        right: -10px;
    }
    
    .wechat-qr::before {
        right: 25px;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
}




/* ==================== */
/* 販売商品一例ブロック（シンプル版）
/* ==================== */

.photos-example {
    margin-top: 40px;
    text-align: center;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4列（デスクトップ） */
    gap: 15px;
}

.photos-item {
    aspect-ratio: auto ; 
    overflow: hidden;
}

.photos-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

