/* 基本リセット */
body{
 
	background-color:#fffff;		/*ﾍﾟｰｼﾞ全体の背景色*/
	
	font-family: "'ﾋﾗｷﾞﾉ角ｺﾞ ProN W3', Hiragino Sans, 'ﾋﾗｷﾞﾉ角ｺﾞ ProN W3', Hiragino Kaku Gothic ProN, "ﾒｲﾘｵ", Meiryo, sans-serif;	/* ﾌｫﾝﾄの種類をｺﾞｼｯｸ系にする */
	line-height:1.5;		/* 行の高さを1.5倍にする */
	color:#333333;			/* 文字色を濃い目のｸﾞﾚｰにする */

  margin: 0;
    padding: 0;
    
   

}



.wrapper {
    max-width:2560px;
   

 height: auto;
 margin: 0px;
    padding: 0px;
}

@media only screen and (max-width: 767px) {


.wrapper {
    max-width: 100%;
    margin: 0 auto;
}
}


#checkbox {
  opacity: 0;
  width: 0;
  height: 0;
 z-index: 1000; /* 他の要素より前面に */
}

/*///// lineMenu /////*/
#lineMenu {
  position: fixed;
  top: 1.5rem;
  right: 5rem;
  width: 36px;
  height: 16px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  
}

#lineMenu,
#lineMenu span {
  z-index: 10;
  z-index: 1200; /* メニューより前面に */
}

#lineMenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 6px;
  transition: all 0.5s;
}

#lineMenu span:nth-of-type(1) {
  top: 0;
}

#lineMenu span:nth-of-type(2) {
  bottom: 0;
}

#lineMenu p {
  position: absolute;
  top: 0.6rem;
  left: 2.6rem;
  transform: translateY(-50%);
  font-size: 16px;
}

#checkbox:checked ~ label span:nth-of-type(1) {
  transform: translateY(6px) rotate(-20deg);
}

#checkbox:checked ~ label span:nth-of-type(2) {
  transform: translateY(-6px) rotate(20deg);
}

/*///// Global Nav /////*/
#globalNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background-color: rgb(253, 245, 230, .9);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
z-index: 1100; /* 他の要素より前面に */
 
}

#checkbox:checked ~ #globalNav {
  visibility: visible;
  opacity: 1;
}

#globalNav ul {
  list-style: none;
  padding: 80px 4%;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
}

/*///// Global Nav and Webpage style /////*/
#globalNav li {
  margin: 0 auto 0.3rem;
  max-width: 800px;
  border-left: 6px solid #333;
}

#globalNav li a {
  font-size: 18px;
  display: block;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, .5);
  color: #333;
  text-decoration: none;
  transition: all 0.5s;
}

#globalNav li a:hover {
  background-color: rgba(255, 255, 255, .8);
  padding-left: 2.5rem;
}


#pattern1 { margin: 0 auto 0.3rem;
  max-width: 800px;
  border-left: 1px solid #333;


}


summary {  background-color: rgba(255, 255, 255, .5);
  color: #333;
  text-decoration: none;
  transition: all 0.5s;
height: 2vh;
 padding:  4%;
font-size: 18px;

}


#pattern1 li {
  margin: 0 auto 0.3rem;
  max-width: 800px;
  border-left: 6px;
}







.section-text {
  font-size: 1em;
  color: #555;
  line-height: 1.8;
  text-align: center;
}





.category-overview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.category-box {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.category-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* 縦横比を維持してトリミングする場合 */
}

.category-text {
  padding: 20px;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.category-text h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #333;
}

.category-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.category-button {
  display: inline-block;
  padding: 10px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.category-button:hover {
  background-color: #555;
}
































































/* ヘッダー */
header {
    text-align: center;
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
   
}


h1 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.8rem;
  color: #333;
 
}






/* 商品グリッド */
.product-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PCは3列 */
    gap: 20px;
    max-width: 1560px;
    margin: 20px auto;
}

/* 商品カード */
.product2 {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.product img2 {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-details2 {
    margin-top: 10px;
 text-align: center; /* テキストを中央揃え */
}







/* レスポンシブ対応 */
@media (max-width: 900px) {
    .product-grid2 {
        grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
    }

}

@media (max-width: 600px) {
    .product-grid2 {
        grid-template-columns: 1fr; /* スマホは1列 */
    }

  
}











/* 商品説明のスタイル */


.product-description1 {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: left; /* 左揃え */
}

/* Item Spec のタイトル */
.spec-title1 {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #444;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

/* Item Spec のリスト */
.product-spec1 {
    list-style: none;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left; /* 左揃え */
}

.product-spec li1 {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}

.product-spec li strong1 {
    color: #000;
}

/* 注意書きのスタイル */
.product-note1 {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
    text-align: left; /* 左揃え */
}
















/* オーバーレイ（画像の上にテキストを表示） */
.product-overlay {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-family: "Arial", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* 見出し */
.product-title {
     margin-top: 20%;
    font-size: 5rem;               /* 大きめのサイズ */
    font-weight: bold;            /* 太字 */
    letter-spacing: 2px;          /* 文字間隔 */
    text-transform: uppercase;    /* 大文字に変換 */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* 文字に影をつける */
    margin-bottom: 20px;          /* 下の余白 */
    line-height: 1.2;             /* 行間調整 */
}

/* 説明文 */
.product-description {
    font-size: 16px;
    opacity: 0.9;
     font-weight: bold;            /* 太字 */
}

/* ホバー時のエフェクト */
.product3:hover .product-overlay {
    transform: translate(-50%, -55%);
    opacity: 1;
}

















/* ヘッダー */
header {
    text-align: center;
    background: #fff;
    padding: 20px 0;
    font-size: 1.5em;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}








.section-title {
    text-align: center;
    margin: 60px 0 40px; /* 商品との間隔を広げる */
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    display: block;
    position: relative;
    padding: 10px 0;
}

.section-title::before, 
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #333; /* 線の色 */
    margin: 10px auto;
}





.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 中央寄せ */
    gap: 20px; /* アイテム間の余白 */+
    
}

.product1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC時は3列 */
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}


.product1 {
    text-align: center;
    margin: 0;
    padding: 0;
}

.product1 img {
    width: 100%;
    max-width: 300px;
    height: auto;
}
.product-details h2 {
   font-size: 1.1em;
    font-weight: bold;
    color: #333;
}




.product-details {
    text-align: center; /* 商品詳細のテキストを中央揃え */
}



.product-desc {
    font-size: 1.0em; /* 文字を小さくする */
    color: #333; /* 少し薄い色にする（任意） */
    margin-top: -24px; /* h2との間隔を少し詰める */
   font-weight: bold;
}

.price {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.option {
  font-size: 1rem;
 
  margin-top: 0;
  margin-bottom: 0;
   
    color: #333;
}
.product-details h2 {
    margin-bottom: 0; /* h2の下の余白を減らす */
}

.product1:hover img {
    opacity: 0.7; /* 画像を少し暗くする */
}
.product-details {
    text-align: center; /* 商品詳細のテキストを中央揃え */
}
/* ホバー時に表示するテキスト */
.product1 .hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.product1:hover .hover-text {
    opacity: 1; /* ホバー時に表示 */
}


/* タブレット・スマホ時は2列 */
@media (max-width: 768px) {
    .product1-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列 */
    }
.product1 h2 {
    text-align: center;
    font-size: 1.0em;
}
}

/* スマホ（狭い画面）の場合は1列 */
@media (max-width: 480px) {
    .product1-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列 */
    }
}






















/* フッター全体 */
footer {
    background-color: #fff;
    color: #696969;
    padding: 40px 20px;
    font-size: 14px;
}

/* フッターのコンテナ */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* フッター各セクション */
.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

/* セクションタイトル */
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #696969;
    padding-bottom: 5px;
}

/* ナビメニューのリスト */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

/* SNSリンク */
.social-links a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s;
}

.social-links a img {
    width: 30px;
    height: 30px;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* フッター下部のコピーライト */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid#696969;
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }
}
