@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}


a:hover img {
	transition: all 0.2s ease;
	opacity: 0.6;
	filter: alpha(opacity=60);
}



/* ヘッダー固定・ガラス透過 (Glassmorphism) */
#fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* 透過色: 濃いグレー(333)を70%の不透明度(0.7)に */
    background-color: rgba(255,255, 255, 0.1); 
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
    /* ガラス効果 */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    
    transition: background-color 0.3s;
}

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

.logo {
    margin: 0;
    font-size: 1.5em;
}

/* PCナビゲーションは全サイズで非表示 */
#nav-pc {
    display: none;
}

/* ハンバーガーメニューアイコン (右寄せ) */
.burger-menu {
    display: flex; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.burger-menu .bar {
    width: 90%;
    height: 3px;
    background-color:  rgba(90,90, 90, 1);
    transition: all 0.3s ease;
}

/* バーガーアイコンのアニメーション (X字) */
.burger-menu.active .bar:nth-child(2) {
    transform: translateY(5px) ; 
    opacity: 0;
}

.burger-menu.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg); 
}

.burger-menu.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg); 
}

/* モバイル用ナビゲーション (内容の高さに合わせて上部から開閉) */
#nav-sp {
    position: fixed;
    top: 60px; /* ヘッダーの真下に配置 */
    left: 0;
    width: 100%; 
    
    /* 高さを内容に合わせ、max-heightで開閉を制御 */
    height: auto; 
    max-height: 0; 
    overflow: hidden; 
    
    background-color: rgba(255,255,255, 0.1); /* メニューの背景は濃色 */
    color: white;
    transition: max-height 0.3s ease-in-out; 
    z-index: 999;
/* ガラス効果 */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
}

/* JavaScriptで .open クラスが追加されたらメニューを表示 */
#nav-sp.open {
    /* メニュー内容の高さより十分大きい値を設定 */
    max-height: 500px; 
}

#nav-sp ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

#nav-sp a {
    color: #606060;
    text-decoration: none;
    display: block;
    padding: 15px 20px; /* PCサイズでも左に余白を持たせる */

}

/* メインタイトルエリア */
#title  {
    margin-right: auto;
    text-align: center;
    margin-top: 120px;
    padding-bottom: 50px;
    padding-left: 2%;
    padding-right: 2%;
}

/* メインエリア */
#main-area {
    margin-left: 10px;
    margin-right: 10px;
}


/* 画像スライダーエリア */
#slider-area {
    overflow: hidden; 
    width: 100%;
    height: 300px; 
    /* ヘッダーに隠れるのを防ぐための補正 */
    padding-top: 60px; 
    margin-top: -60px; 
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.slide-track {
    display: flex;
    width: calc(10 * 20%);
    height: 90%;
    animation: slide-left 30s linear infinite; 
}

.slide-track img {
    width: 10%; 
    height: 80%;
    object-fit: cover;
}

/* 自動で左に移動するアニメーション */
@keyframes slide-left {
    0% { transform: translateX(0); }
    50% { transform: translateX(-50%); } 
}

/* 製品情報エリア (3カラム) */
#product-info {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

#product-info h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

#product-info .copy {
    margin-top: -25px;
}

#product-info .three-column-layout {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center;
}

#product-info .product-item {
    flex: 1 1 300px;
    padding: 20px;
}

#product-info .product-item p {
    margin-top: -9px;
    text-align: left;
}

#product-info .product-item img {
    margin-bottom: 15px;
}
#product-info .product-item h3 {
    margin-top: -6px;
    margin-bottom: 15px;
}

/* 製品特徴エリア (3カラム) */
#product-features {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

#product-features h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

#product-features .three-column-layout {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center;
}

#product-features .product-item {
    flex: 1 1 300px;
    padding: 20px;
    border-radius: 8px;
}

#product-features .product-item p {
    margin-top: -9px;
    text-align: center;
}

#product-features .product-item img {
    margin-bottom: 15px;
}
#product-features .product-item h3 {

}
#product-features .product-item h4 {
    margin-top: -12px;

}
#product-features .copy {
    margin-bottom: 30px;
    margin-top: -25px;
}

/* 製品特徴エリア2 (3カラム) */
#product-features2 {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

#product-features2 h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

#product-features2 .three-column-layout {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center;
}

#product-features2 .product-item {
    flex: 1 1 300px;
    padding: 20px;
    border-radius: 8px;
}

#product-features2 .product-item p {
    margin-top: -9px;
    text-align: left;
}

#product-features2 .product-item img {
    margin-bottom: 15px;
}
#product-features2 .product-item h3 {

}
#product-features2 .product-item h4 {
    margin-top: -12px;

}
#product-features2 .copy {
    margin-bottom: 30px;
    margin-top: -25px;
}

/* 使い方エリア (3カラム) */
#product-how-to {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
}

#product-how-to h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

#product-how-to .three-column-layout {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center;
}

#product-how-to .product-item {
    flex: 1 1 300px; 
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#product-how-to .product-item p {
    margin-top: -9px;
    text-align: left;
}

#product-how-to .product-item img {
    margin-bottom: 15px;
}
#product-how-to .product-item h3 {

}
#product-how-to .product-item h4 {
    margin-top: -12px;

}
#product-how-to .copy {
    margin-bottom: 30px;
    margin-top: -25px;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 30px;
    font-size: 80%;
}
/* スペックエリア (3カラム) */
.spec {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.notes {
    width: 95%;
    margin-right: auto;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-left: auto;
    border: 1px solid #989898;
    font-size: 80%;
}
.go-series {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}
.new-label {
    /* 中央の帯のスタイル */
    position: relative;
    width: 300px; /* お好みで調整 */
    height: 40px; /* お好みで調整 */
    background-color: #FF0000; /* 画像と同じようなマゼンタ色 */
    color: white; /* テキストの色 */
    text-align: center;
    line-height: 40px; /* 垂直方向の中央揃え */
    margin: 20px auto; /* 中央に配置 */
    font-weight: bold;
}

/* 左端のV字カットアウト */
.new-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px; /* カットアウトの深さの調整 */
  width: 0;
  height: 0;
  /* borderで三角を作成 */
  border-style: solid;
  border-width: 20px 20px 20px 0; /* (高さの半分) (深さ) (高さの半分) (0) */
  border-color: transparent #FF0000 transparent transparent;
}

/* 右端のV字カットアウト */
.new-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px; /* カットアウトの深さの調整 */
  width: 0;
  height: 0;
  /* borderで三角を作成 */
  border-style: solid;
  border-width: 20px 0 20px 20px; /* (高さの半分) (0) (高さの半分) (深さ) */
  border-color: transparent transparent transparent #FF0000;
}

/* --- デフォルト（スマホ）のスタイル --- */
.photo-grid {
    display: grid;
    /* スマホでは1列 */
    grid-template-columns: 1fr;
    gap: 10px; /* 写真間の隙間 */
    padding: 10px;
    margin: 0 auto;
}

/* グリッド内の画像設定 */
.photo-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2; /* アスペクト比を固定（不要なら削除可） */
}

.show-pc {
    display: none; /* 非表示にする */
  }
.show-mobile {
  display: block; /* 表示する */
}

/* ショップリンク */
.go-shop a {
    background-color: #FFA000;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3px;
    padding-bottom: 3px;
    color: #FFFFFF;
    display: block;
    max-width: 164px;
    margin-bottom: 20px;
    text-decoration: none;
    font-size: 85%;
    border-radius: 5px;
}

.go-shop a:hover {
    background-color: #FFB43C;
    display: block;
    text-decoration: none;
}





/* PCサイズでの3カラム調整 */
@media (min-width: 768px) {
	
/* メインエリア */
#main-area {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
	
.photo-grid {
        /* 横2列にする */
        grid-template-columns: repeat(2, 1fr);
        
        /* 2列表示に適した最大幅に調整（任意） */
        max-width: 800px; 
    }
/* デフォルト（PC）では表示 */
.show-pc {
  display: block; /* または inline, flex など要素に合わせてください */
}
.show-mobile {
  display: none; /* 非表示にする */
    /* もしインライン要素なら display: inline; など */
  }
}
