/* 全体のリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ボディの基本スタイル */
body {
    font-family: '游ゴシック', 'Yu Gothic', 'YuGothic', 'Yu Gothic Medium', 'YuGothic Medium', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    font-size: 20px; /* 基本の文字サイズを増やしました */
    padding-top: 80px; /* ヘッダーのスペース確保 */
}


/* ヘッダー */
header {
    background-color: #fff; /* 白背景 */
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0; /* パディングを調整 */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.logo img {
    height: 42px; /* ロゴのサイズを調整 */
    vertical-align: middle; /* または bottom */
}

.logo a {
    line-height: 0;
}

/* ナビゲーションメニュー */
.main-nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.menu-item {
    position: relative; /* ドロップダウンを絶対位置で表示 */
}

.menu-item a {
    text-decoration: none;
    color: #333; /* ダークグレー */
    font-size: 18px; /* フォントサイズを増やしました */
    font-weight: 500;
    padding: 12px;
    position: relative; /* 下線アニメーションのために追加 */
    transition: color 0.3s ease; /* 背景色の変化を削除 */
}

.menu-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 7px; /* 下線の位置を調整 */
    width: 0;
    height: 1px; /* 下線の太さ */
    background-color: gray; /* 下線の色を灰色に */
    transition: width 0.2s ease; /* 下線のアニメーション */
}

.menu-item a:hover::after,
.menu-item a:focus::after {
    width: 100%; /* 下線を全体に表示 */
}

.menu-item a:hover,
.menu-item a:focus {
    color: gray; /* ホバー時の文字色を灰色に変更 */
}

/* ドロップダウンメニュー */
.dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    top: 100%; /* 真下に表示 */
    left: 0;
    min-width: 170px; /* 幅を調整 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px); /* 初期位置を少し下に */
    transition: opacity 0.3s ease, transform 0.3s ease; /* フェードインとスライドイン */
    z-index: 1000;
}

.menu-item:hover .dropdown,
.menu-item:focus-within .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0); /* ドロップダウンが下から上がってくる */
}

.dropdown li {
    padding: 0px 25px;
    display: flex;
    align-items: center;
}

.dropdown li::before {
    content: none; /* マークを非表示にする */
}

.dropdown a {
    color: #333;
    font-size: 16px; /* フォントサイズを増やしました */
    transition: color 0.2s ease;
}

.dropdown a:hover,
.dropdown a:focus {
    color: gray; /* ホバー時の文字色を灰色に変更 */
}

.dropdown a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px; /* 下線の位置を調整 */
    width: 0;
    height: 1px; /* 下線の太さ */
    background-color: gray; /* 下線の色を灰色に */
    transition: width 0.2s ease; /* 下線のアニメーション */
}

.dropdown a:hover::after,
.dropdown a:focus::after {
    width: 100%; /* 下線を全体に表示 */
}

/* 検索ボックス */
.search-box {
    position: relative;
}


.search-input {
    padding: 7px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 16px; /* フォントサイズを増やしました */
    color: #333;
}

.search-button {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px; /* フォントサイズを増やしました */
    color: #333;
    cursor: pointer;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger {
    width: 40px;
    height: 2px;
    background-color: #333;
}

/* ハンバーガーメニューの動作（モバイル表示用） */
.menu-toggle.active + .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-toggle.active .hamburger {
    background-color: #000; /* ハンバーガーがアクティブなときの色 */
}
/* メインコンテンツ */
.main-content {
    padding-top: 1px; /* ヘッダーの高さ分 */
}

/* セクション */
section {
    padding: 45px 20px;
    text-align: center;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

section p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* フッター */
footer {
    background-color: #f5f5f5;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

footer p {
    font-size: 16px;
    color: #666;
}

footer a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

footer a:hover,
footer a:focus {
    color: #000;
}

/* レスポンシブ対応 */
/* スマホやタブレット向けの調整 */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

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

    .search-box {
        display: none; /* モバイルでは検索ボックスを非表示 */
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .hamburger {
        width: 40px;
        height: 3px;
        background: #333;
        margin: 2px 0;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        align-items: center; /* 中央揃え */
    }

    .menu-item {
        width: 100%; /* メニュー項目を幅いっぱいに */
        text-align: center; /* 各項目を中央揃え */
    }

    .menu-item a {
        padding: 15px;
        color: #fff;
        width: 100%; /* リンクを幅いっぱいに */
    }

    /* サブメニューのスタイル */
    .dropdown {
        display: none;
        flex-direction: column;
        background-color: #444; /* サブメニューの背景色 */
        position: relative;
        width: 100%;
    }

    .menu-item:hover .dropdown,
    .menu-item:focus-within .dropdown {
        display: flex; /* ホバー時に表示 */
    }

    .dropdown a {
        padding: 10px 15px;
        color: #ccc; /* サブメニューのフォント色 */
        text-align: center;
    }

    .dropdown a:hover {
        background-color: #555; /* サブメニューのホバー時の背景色 */
        color: #fff; /* ホバー時のフォント色 */
    }

    .menu-active {
        display: flex;
    }
}

/* 基本ボタンスタイル */
.more1 {
    display: inline-block;
    padding: 6px 25px;
    border: 2px solid #000; /* ボタンのボーダー */
    border-radius: 2px; /* 角を少しだけ丸くする */
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    position: relative; /* 擬似要素の配置のために追加 */
    overflow: hidden; /* はみ出る要素を隠す */
    color: #000; /* 初期の文字色 */
    background-color: #fff; /* 初期の背景色 */
    transition: color 0.3s ease; /* 文字色の変化をなめらかに */
}

/* 背景色のスタイリッシュな変化 */
.anm-btn1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #333; /* ホバー時の背景色 */
    transition: width 0.2s ease; /* 幅の変化をなめらかに */
    z-index: 1; /* テキストの後ろに配置 */
}

.anm-btn1:hover::before {
    width: 100%; /* ホバー時に背景色を全体に広げる */
}

.anm-btn1:hover {
    color: #fff; /* ホバー時の文字色を白に */
}

/* テキストのスタイル */
.anm-btn1 span {
    display: inline-block;
    font-size: 16px; /* フォントサイズを増やしました */
    position: relative; /* 擬似要素の上に配置するため */
    z-index: 1; /* テキストを最前面に表示 */
}

#top-content {
    width: 100%;
    margin: auto;
}

.media-container {
    position: relative;
    width: 100%;
    height: 50vh; /* 画面の高さの50% */
    overflow: hidden;
}

.media-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#top-video video,
.swiper-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* コンテナに収まるように拡大・縮小 */
}

#top-video {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}

.swiper-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.swiper-img{
    max-width: 90%; /* 横幅がコンテナを超えないように */
    max-height: 100%; /* 高さがコンテナを超えないように */
    object-fit: contain; /* アスペクト比を維持して収まる */
    margin: 0 auto; /* 中央寄せ */
    display: block; /* 縦横に余白が発生する場合でも中央に揃える */
}

#member {
    background-color: #e8e8e8; /* 薄い灰色の背景 */
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative; /* z-indexを有効にするために追加 */
}

#member .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* 左右の要素を中央配置 */
    width: 80%;
    max-width: 800px;
    margin: 0 auto; /* 左右中央揃え */
    background-color: #e8e8e8; /* 背景を灰色に設定 */
    padding: 25px;
    border-radius: 10px;
    position: relative;
    z-index: 1; /* デフォルトのスタック位置を設定 */
}

.left_content {
    width: 50%; /* 左側のテキストボックスの幅 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left_content h3 {
    font-size: 28px; /* フォントサイズを増やしました */
    margin-bottom: 25px;
}

.left_content .more1 {
    margin-top: 25px;
}

.right_content {
    width: 30%; /* 右側のスライド画像ボックスの幅 */
    max-width: 300px;
    padding: 0 25px;
    position: relative;
    z-index: 2; /* 右側のスライドを最前面に表示 */
}

/* 携帯画面での調整 */
@media (max-width: 768px) {
    .right_content {
        width: 45%; /* 幅を90%にして画面に対して大きく表示 */
        max-width: none; /* 最大幅の制限を解除 */
        padding: 0 15px; /* 余白を少し減らす */
        margin: 0 auto; /* 左右を中央揃え */
    }
}

/* スライドショーのコンテナ */
.swiper-container-member {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    z-index: 3; /* スライド画像をさらに最前面に表示 */
}

/* スライドの設定 */
.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; /* 画像がボックス内に収まるように */
    border-radius: 15px;
}

/* ページネーションとナビゲーションボタン */
.swiper-pagination-member {
    bottom: 10px;
    text-align: center;
}

.swiper-button-next-member,
.swiper-button-prev-member {
    color: #333; /* ナビゲーションボタンの色a */
}

#member .swiper-container-member {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#information #news {
    list-style: none; /* リストマーカーを非表示 */
}

#recruit {
    background-color: #e0e0e0; /* 背景色を少し濃い灰色に設定 */
    padding: 25px 25px; /* 上下に余白を追加 */
}

#recruit .inner {
    max-width: 800px; /* コンテンツの最大幅を設定 */
    margin: 0 auto; /* コンテンツを中央揃え */
    text-align: center; /* テキストを中央揃え */
    padding: 25px; /* 内側の余白 */
    border-radius: 8px;
}

#recruit h3 {
    font-size: 28px; /* フォントサイズを増やしました */
    margin-bottom: 25px;
    color: #333; /* タイトルの色 */
}

#recruit p.text {
    font-size: 20px; /* フォントサイズを増やしました */
    color: #666; /* テキストの色 */
}

#recruit .more1 a {
    color: #333; /* ボタン内のリンク色 */
    text-decoration: none;
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* 少し下からフェードイン */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 初期非表示設定 */
.fade-in {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(20px); /* 少し下に配置 */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
    animation: fadeIn 1s forwards;
}

/* セクションごとの背景色 */
#about-us {
    background-color: #ffffff; /* 白 */
}

#missions {
    background-color: #e8e8e8; /* 薄い灰色 */
}

#company-profile {
    background-color: #e0e0e0; /* 白 */
}

#access {
    background-color: #ffffff; /* 少し薄い灰色 */
}

/* テーブルのスタイル */
.company-info {
    width: 80%;
    margin: 25px auto;
    border-collapse: collapse;
}

.company-info td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    color: #333;
    font-size: 20px; /* フォントサイズを増やしました */
}

.company-info td:first-child {
    font-weight: bold;
    color: #555;
}
.brand-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.brand-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 250px;
  text-align: center;
  flex: 1 1 1 280px;
}

.brand-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.brand-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}

.brand-card p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
}

/* アクセスのマップのスタイル */
#access iframe {
    width: 100%;
    max-width: 800px;
    height: 500px; /* 高さを増やしました */
    margin-top: 25px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

/* コンテナ調整 */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* フッターのスタイル */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer a {
    color: #ddd;
    font-size: 16px; /* フォントサイズを増やしました */
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* モバイル用のメニュー表示切替 */
.menu-active {
    display: block;
}

/* 商品一覧コンテナ */
.product-list-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 25px;
}

.product-list-container h1 {
    font-size: 2.2em; /* フォントサイズを増やしました */
    margin-bottom: 25px;
    color: #333;
}

/* 商品グリッド */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

/* 商品カード */
.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    padding: 25px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h2 {
    font-size: 1.4em; /* フォントサイズを増やしました */
    margin: 12px 0;
    color: #333;
}

.product-card p {
    font-size: 1em; /* フォントサイズを増やしました */
    color: #666;
    margin: 12px 0;
}

/* 価格のスタイル */
.price {
    font-size: 1.3em; /* フォントサイズを増やしました */
    color: #b12704; /* Amazon風の濃いオレンジ色 */
    font-weight: bold;
    margin-top: 12px;
}

/* ボタンのスタイル */
.product-card a {
    display: inline-block;
    text-decoration: none;
    color: #007185;
    margin-top: 12px;
    font-size: 1em; /* フォントサイズを増やしました */
}

.product-card a:hover {
    color: #004c67;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding: 25px;
    text-align: center;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* メディアクエリ */
@media (max-width: 768px) {
    .product-card {
        padding: 20px;
    }

    .product-card img {
        max-height: 170px;
    }
}

/* 製品詳細ページのレイアウト */
.product-detail {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: 35px;
}

.product-gallery,
.product-info {
    width: 50%; /* 左右の領域をそれぞれ半分に設定 */
    box-sizing: border-box; /* paddingとborderを含めて幅を計算 */
}

.product-gallery .main-image {
    width: 100%;
    object-fit: contain; /* 画像のサイズを枠に合わせて調整 */
    border-radius: 4px;
    margin-bottom: 15px;
}

.main-image {
    max-width: 100%;
    object-fit: contain; /* 画像を枠内に収める */
    display: block;
    margin: 0 auto;
}

.thumbnail-images {
    display: flex;
    gap: 12px;
    justify-content: center; /* サムネイルを中央に配置 */
}

.thumbnail {
    width: 15%;
    height: auto; /* サムネイルの表示サイズを一定に */
    object-fit: cover; /* サムネイルも枠内に調整 */
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s ease;
    background-color: #f5f5f5;
}

.thumbnail:hover {
    border-color: #aaa;
}

/* 製品情報 */
.product-info {
    flex: 2;
}

.product-info h1 {
    font-size: 2em; /* フォントサイズを増やしました */
    color: #333;
    margin-bottom: 8px;
}

.product-brand {
    font-size: 1em; /* フォントサイズを増やしました */
    color: #666;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.5em; /* フォントサイズを増やしました */
    color: #b12704; /* Amazon風のオレンジ */
    margin-bottom: 12px;
}

.product-description {
    font-size: 1.1em; /* フォントサイズを増やしました */
    color: #333;
    margin-bottom: 12px;
}

.product-features {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 25px;
}

.product-features li {
    font-size: 1em; /* フォントサイズを増やしました */
    color: #555;
    margin-bottom: 7px;
}

/* アイコン付きリストを中央に配置するためのコンテナ */

.icon-list-container {
  width: 70%;                 /* コンテナの横幅 */
  max-width: 800px;           /* 最大幅を設定 */
  margin: 0 auto;             /* 中央揃えにする */
  background-color: #fff;     /* 背景色を設定（任意） */
  border-radius: 10px;        /* 角を丸くする（任意） */
  padding: 20px 25px;         /* 内側の余白を設定 */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* 影をつける（任意） */
}

/* アイコン付きリスト */
.icon-list {
  list-style: none;           /* 通常の「・」を非表示 */
  padding: 0;                 /* 内側余白を消去 */
  margin: 0;                  /* 外側余白を消去 */
  text-align: left;           /* リストの文字を左揃えに */
}

.icon-list li {
  position: relative;
  padding-left: 30px;         /* チェックマーク分の左側余白 */
  margin-bottom: 12px;        /* 項目間の余白 */
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
}

.icon-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007BFF;
  font-weight: bold;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.style-list-container {
  width: 85%;                 /* コンテナの横幅 */
  max-width: 800px;           /* 最大幅を設定 */
  margin: 0 auto;             /* 中央揃えにする */
  background-color: #fff;     /* 背景色を設定（任意） */
  border-radius: 10px;        /* 角を丸くする（任意） */
  padding: 20px 25px;         /* 内側の余白を設定 */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* 影をつける（任意） */
}

/* アイコン付きリスト */
.istyle-list {
  padding: 0;                 /* 内側余白を消去 */
  margin: 0;                  /* 外側余白を消去 */
  text-align: left;           /* リストの文字を左揃えに */
}

.style-list li {
  position: relative;
  padding-left: 30px;         /* チェックマーク分の左側余白 */
  margin-bottom: 12px;        /* 項目間の余白 */
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
}

.styled-list {
    width: 70%; /* 他の箇条書きリストと揃える */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px 25px;
    position: relative;
    margin: 20px auto; /* 中央揃え */
}

.styled-list summary {
    list-style: none; /* デフォルトの三角形非表示 */
    position: relative;
    padding-left: 20px;
    outline: none;
}

.styled-list summary::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.2s ease;
}

.styled-list[open] summary::before {
    transform: rotate(90deg);
}

/* アイコン付きリストのスタイル統一 */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.icon-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    text-align: left;
    line-height: 1.6;
}

.icon-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: #007BFF;
}


/* 購入ボタン */
.product-purchase {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

#quantity {
    padding: 7px;
    font-size: 1.1em; /* フォントサイズを増やしました */
    border: 1px solid #ddd;
    border-radius: 4px;
}

.add-to-cart {
    padding: 12px 25px;
    font-size: 1.1em; /* フォントサイズを増やしました */
    color: #fff;
    background-color: #ffa41c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #f08804;
}

/* 詳細情報セクション */
.product-details {
    max-width: 1200px;
    margin: 40px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-details h2 {
    font-size: 1.7em; /* フォントサイズを増やしました */
    color: #333;
    margin-bottom: 25px;
}

.product-details h3 {
    font-size: 1.4em; /* フォントサイズを増やしました */
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.product-details p,
.product-details ul {
    font-size: 1em; /* フォントサイズを増やしました */
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

.product-details ul {
    list-style-type: disc;
    padding-left: 25px;
}

.styled-list summary {
    list-style: none; /* デフォルトの三角形非表示 */
    position: relative;
    padding-left: 20px;
    outline: none;
}

.styled-list summary::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.2s ease;
}

/* ニトリルグローブサイズ選択ボタン */
.size-selector {
  display: flex;
  gap: .5rem;
  margin: .75rem 0 1.5rem;
}

.size-option input {
  display: none;                 /* ラジオ本体は隠す */
}

.size-option span {
  display: inline-block;
  padding: .45rem 1.1rem;
  border: 2px solid #007bff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.size-option input:checked + span {
  background: #007bff;
  color: #fff;
}

/* カスタマーレビュー */
.customer-reviews {
    max-width: 1200px;
    margin: 40px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.customer-reviews h2 {
    font-size: 1.7em; /* フォントサイズを増やしました */
    color: #333;
    margin-bottom: 25px;
}

.review {
    margin-bottom: 18px;
}

.review-text {
    font-size: 1.1em; /* フォントサイズを増やしました */
    color: #333;
    margin-bottom: 7px;
}

.review-rating {
    font-size: 1.4em; /* フォントサイズを増やしました */
    color: #ffa41c;
}

.see-more-reviews {
    display: inline-block;
    text-decoration: none;
    color: #007185;
    margin-top: 12px;
}

.see-more-reviews:hover {
    color: #004c67;
}

.recruit-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    position: relative; /* z-indexを有効にするために追加 */
    z-index: 1;
}

@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
        gap: 25px;
    }

    .product-gallery,
    .product-info {
        width: 100%;
    }

    .thumbnail {
        width: 20%;
    }

    .product-detail,
    .product-details,
    .customer-reviews {
        padding: 20px;
        margin: 25px auto;
    }

    .product-info h1 {
        font-size: 1.5em;
    }

    .product-price {
        font-size: 1.3em;
    }

    .product-description,
    .product-brand {
        font-size: 1em;
    }

    .product-purchase {
        flex-direction: column;
        align-items: flex-start;
    }

    #quantity {
        width: 100%;
    }

    .add-to-cart {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
        gap: 25px;
    }

    .product-gallery,
    .product-info {
        width: 100%;
    }

    .thumbnail {
        width: 15%;
    }

    .product-detail,
    .product-details,
    .customer-reviews {
        padding: 20px;
        margin: 25px auto;
    }

    .product-info h1 {
        font-size: 1.5em;
    }

    .product-price {
        font-size: 1.3em;
    }

    .product-description,
    .product-brand {
        font-size: 1em;
    }

    .product-purchase {
        flex-direction: column;
        align-items: flex-start;
    }

    #quantity {
        width: 100%;
    }

    .add-to-cart {
        width: 100%;
    }
    .styled-list {
        width: 90%;
    }
    .icon-list-container {
        width: 90%;
    }
}

/* メインセクション */
main {
    width: 100%; /* メイン要素を横幅いっぱいに */
    padding: 25px; /* 必要に応じてパディングを調整 */
    box-sizing: border-box; /* パディングを含めて幅を計算 */
}

.inner {
    max-width: 800px; /* コンテンツの最大幅を800pxに制限 */
    margin: 0 auto; /* 左右のマージンを自動にして中央揃え */
}


/* お問い合わせ情報 */
.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info h1 {
    font-size: 2.2em; /* フォントサイズを増やしました */
    color: #333;
    margin-bottom: 12px;
}

.contact-info p {
    font-size: 1.2em; /* フォントサイズを増やしました */
    color: #666;
}

/* お問い合わせフォームセクション */
.contact-form {
    background-color: #e8e8e8;
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.contact-form h2 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* フォーム要素のスタイル */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    font-size: 1.1em; /* フォントサイズを増やしました */
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1.1em; /* フォントサイズを増やしました */
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #999;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* 送信ボタン */
.contact-form button[type="submit"] {
    padding: 15px;
    font-size: 1.1em; /* フォントサイズを増やしました */
    font-weight: bold;
    color: #fff;
    background-color: #007185; /* 深い青色 */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: #004c67;
}

/* プライバシーポリシーセクション */
.privacy-policy {
    text-align: left;
    margin-bottom: 50px;
}

.privacy-policy h1 {
    font-size: 2em; /* フォントサイズを増やしました */
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #000;
    padding-bottom: 12px;
}

.privacy-policy p {
    font-size: 1.1em; /* フォントサイズを増やしました */
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* 個別項目のスタイル */
.policy-item {
    margin-bottom: 35px;
    padding: 18px 25px;
    border-left: 4px solid #333;
    background-color: #f7f7f7;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.policy-item h2 {
    font-size: 1.5em; /* フォントサイズを増やしました */
    margin-bottom: 10px;
    color: #222;
    font-weight: bold;
}

/* リンクのスタイル */
a {
    color: #0066cc;
    text-decoration: none;
}

/* レスポンシブ調整 */
@media (max-width: 600px) {
    main {
        padding: 20px;
    }

    .privacy-policy h1 {
        font-size: 1.7em; /* フォントサイズを増やしました */
    }

    .policy-item {
        padding: 18px;
    }

    footer {
        font-size: 0.9em; /* フォントサイズを増やしました */
    }
}