@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
　padding: 0;
  background:#222222;
	
  }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background:#000000;
  display: flex;
  justify-content: center; /* ロゴを中央基準に配置 */
  align-items: center;     /* 縦中央揃え */
  z-index: 1000;
}

/* ロゴ中央 */
.head-logo {
  margin: 0;
}

.head-logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* ハンバーガーメニュー右上 */
.menu-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

/* メニュー開閉アニメーション */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}

.nav {
  position: absolute;
  top: 70px;           /* ヘッダーの下に表示 */
  right: 0;            /* 右端から出す */
  background: #000000;
  width: 200px;
  display: none;       /* 初期は非表示 */
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

/* ハンバーガーをクリックしたときに表示される */
.nav.active {
  display: flex;
}

/* リスト基本設定 */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各リンクの見た目 */
.nav li a {
  display: block;
  padding: 14px 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.nav li a:hover {
  background: #aaaaaa;
}

.video-pc {
  display: block;
}

.video-sp {
  display: none;
}

/* SPサイズになったらPC動画を消してSP動画を表示 */
@media screen and (max-width: 767px) {
  .video-pc {
    display: none;
  }
  .video-sp {
    display: block;
  }
}

/* お好みで共通スタイル（全幅にしたい場合） */
.video-pc,
.video-sp {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* --- タブ全体 --- */
.product-tabs {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top:30px;
}

/* --- 各タブボタン --- */
.product-tab {
  flex: 1;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  background: #555; /* ←初期は適当。あとで個別色で上書き */
}

/* --- タブの文字デザイン --- */
.tab_title {
  margin: 0;
  color: #fff; /* 白文字 */
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif; /* 明朝体 */
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* --- アクティブ状態の見え方 --- */


/* --- 各色のタブ個別カラー --- */
.product-tab[data-target="item-red"] {
  background-color: #8b0000; /* 深赤 */
}

.product-tab[data-target="item-green"] {
  background-color: #0a6b39; /* 深緑 */
}

.product-tab[data-target="item-blue"] {
  background-color: #003c88; /* 濃い青 */
}

.product-tab[data-target="item-yellow"] {
  background-color: #c59a00; /* ゴールド系黄 */
}

.product-tab[data-target="item-white"] {
  background-color: #aaaaaa; /* グレー（白タブ用） */
}

/* --- スマホ対応 --- */

  .tab_title {
    font-size: 13px;
  }
	
/* ---red--- */
	/* パネル全体（赤背景のブロック） */
.product-panel {
  color: #fff;
  padding: 40px 0;
}

/* ---- RED ---- */
.panel-red {
  background-color: #8b0000;
}

/* ---- GREEN ---- */
.panel-green {
  background-color: #0a6b39;
}

/* ---- BLUE ---- */
.panel-blue {
  background-color: #003c88;
}

/* ---- YELLOW ---- */
.panel-yellow {
  background-color: #c59a00;
}

/* ---- WHITE ---- */
.panel-white {
  background-color: #aaaaaa;
}


/* 中身の横並びレイアウト */
.product-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* 左カラム */
.product-visual {
  flex: 1;
  text-align: center;
}

/* 背景写真 */
.product-back {
  display: block;
  width: 80%;
  height: auto;
   margin: 0 auto 20px;
}

/* 右カラム */
.product-info {
  flex: 1;
  text-align: center;
  padding: 0;
}

.product-phrase {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
}

.product-triangle {
  display: block;
  max-width: 260px;
  height: auto;
  margin: 0 auto 20px;
  margin-bottom: 0px
}

.product-text {
  font-size: 16px;
  margin-bottom: 16px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  margin-top: 5px;
}

.product-describe {
  font-size: 14px;
  line-height: 2;
  width: auto;
  display: inline-block;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	
}

/* ▼ SP（縦並びにする） */
@media screen and (max-width: 767px) {
  .product-inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .product-code {
    font-size: 24px;
  }

  .product-phrase {
    font-size: 16px;
	text-align: center;
  }

  .product-describe {
    font-size: 13px;
  }
}

.product-panel {
  display: none;
}

.product-panel.is-active {
  display: block;
}

.particular-back{
  display: block;
  width: 80%;
  height: auto;
  margin:20px;
  flex: 1;
  text-align: center;
}
		

.particular{
	color: #fff;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	flex-direction: column;
	margin: 0 auto;
    display: flex;
	align-items: center;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.particular img{
	width: 60%;
	display: block;
	max-width: 350px;
	margin: 0 auto 20px;
	
}


.sab_title {
	font-size: 25px;
	text-align: center;
	margin-bottom: 30px;
	color: #fff;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	font-weight: 500;
}
.information{
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	text-align: center;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #ccc;  /* 上の線 */
    border-bottom: 1px solid #ccc; 
	padding: 20px 30px; 
	margin:50px 30px
	
}


.copyright{
	color: #fff;
	margin-top: 60px;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	font-size: 10px;
	background-color: #000000;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.product-graph {
	width: 250px;
	padding-top: 20px;
}

.attention-group {
	color: #fff;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	border: 1px solid #fff;
	text-align: center;
	margin: 80px 30px;
	padding-left: 20px;
	padding-right: 20px;
	
}

.attention-inner {
  display: inline-block; /* これで“塊”として中央に来る */
  text-align: left;      /* 中の文字は左揃え */
  max-width: 600px;      /* お好みで */
  margin-top: auto;
  margin-bottom: 10px;
}

.attention {
	font-size: 12px;
	text-align: left;
    display: inline-block;
	margin-top: 3px;
	margin-bottom: 3px;
}

.attention-title {
	font-weight: 800;
	text-align: center;
	border-bottom: 1px solid #fff;
	margin: 10px 80px;
}

.shop-info {
	text-align: center;
	color: #fff;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	font-size: 13px;
	border: 1px solid #fff;
	margin-left: 80px;
	margin-right: 80px;
	margin-top: 50px;
	padding-left: 10px;
	padding-right: 10px;
	
}

.shop-info:hover {
  background-color: #606060; /* ← ホバーしたら中の背景色が変わる */
}

a{
	text-decoration: none;
	color: #fff;
}

.shop-info-mini {
	font-size: 8px;
	margin-top: 2px;
	margin-bottom: 5px;
}

.shop-info-big {
	margin-top: 5px;
	margin-bottom: 0px;
}

.to-top-btn {
  position: fixed;
  right: 20px;      /* 画面右からの距離 */
  bottom: 20px;     /* 画面下からの距離 */
  width: 60px;
  height: 60px;
  background: #000; /* 黒丸 */
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;       /* 三角の下に文字 */
  align-items: center;
  justify-content: center;
  gap: 4px;                     /* 三角と文字のスキマ */
  font-size: 11px;
  cursor: pointer;
  z-index: 999;
}

/* ホバーしたときちょっとだけ変化 */
.to-top-btn:hover {
  opacity: 0.8;
}

/* 三角＋文字のアイコン部分 */
.to-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 白い三角形（上向き） */
.to-top-triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #fff; /* 白い三角 */
}

/* 「TOPへ」の文字 */
.to-top-text {
  line-height: 1;
}

@media screen and (min-width: 767px) {
  .tab_title {
    font-size: 13px;
  }
	
.product-panel {
  color: #fff;
  padding: 40px 0;
}

/* ---- RED ---- */
.panel-red {
  background-color: #8b0000;
}

/* ---- GREEN ---- */
.panel-green {
  background-color: #0a6b39;
}

/* ---- BLUE ---- */
.panel-blue {
  background-color: #003c88;
}

/* ---- YELLOW ---- */
.panel-yellow {
  background-color: #c59a00;
}

/* ---- WHITE ---- */
.panel-white {
  background-color: #aaaaaa;
}
	
.product-visual img {
	width: 500px;
	}
	
.product-tabs {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top:30px;
}

/* --- 各タブボタン --- */
.product-tab {
  flex: 1;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  background: #555; /* ←初期は適当。あとで個別色で上書き */
}
	
.product-inner {
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.particular {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  .particular-back {
    width: 45%;
    margin: 0;
  }

  .particular-point {
    width: 40%;
  }
	
.shop-info {
	text-align: center;
	color: #fff;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	border: 1px solid #fff;
	margin-left: 350px;
	margin-right: 350px;
	margin-top: 50px;
	padding-left: 10px;
	padding-right: 10px;
	
}

.shop-info-big {
	font-size: 13px;
	}

}

@media screen and (max-width:767px){
	.information{
		font-size: 13px;
	}
	
	.particular-point{
		font-size: 12px;
	}
}
