@charset "UTF-8";
/* 全体設定 */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f7c34d;
    background-image: linear-gradient(#e0a843 1px, transparent 1px), 
                      linear-gradient(90deg, #e0a843 1px, transparent 1px);
    background-size: 30px 30px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(50px); /* ぼかし効果 */
    z-index: -1;
    transition: background-image 0.3s ease, filter 0.3s ease;
    pointer-events: none; /* 背景への操作を無効化 */
}
/* 画像ローテーションバナー */
.banner {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.banner-images {
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease;
	cursor: pointer;
}

.banner-image.active {
    opacity: 1;
    position: relative;
}

/* ナビゲーションボタン */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.banner-nav.left {
    left: 10px;
}

.banner-nav.right {
    right: 10px;
}

/* バナーインジケータ */
.banner-indicators {
    text-align: center;
    margin-top: 10px;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.indicator.active {
    opacity: 1;
}

main {
    padding-top: 10px;
}

/* Section Title for "shop" */
.section-title h1 {
    text-align: center;
    font-size: 36px;
    color: white;
    margin: 20px 0 5px; /* 下の余白を減らす */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	visibility: hidden;
}

/* Shop Title */
.highlighted-title {
    font-size: 2rem; /* 大きめの文字サイズで目立たせる */
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    margin: 40px 0 20px; /* 上に40pxの余白を追加 */
	background: -webkit-linear-gradient(top left, #8fe7ce, #56cfe1);
	background: -o-linear-gradient(top left, #8fe7ce, #56cfe1);
	background: linear-gradient(to bottom right, #8fe7ce, #56cfe1); /* ティール～ライトアクア */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* シャドウで立体感を演出 */
    position: relative;
    overflow: hidden;
}

.highlighted-title::before, .highlighted-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

.highlighted-title::before {
    top: -30px;
    left: -30px;
}

.highlighted-title::after {
    bottom: -30px;
    right: -30px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Product List */
.product-list {
    display: flex;
    flex-wrap: wrap; /* アイテムを複数行に配置 */
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.yonemitsu_game_h3 {
    margin-top: -10px; /* 空白を埋めるために負のマージンを設定 */
    text-align: center; /* 必要に応じて中央揃え */
	border-top: 1px solid #666;
    border-bottom: 1px solid #666;
	margin: 10px 0;
    padding: 10px 0;
}

/* Product Item */
.product-item {
    position: relative; /* img-wrapperの位置調整の基点 */
	border: 2px solid transparent; /* 初期設定として透明に設定 */
    width: 270px;
    margin: 20px 10px;
    background-color: rgba(255, 255, 255, 0.8); /* 白の透明度65% */
    border-radius: 8px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 20px;
    text-align: center;
    overflow: visible; /* 要素外にはみ出す画像を表示させる */
}

.product-item:hover {
	border-image: linear-gradient(45deg, #ff0055, #ffcc00, #00ffcc, #0055ff) 1;
    background-color: rgba(255, 255, 255, 1); /* 白の透明度65% */
    transform: scale(1.05);
	cursor: pointer;
}

/* Image Wrapper */
.img-wrapper {
    width: 150px;
    height: 200px;
    overflow: visible;
    margin: 0 auto;
    position: relative;
    transform: translateY(-50px) rotate(5deg);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-info p {
    font-size: 100%;
    color: #666;
    text-align: left;
}

.category-list {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.category-list button {
    background: none;
    border: 1px solid #666;
    border-radius: 20px;
    padding: 2px 5px;
    font-size: 50%;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .global-nav {
        display: none;
    }
}

@media (max-width: 400px) {
    .instagram-logo,
	.x-logo {
        display: none;
    }
}