/* 全体のスタイル */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* ヘッダーのスタイル */
header {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: #ccc 1px solid;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

/* サービス名からロゴ画像への変更に伴い、この部分を修正します */
.logo img {
    height: 40px; /* ロゴ画像の高さを調整 */
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

header nav a.current {
    border-bottom: 2px solid #1e3a8a;
    color: #1e3a8a;
}

.paragraph {
    background: #1e3a8a;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.paragraph h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ヒーローセクションのスタイル */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/backgroundimage.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 8rem 0;
    /* ここに以下のコードを追加します */
    background-size: contain; 
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #f0c419;
    color: #1e3a8a;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e6b90e;
}

/* 製品紹介セクションのスタイル */
.product-info {
    /* すでにあるスタイルはそのままにして、以下を追加 */
    border: 1px solid #ccc; /* 1pxの太さ、実線、薄いグレーのボーダー */
    border-radius: 5px;     /* 角を丸くする */
}

.product-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* 製品一覧セクションのスタイル */
.product-item {
    text-align: center;
    margin-bottom: 4rem;
    /* ここに以下のコードを追加 */
    border: 1px solid #ddd;
    padding: 20px; /* ボーダーの内側に余白を追加 */
    border-radius: 8px;
}

.product-item img {
    width: 100%;
    /* ここに以下のコードを追加します */
    height: 250px; /* 画像の高さを固定する */
    object-fit: cover; /* 縦横比を維持しながら画像を切り抜く */
    
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 40px;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-item img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.feature-item .text-content {
    width: 50%;
}

/* フッターのスタイル */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* お問い合わせフォームのスタイル */
.contact-form {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}

.contact-form form {
    max-width: 600px;
    margin: auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* パディングとボーダーを幅に含める */
}

.contact-form .btn {
    width: 100%;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* レスポンシブデザインのスタイル */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-item, .feature-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-item img, .feature-item .text-content {
        width: 100%;
    }

    .feature-item .text-content {
        margin-top: 20px;
    }
}

/* 新しいページ用のスタイル */
.page-content {
    background: #fff;
    padding: 4rem 0;
}

.page-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}


/* 導入事例のスタイル */
.case-study-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.case-study-item h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.case-study-flex-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.case-study-flex-content.reverse {
    flex-direction: row-reverse;
}

.case-study-flex-content img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.case-study-flex-content p {
    width: 50%;
}

@media (max-width: 768px) {
    .case-study-flex-content, .case-study-flex-content.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-flex-content img, .case-study-flex-content p {
        width: 100%;
    }

    .case-study-flex-content img {
        margin-bottom: 1rem;
    }
}
/* 画像ギャラリーのスタイル */
.product-image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-gallery .main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.product-image-gallery .thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.product-image-gallery .thumbnail-item {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-image-gallery .thumbnail-item:hover {
    border-color: #1e3a8a;
}

/* ポップアップのスタイル */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none; /* 初期状態では非表示 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
}

/* YouTube動画のレスポンシブ対応 */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* アスペクト比16:9 */
    height: 0;
    overflow: hidden;
    margin-top: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 背景色をつけたいセクションのスタイル */
.colored-section {
    background-color: #f9f9f9; /* 背景色を設定 */
    padding: 20px;              /* 内側の余白を設定 */
    border-radius: 8px;         /* 角を丸くする */
    margin-bottom: 20px;        /* 下に余白を追加 */
}

/* company.htmlのスタイル */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px; /* PCとスマホの余白を調整 */
}

.text-content {
    flex-basis: 50%;
    margin-bottom: 4rem; /* この値は必要に応じて調整してください */
}

/* pタグの幅を固定する指定は削除 */
.text-content p {
    padding: 0; /* 不要なpaddingを削除 */
    max-width: 800px; /* 幅を最大値として設定 */
    margin: 0 auto; /* 中央寄せ */
    text-align: left; /* テキストを左寄せに戻す */
}

.image-container {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%; /* 親要素の幅に合わせて表示 */
    height: auto;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px; /* スマホ時の余白を調整 */
    }
    
    .text-content, .image-container {
        flex-basis: 100%;
        margin: auto;
    }
    
    .text-content p {
        padding: 0 15px; /* スマホ画面での横の余白 */
        max-width: 100%; /* スマホでは幅を100%に */
        text-align: left;
    }
}

/* ニュース一覧ページのスタイル */
.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.news-list li:hover {
    background-color: #f9f9f9;
}

.news-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.news-date {
    font-size: 0.9rem;
    color: #777;
    flex-basis: 15%;
    min-width: 100px;
}

.news-category {
    background-color: #1e3a8a;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 3px;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-title {
    font-weight: bold;
    flex-grow: 1;
}

/* ニュース詳細ページのスタイル */
.news-article {
    max-width: 800px;
    margin: auto;
}

.news-meta {
    margin-bottom: 1rem;
}

.news-article h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-list li a {
        flex-wrap: wrap;
    }
    
    .news-date {
        flex-basis: 100%;
        margin-bottom: 5px;
    }

    .news-title {
        margin-top: 10px;
    }
}

/* ハンバーガーメニューボタンのスタイル */
.menu-toggle {
    display: none; /* PCでは非表示 */
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 20;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ナビゲーションのスタイル（スマホ用） */
@media (max-width: 768px) {
    .container {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block; /* スマホでは表示 */
    }

    header nav {
        position: fixed;
        top: 0;
        left: -100%; /* 画面外に隠す */
        width: 80%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding-top: 60px;
        transition: left 0.3s ease;
        z-index: 10;
        overflow-y: auto;
    }

    header nav.is-active {
        left: 0; /* アクティブなときに表示 */
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul li {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

    header nav ul li a {
        padding: 15px 20px;
        display: block;
    }
}
/* ご利用の流れセクションのスタイル */
.flow-section {
    padding: 60px 0;
    text-align: center;
}

.flow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.flow-item {
    flex-basis: 150px;
    flex-grow: 1;
    max-width: 200px;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #1e3a8a;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.step-icon .step-number {
    font-size: 1.5rem;
}

.flow-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.flow-item p {
    font-size: 0.9rem;
    color: #555;
}

.arrow {
    font-size: 2.5rem;
    color: #1e3a8a;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .flow-container {
        flex-direction: column;
    }
    
    .flow-item {
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .arrow {
        display: none; /* スマホでは矢印を非表示にする */
    }
    
    .flow-item::after {
        content: '↓';
        display: block;
        font-size: 2.5rem;
        color: #1e3a8a;
        margin-top: 10px;
    }
    
    .flow-item:last-child::after {
        content: none;
    }
}