@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:400,500");
@import url('https://fonts.googleapis.com/css2?family=Potta+One&display=swap');

html{
	margin: auto;
	padding: 0;
	max-width: 1200px;
	scroll-behavior: smooth;
}
@media screen and (max-width: 600px) {
    html {
	width: 100%;
	min-width: 375px;
    }
}
body{
	/*width: 1300px;*/
	margin: auto;
/*	overflow-y: scroll;*/
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
a{
	text-decoration: none;
}
p,ul,td{ 
	margin: 0; padding: 0;
}
li{
	list-style: none;
}
header,section{

}
@media screen and (min-width: 769px) {
	.layout-pc{
	}
	.imgs{
		width: 980px;
	}
	.layout-sp{
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.layout-pc{
		display: none;
	}
	.layout-sp{
		display: block;
	}
	.imgs{
		width: 100%;
	}
}
.layout-pc img{
	filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.15));
}
  /* ハンバーガーボタン */
.hamburger {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
}

  /* PC向けベーススタイル */
.fixed-right-list {
    position: fixed;
    top: 20px;
    right: 0;
    height: 100vh;
    width: 200px;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #1a2b4c;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: transform 0.3s ease;
	border-radius: 8px 0 0 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999; /* オーバーレイ（998）の上に配置 */
}

.fixed-right-list li {
    text-align: center;
    padding: 20px;
    cursor: pointer;
}

.fixed-right-list li:hover {
    background-color: #555;
}
.fixed-right-list a{
  color: #FFFFFF;
}
.main-content {
    width: calc(100% - 200px);
/*    padding: 20px;*/
    box-sizing: border-box;
}

/* 背景オーバーレイ（黒の半透明） */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* 黒色で透過率50% */
    z-index: 998; /* メニューのすぐ下に配置 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

  /* オーバーレイ表示時 */
.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* スマホ・タブレット向け（画面幅768px以下） */
@media (max-width: 768px) {
    .hamburger {
      display: block;
    }

    .fixed-right-list {
      transform: translateX(100%);
    }

    .fixed-right-list.open {
      transform: translateX(0);
    }

    .main-content {
      width: 100%;
    }
}
.midasi1{
/*	text-decoration: underline #0056b3;  濃いブルー ;*/
	font-size: 30px;
    font-weight: bold;
	text-indent: 10px;
    color: #1a2b4c; /* サイドバーと合わせたネイビー */
    padding-bottom: 10px;
    margin-bottom: 25px; /* 下の商品ブロックとの余白 */
    border-bottom: 2px solid #e0e0e0; /* 薄いグレーのラインを画面幅（または枠幅）いっぱいに引く */
}

.bt300, .bt30, .snzl, .nzlc, .pauc{
	width: 980;
	margin-bottom: 40px;
	background-color: #CADCF4;
}
.bt300 img, .bt30 img, .snzl img, .nzlc img, .pauc img{
	width: 100%;
	padding: 10px;
}
.bt300 p, .bt30 p, .snzl p, .nzlc p, .pauc p{
	padding: 10px;
}
.point{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background-color: #ff6b00; /* 目立つアクセントオレンジ */
	color: #ffffff;
	font-weight: bold;
	font-size: 13px;
	padding: 3px 12px;
	border-radius: 20px; /* 角丸でカプセル型に */
	margin-left: 10px;
	margin-bottom: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* リスト全体の装飾 */
.point-list {
	list-style: none;
	padding-left: 10px;
	margin: 0;
}

/* リスト項目とチェックマーク（◆の代わり） */
.point-list li {
	position: relative;
	padding-left: 1.4em;
	margin-bottom: 8px;
	line-height: 1.5;
	font-size: 15px;
	color: #333333;
}
@media (max-width: 768px) {
	.point-list li{
		padding-right: calc(10vw + 15px); /* ハンバーガーメニューの幅に合わせて調整してください */
	}
}
.point-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: #0056b3; /* サイトのメインブルー */
	font-weight: bold;
}
.cartbox{
	padding: 10px;
	display: flex; /* 子要素を横並びにする */
	gap: 10px;    /* 要素間の余白を指定（お好みで） */
}
.cart{
	display: flex;
	align-items: center; /* 縦方向の中央揃え */
	justify-content: center; /* 横方向の中央揃え（不要なら削除） */
	width: 130px;
	height: 90px;
	border: 1px solid #0A00FF;
	background-color: #FFFFFF;
	color: #0A00FF;
	text-align: center;
	border-radius: 5px;
	box-shadow: 2px 2px 4px #4B4B4B;
}
@media (max-width: 768px) {
	.cartbox {
		flex-direction: column; /* 複数のボタンがある場合、横並びから縦積みに変更 */
		gap: 15px; /* スマホだと指でタップしやすくするため、少し余白を広げるのもおすすめ */
  }
	.cart {
		width: 100%; /* 横幅を親要素（画面幅）いっぱいに広げる */
		height: 70px; /* 【任意】スマホで90pxは少し高すぎて画面を占領しすぎる場合があるため、少し高さを抑えると綺麗です */
  }
}

.cart:hover{
	border-radius: 5px;
	background-color: #0A00FF;
	color: #FFFFFF;
}
.wordh{
	line-height: 16px;
}
/*商品名*/
h3{
	border-left: 5px solid #0056b3; /* 濃いブルー */
	padding-left: 10px;
	margin-left: 15px;
	color: #1a2b4c; /* 黒に近い濃いネイビー */
	letter-spacing: 0.05em; /* 字間を少し広げて読みやすく */
	font-weight: bold;
}
/*キャッチ*/
.product-catch {
	margin: -15px 15px -10px 15px;
	border-bottom: 1px dashed #aaa; /* グレーの破線で区切る */
}
.product-catch ul {
	list-style: none; /* デフォルトの点を消す */
	padding-left: 0;
	margin: 0 0 8px 0;
}
.product-catch li {
	position: relative;
	padding-left: 1.2em;
	line-height: 1.6;
}
.product-catch li::before {
	content: "・"; /* 見出しに合わせた青いアクセント */
	color: #0056b3; 
	position: absolute;
	left: 0;
	font-size: 0.9em;
}
.note {
	font-size: 12px; /* 注意書きは小さく */
	color: #666; /* グレーで控えめに */
	margin: 0;
	margin-top: -5px;
}
/* 【商品仕様】の見出しラベル */
.spec-box{
	margin: -15px 0 -25px 15px;
}
.spec-title {
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	color: #0056b3; /* テーマカラーの青 */
	background-color: #eaf2fb; /* ごく薄い青背景 */
	padding: 2px 10px;
	border-radius: 4px;
	margin-bottom: 8px;
}

/* グリッドレイアウトで左列（項目名）と右列（値）の縦ラインをビシッと揃える */
.spec-list {
	display: grid;
	grid-template-columns: 110px 1fr; /* 左列の幅を80pxに固定 */
	row-gap: 4px;		               /* 行同士のすき間 */
	column-gap: 12px;                /* 項目名とデータ間のすき間 */
	margin: 0 0 15px 0;
	font-size: 15px;
	color: #333333;
}

.spec-list dt {
	font-weight: bold;
	color: #555555;
	position: relative;
}

/* 項目名のあとに自動でコロン（:）を付与（HTML側に書き込まなくてOK） */
.spec-list dt::after {
	content: "：";
	position: absolute;
	right: 0;
}
.kesu {
	content: "";
	position: absolute;
	right: 0;
}

.spec-list dd {
	margin: 0; /* デフォルトのインデントをリセット */
}
.ind{
	margin-left: 9px;
}

/*TOPに戻る*/
#back {
 position: fixed;
 bottom: 10px;
 right: 210px;
 filter:alpha(opacity=85);
 -moz-opacity:0.85;
 -khtml-opacity: 0.85;
 opacity:0.85;
 z-index: 99;
}
@media screen and (max-width: 769px) {
	#back{
	right: 10px;
	}
}