@charset "utf-8";
/* CSS Document */

a.btn_13 {
	display: flex;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 420px;
	margin: auto;
	padding: 1rem 0.1rem 1rem 2rem;
	font-weight: bold;
    font-size: 18px;
	background: #d60733;
	color:  #fff ;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
a.btn_13::before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	right: 1em;
	transform: translateY(calc(-50% - 2px)) rotate(45deg);
	width: 10px;
	height: 1px;
	background:  #fff  ;
}
a.btn_13::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	width: 50px;
	height: 1px;
	background-color:  #fff ;
}
a.btn_13:hover {
	background: #ef9cad;
	color:  #fff ;
}

/* オレンジボタン */
a.btn_hs001 {
  display: block;
  width: 92%;
  max-width: 520px;
  margin: 0 auto 28px;
  padding: 18px;

  /* グラデなし・濃いめオレンジ */
  background: #f26a00;

  color: #ffffff !important;
  /*border: 1px solid #c45500;*/
  border-radius: 5px;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none !important;

  /* 立体感のある影 */
  box-shadow:
    0 4px 8px rgba(0,0,0,0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* 矢印 
a.btn_hs001::after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  font-weight: bold;
}*/

/* hoverで少し沈む動き（不要ならこのブロックは削除OK） */
a.btn_hs001:hover {
  transform: translateY(1px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.25);
    opacity: initial;
}

/* 上部ギャラリーのcss */
.img_gallery {
  display: flex;
  flex-direction: column; /* ←追加 */
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 20px auto;
}

/* 上側: 大きい画像 */
.main-container {
  width: 700px;
  height: 740px;
}
.main-image {
  position: relative;
  width: 100%;
  /*! height: 750px; */
  border: 1px solid #ccc;
  padding-top: 100%;
}
.main-image img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 矢印 */
.arrow_prev{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  background: rgba(0,0,0,0.2);
  border-radius: 0% 10% 10% 0%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.arrow_next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  background: rgba(0,0,0,0.2);
  border-radius: 10% 0% 0% 10%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.arrow_prev:hover,.arrow_next:hover { background: rgba(0,0,0,0.3); }
.arrow_prev::before,.arrow_next::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
#prev::before { transform: rotate(-135deg); }
#next::before { transform: rotate(45deg); }
#prev { left: 0px; }
#next { right: 0px; }

/* キャプション */
#mainCaption {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  color: #555;
  text-align: left;
}

/* 下側: サムネイル */
.thumbs {
  display: flex;
  flex-direction: row; /* ←縦→横に変更 */
  gap: 10px;
  width: 100%;
  max-width: 700px;
  overflow-x: auto; /* ←横スクロール可 */
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
}
.thumbs::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.thumb-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
}

/* サムネイルを正方形に */
.thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
  box-sizing: border-box; /* 枠線込み */
}

.thumbs img.active { 
  border: 2px solid #ccc; /* 左側も表示されるように box-sizing込み */
}

.thumb-label {
  font-size: 12px;
  color: #444;
  margin-top: 2px;
  text-align: center;
}

/* ↓↓↓　ここから詳細情報の商品説明のCSS　↓↓↓ */

.fs-box {
  max-width: 400px;
  margin: 0 auto 50px;
  border: 1px solid #ddd;
  border-radius: 5px;  /* 角丸 */
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.fs-box .note {
  font-size: smaller;      /* 少し小さく */
  line-height: 1.6;
  color: #555;          /* ほんの少し薄めで注釈っぽく */
  margin: 4px 0 0 14px;      /* 本文との間に余白 */
  display: block; 
}

/* 商品情報・ご注意のタイトル */
.fs-title {
  background: #e8e8e8;
  font-weight: bold;
  padding: 10px 12px;
  border-bottom: none;
}

/* 商品情報・ご注意の内容 */
.fs-body {
  background: #fff;
  padding: 10px 12px;
  border-bottom: none;
}

/* ご注意用ヘッダー */
.fs-header {
  background: #fffdf0;
  font-weight: bold;
  padding: 12px;
  border-bottom: 1px solid #d0d0d0;
  text-align: center;
}
.fs-title.bkg{
  background: #fff;
  padding-bottom: 5px;
}
.fs-body.pd{
  padding-top: 0;
}
/* 点線 */
.fs-dotted {
  border-top: 1px dotted #ccc;
    background: #fff;
  margin: 8px 0;
  width: 95%;
  margin: 0 auto;
}
.fs-box2 {
  border: none;
}
.howto{
text-align:center; 
margin-bottom: 20px;
}

/* サイズ調整テープと保管方法のボタンの間隔を狭くする */
.howto .bannerC {
  margin: 10px auto;   /* ← ここで間隔を詰める（お好みで調整可） */
}

/* 保管方法（2つ目の howto）だけ、下の間隔を広げる */
.howto:last-of-type .bannerC {
  margin-bottom: 40px; /* ← ストラップボタンまでを広くする */
}

/* 保管方法とストラップボタン → 広くする */
.howto:last-of-type {
  margin-bottom: 50px; /* 好みで調整可（30〜50pxくらい） */
}

.fs-box2 img{
  width:360px;
  height:auto;
}

/* オレンジボタン */
a.top_btn_hs001 {
  display: block;
  width: 360px;
  max-width: 360px;
  margin: 40px auto 60px;
  padding: 25px 18px;

  /* グラデなし・濃いめオレンジ */
  background: #f26a00;

  color: #ffffff !important;
  /*border: 1px solid #c45500;*/
  border-radius: 5px;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none !important;

  /* 立体感のある影 */
  box-shadow:
    0 4px 8px rgba(0,0,0,0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* hoverで少し沈む動き（不要ならこのブロックは削除OK） */
a.top_btn_hs001:hover {
  transform: translateY(1px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.25);
    opacity: initial;
}

a.top_btn_hs001,.bannerC{
box-sizing: border-box;
}

/* ---- CSS矢印付き bannerC ---- */
.bannerC {
  position: relative;
  display: block;
  width: 360px;
  margin: 18px auto;
  padding: 14px 16px;

  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 8px;

  color: #333 !important;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none !important;

  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

/* 右向き矢印 */
.bannerC::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  transform: translateY(-50%) rotate(45deg);
}

/* hover時の変化 */
.bannerC:hover {
  background: #f3f3f3;
  border-color: #c9c9c9;
  transform: translateY(-1px);
  opacity: initial;
}

.bannerC:hover::after {
  border-color: #333;
}

/* ↑↑↑　ここまで詳細情報の商品説明のCSS　↑↑↑ */


/* ↓↓↓　ここから上級デザイン設定の下部コメントのCSS　↓↓↓ */

.text-div{
padding:20px 50px;
line-height:1.8}

.text-div.dd-natural h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 12px 0;
  padding-left: 12px;
  border-left: 4px solid #cfa972;
  color: #333;
  line-height: 1.6;
}

.text-div.dd-natural p {
  font-size: 14px;
  line-height: 1.9;
  padding: 0 0 26px 12px;
  color: #444;
  margin: 0;
}

/* カート戻るボタン */
#cartBackBtn {
  position: fixed;
  bottom: 40px;
  right: 15px;
  z-index: 9999;
  display: block;
  padding: 12px 20px;
  background-color: #c11408;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-family: "メイリオ",Meiryo,sans-serif,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN";
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);

  /* 初期状態は非表示 */
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}
#cartBackBtn .cartIcon {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
}

.banner-wrapper {
  width: 800px;
  margin: 30px auto 50px auto;
  display: flex;
  justify-content: space-between;
  gap: 40px; /* 余白 */
}

.banner-wrapper a.bannerC {
  flex: 1;
  text-align: center;
  display: block;
}

h1 {
font-size:x-small;
}

#pdp{
width: 800px;
}

#pdp .pname{
font-size:24px;
font-weight:bold;
padding:30px 50px 0;
}

#pdp .kana-line {
  font-size: 0.5em;
  color: #666;
  display: block;
  margin: 0px 0px 10px;
  letter-spacing: 0.05em;
}

#pdp .pname2,.title{
font-size:24px;
padding:30px 50px 0;
}

#pdp .pname2{
padding:0 50px;
}

#pdp .sentence,#pdp .sentence2{
padding:10px 50px 60px;
font-size: 14px;
line-height: 1.8;
letter-spacing: 0.05em;
}

#pdp .sentence2{
padding:10px 50px 30px;
}
#pdp .model,.model2{
padding:0 0 30px;
display: block;
margin: auto;
}
#pdp .model2{
padding:0;
}
#pdp .pb60{
padding-bottom: 60px;
}

#pdp .mb80{
margin-bottom: 80px;
}

/* ↑↑↑　ここまで上級デザイン設定の下部コメントのCSS　↑↑↑ */