@charset "utf-8";

/*var*/
:root {
  --font-family: 'Manrope', sans-serif, YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
  /* --font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif; */
  --font-family-min: "游明朝", "Yu Mincho", YuMincho, "游明朝体", 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝', serif;
  --font-family-en: "Arial", serif;
  --font-weight-normal: 400;
  --font-weight-middle: 500;
  --font-weight-bold: 700;
  --font-markup: 0.7;/*clampの縮小率*/
  --color-key01: #333333; /* 濃いグレー */
  --color-key01-rgb: 51,51,51; /* ネイビーRGB */
  --color-key02: #ba5b06; /* オレンジ */
  --color-key02-rgb: 186,91,6; /* オレンジRGB */
  --color-white: #ffffff; /*白 */
  --color-white-rgb: 255,255,255; /* 白RGB */
  --color-def: #222222; /* 文字色など */
  --color-def-rgb: 34,34,34; /* 文字色などRGB */
  /* --color-def01: #3a342f;  */
  /* 茶--濃いめ */
  /* --color-def01-rgb: 58,52,47;  */
  /* 茶--濃いめRGB */
  --color-def01: #1a1a1a; 
  /* 黒--濃いめ */
  --color-def01-rgb: 26,26,26; 
  /* 黒--濃いめRGB */
  --color-def02: #b6afa2; /* 茶--ちょい薄め */
  --color-def02-rgb: 182,175,162; /* 茶--ちょい薄めRGB */
  --color-def03: #f4f3f1; /* 茶--めっちゃ薄い */
  --color-def03-rgb: 244,243,241; /* 茶--めっちゃ薄いRGB */
  --color-def04: #514b45; /* 茶--適度に濃い */
  --color-def04-rgb: 81,75,69; /* 茶--適度に濃いRGB */
  --line-height-narrow: 1.4;/*narrow*/
  --line-height: 1.8;
  --line-height-wide01: 2.4;/*wide*/
  --line-height-wide02: 3.0;/*very heigh*/
  --bp: 768px;/*break point*/
  --bp-sp: 375px;
  --bp-sp-narrow: 320px;
  --bp-sp-wide: 414px;
  --vw-pc: 11.80;
  --vw-sp: 3.75;
  --cont-width-sp: 375px;/*375*/
  --cont-width01-sp: calc(100vw - 10.66vw);/*conSP*/
  --cont-width-pc: 1220px;/*1200*/
  --cont-width01-pc: 1020px;/*1000*/
  /*--cont-width-pc-narrow: 875px;855*/
  /*--cont-width-pc-width: calc(100% - 160px);855*/
  --cont-width-nv-pc: 1200;/*数値のみ numerical value*/
  --cont-width01-nv-pc: 1000;/*数値のみ numerical value*/
  /*--cont-width-nv-pc-narrow: 855;数値のみ numerical value*/
  --cont-width-sp: 375px;
  --cont-width-nv-sp: 375;/*数値のみ numerical value*/
  --transition-duration01: .3s;
  --transition-duration02: .6s;
  --opacity01: 0.7;
}

/* for Common & Smartphone*/
html,body{
	position:relative;
	overflow-x: clip;
}
html {
  scroll-behavior: smooth;
	}

@media screen and  (max-width:767px){
  /* スマートフォン 767px以下 */
  :target {
    scroll-margin-top: 75px;
  }

  /* 追加↓ */
   /* hNavをFlexで左右に分ける */
  .hNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }

  /* アイコンごとの位置を調整 */
  .hNav > li {
    flex: 0 0 auto;
  }

  /* ロゴは中央固定 */
  .header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .logo img {
  display: block;
  height: 100%;

}
  .l-header__logo img {
    vertical-align: bottom; /* または top, bottom でもOK */
    display: block;
    height: 100%;       /* 親の高さにフィット */
   width: auto;        /* 横比率は自動 */
}

  /* 表示したいアイコンのみ表示 */
  .hNav > li {
    display: none;
  }

  /* メニュー(≡)、ログイン(👦)、検索(🔍)、カート(🛒)を表示 */
  .hNav > li.hSpSearch,
  .hNav > li.hasNav,
  .hNav > li:last-child {
    display: block;
  }

  /* 検索アイコン（重複）除去：2個目以降を非表示 */
  .hNav img[src*="ico_search.svg"]:not(:first-of-type) {
    display: none !important;
  }

  .hasNav label img {
    display: inline; /* or inline-block */
    width: 24px;
    height: auto;
  }

  .hasNav label span {
    display: none;
  }
  
 /* 追記 */
/* チェックボックスは非表示に */
.hasNav input[type="checkbox"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* 初期はメニュー非表示 */
.hasNav > div {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  z-index: 999;
  border: 1px solid #ccc;
  padding: 10px;
  min-width: 160px;
}

/* チェックが入ったら表示 */
.hasNav input[type="checkbox"]:checked + label + div {
  display: block;
}

/* ラベル（顔アイコン）整える */
.hasNav label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}




/* スマホ時：テキストを非表示、アイコンだけ表示 */
@media screen and (max-width: 768px) {
  .hasNav label span {
    display: none;
  }

  .hasNav label img {
    width: 24px;
    height: auto;
  }
}
/* 初期状態で非表示 */
.hasNav > div {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  min-width: 160px;
}

/* チェックボックスがONのときだけ表示 */
.hasNav input[type="checkbox"]:checked + label + div {
  display: block;
}

.hasNav {
  position: relative;
}

/* .hasNav input[type="checkbox"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
} */

.hasNav > div {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
  z-index: 1000;
  min-width: 160px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.hasNav > div {
  border: none !important;
}

/* inputがチェックされてる時だけ表示 */
.hasNav input[type="checkbox"]:checked ~ div {
  display: block;
}

 .hNav_left {
    display: flex;
    align-items: center;
    gap: 8px; /* アイコン間の余白調整 */
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .hNav_left li {
    list-style: none;
  }

  /* ロゴは中央配置のまま */
  .l-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  /* 通常の右側ナビとの重なり防止 */
  .hNav {
    margin-right: 10px;
  }
/* ✅ 通常ナビ（PC／既存）の人アイコンだけ非表示にする */
ul.hNav:not(.hNav_left) > li.hasNav {
  display: none !important;
}

/* ✅ 新ナビ（.hNav_left）の虫眼鏡など不要な要素を念のため非表示にしておく */
ul.hNav.hNav_left > li:not(.hasNav) {
  display: none !important;
}


/* 左側：メニュー＋人アイコン */
.header__left {
  display: flex;
  align-items: center;
  gap: 12px; /* 任意で間隔調整 */
}

ul.hNav_left > li.hasNav {
 /* margin-left: clamp(20px, 8vw, 60px); */
margin-left: clamp(40px, 12vw, 100px)}


.hNav_left li.hasNav > div {
  width: max-content;
  min-width: 110px; /* 最低限の横幅を確保する場合 */
}

/* 追加↑ */

}

@media screen and (min-width: 768px){
  :target {
    scroll-margin-top: 100px;
  }
}

body{
	position:relative;
	-webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
	background: var(--color-white);
	font-family: var(--font-family);
  font-optical-sizing: auto;
	font-weight: var(--font-weight-middle);
  font-style: normal;
	color: var(--color-def);
	line-height: var(--line-height);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}



/* for PC*/
@media print, screen and (min-width: 768px){
  body{
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width:320px) {
	html{
		/*font-size: 50%;*//*8px基準*/
	}
}
/* for tablet*/
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation:portrait){
/*縦向きのみの記述 --- iPad Pro12.9はPC表示*/
  body{
    min-width: 1280px;
  }
}
@media only screen and (min-device-width: 835px) and (max-device-width: 1024px) and (orientation:portrait){
/*縦向きのみの記述 --- iPad Pro12.9はPC表示*/
  body{
    min-width: 1180px;/*確認*/
  }
}
/* for tablet*/
@media only screen and (min-device-width: 1024px) and (max-device-width: 1112px) and (orientation:landscape) {
/*横向きのみの記述 --- iPad Pro12.9はPC表示*/
  body{
    min-width: 1280px;
  }
}

h1,h2,h3,h4,h5,h6{
  font-weight: var(--font-weight-bold);
}
.br{
  display: inline-block;
}

.sp{display:block;}
.pc{display:none;}

.spIL{display:inline;}
.pcIL{display:none;}

.conSP{
	margin-left: 5.33vw !important;/*20px*/
	margin-right: 5.33vw !important;
}

/*リンク 
*/
a:link{
	color:var(--color-def);
	text-decoration: none;
	}
a:visited{
	color:var(--color-def);
	}

a:active/*,
a:hover*/{
	color: var(--color-def);
	}
.disabled{
	cursor: default;
}
.txtUL{
	text-decoration: underline !important;
}
.linkTxt{
  color: #0000ee !important;
}

img {
	border:0;
	vertical-align:top;
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
    width: 100%;
}
.img100{
	width:100%;
}

.relative{
	position:relative;
	}
.static{
	position:static !important;
	}
.hide{
	display:none;
	}

/*font*/
.normal{
	font-family: var(--font-family);
	font-weight: var(--font-weight-normal);
	}
.middle{
	font-family: var(--font-family);
	font-weight: var(--font-weight-middle);
	}
.bold{
	font-family: var(--font-family);
	font-weight: var(--font-weight-bold);
	}

.fMin{
	font-family: var(--font-family-min);
	font-weight: var(--font-weight-normal);
	}
.fMin.bold{
	font-weight:bold;
	font-weight: var(--font-weight-bold);
	}
.fEn{
	font-family: var(--font-family-en);
  font-weight: var(--font-weight-normal);
	}
.fEn.bold{
  font-weight: var(--font-weight-bold);
	}

/*txt*/
.tCol00{
	color: var(--color-def);
}
.tCol99{
	color: var(--color-white);
}
.tColKey01{
	color: var(--color-key01);
}
.tColKey02{
	color: var(--color-key02);
}

/* for PC*/
@media print, screen and (min-width: 768px){
	.sp{display:none;}
	.pc{display:block;}

	.spIL{display:none;}
	.pcIL{display:inline;}

	.conSP{
		margin-left:0 !important;
		margin-right:0 !important;
	}
	.conPC{
    /*width: auto !important;*/
    width: 100%;
		margin-left:auto !important;
		margin-right:auto !important;
		padding-left: 10px;
		padding-right: 10px;
	}
	.conPC{
		max-width: var(--cont-width-pc);
	}
	.conPC.-wType01{
		max-width: var(--cont-width01-pc);
	}
	/*.conPC.-typeN01{
		max-width: var(--cont-width-pc-narrow);
	}*/
	/*.conPC.-typeW01{
		max-width: var(--cont-width-pc-width);
	}*/
  

	a:link,
	a:visited{}
	a:active,
	a:not(.disabled):hover{
		text-decoration:none;
		}
	a,
	.hover{
		-webkit-transition: var(--transition-duration01);
		transition: var(--transition-duration01);
		}
	a:not(.noRO):hover,
	.hover:hover{
		opacity: var(--opacity01);
		zoom:1; 
		}
	.disabled{
		text-decoration:none;
	}

}

/*
header
*/
.header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
  background: var(--color-white);
  z-index: 999;
}
.header a{
	display: block;
  line-height: 1.0;
}
.header > div{
  display: flex;
  align-items: center;
  height: 100%;
}
.header .logo{
  order: 2;
  width: calc((100px / var(--cont-width01-sp)) * 100%);
  /* max-width: 100px; */
  max-width: 160px;
  margin: 0 0 0 15px;
}


.header .hNav{
  order: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 0 auto;
}
.header .hNav > li{
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 0 0 10px;
}

.header .hNav > li a,
.header .hNav > li.hasNav label{
  display: block;
  width: 100%;
  height: 100%;
}

/* 追加↓ */

.header .hNav > li.hasNav label {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  height: auto !important;
}

.header .hNav > li.hasNav label img {
  display: inline-block;
  vertical-align: middle;
}

/* 追加↑ */

.header .hNav > li a > span,
.header .hNav > li.hasNav label > span,
.header .hNav > li.hSpSearch > label > span{
  display: none;
}
.header .hNav > li.hasNav input{
  display: none;
}

.header .hNav > li.hasNav div{
  position: absolute;
  left: -20px;
  top: calc(100% + 10px);
  display: grid; 
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  width: auto;
  z-index: 100010;
}
.header .hNav > li.hasNav div ul{
  width: 8em;
  font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-sp)), 13px);/*13 / 16*/
  overflow: hidden;
}
.header .hNav > li.hasNav div ul li{
  text-align: left;
  line-height: 1.0;
}
.header .hNav > li.hasNav div ul li + li{
  border-top: 1px solid var(--color-def02);
}
.header .hNav > li.hasNav div ul li a{
  display: block;
  padding: 0.7em 0.5em;
}

/*サブナビが開いてる時*/
.header .hNav > li.hasNav input:checked + div{
  grid-template-rows: 1fr;
}
.header .hNav > li.hasNav input:checked + div ul{
  background: var(--color-white);
  box-shadow: 1px 1px 2px rgba(var(--color-def-rgb),0.2);
  border: 1px solid var(--color-def02);
}


/*検索*/
.hSpSearch{}
#hNavSearch{
  display: none;
}
.hSearchWrap{
  position: fixed;
  right: -100vw;
  top: 60px;
  width: 100vw;
  height: 100%;
  padding: 40px 20px 100px 20px;
  text-align: left;
  transition: var(--transition-duration01);
  z-index: 99999;
  background: rgba(var(--color-white-rgb),0.98);
  overflow-y: auto;
}

/*.hSpSearch .headerSearch_sp__parameter{
  display: none;
}*/
.hSearchWrap .hSearchModule{}
.hSearchWrap .hSearchModule dt,
.hSearchWrap .hSearchModule dd{
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16*/
  text-align: left;
}
.hSearchWrap .hSearchModule dt{
  margin: 20px 0 0 0;
  font-weight: var(--font-weight-bold);
}
.hSearchWrap .hSearchModule dd{
  margin: 5px 0 0 0;
}

.hSearchWrap .hSearchModule input[type="text"]{
  height: 40px;
  padding: 0 0 0 10px;
  border: 1px solid var(--color-def02);
  border-radius: 0;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16*/
}
.hSearchWrap .hSearchModule .hInputPrice{
  display: flex;
  align-items: center;
  line-height: 1.0;
}
.hSearchWrap .hSearchModule .hInputPrice input[type="text"]{
  width: 32%;
}
.hSearchWrap .hSearchModule .hInputPrice i{
  display: inline-block;
  margin: 0 5px;
  font-style: normal;
}
.hSearchWrap .hSearchModule .hInputPrice span{
  align-self: flex-end;
  margin: 0 0 0 5px;
}

.hSearchWrap button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 30px;
  margin: 20px auto 0 auto;
  background: var(--color-def01);
  border: none;
  color: var(--color-white);
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16*/
  text-align: center;
  line-height: 1.0;
}


.hSearchWrap .hSearchModule.hSelect{
  margin: 30px 0 0 0;
  padding: 30px 0 0 0;
  /* border-top: 1px solid var(--color-def02); */
}
.hSearchWrap .hSearchModule.hSelect dd ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hSearchWrap .hSearchModule.hSelect dd ul li {
  border: 1px solid var(--color-def02);
}
.hSearchWrap .hSearchModule.hSelect dd ul li a {
  display: block;
  padding: 0.7em;
  font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-sp)), 13px);/*13*/
  text-align: center;
  line-height: 1.0;
}

/*OPEN時*/
#hNavSearch:checked + .hSearchWrap {
  right: 0;
}

.header .hTel{
  display: none;
}


/* 7/28追加 */
.color-chip.pattern-stripe {
  background: none !important; /* liやaの背景はリセット */
}

/* 綺麗に横並びになる↓ */
/* .color-chip {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2em;
  line-height: 1.6;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}

.color-chip::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
  border: 1px solid #ccc;
  margin-right: 0.5em;
  flex-shrink: 0;
  position: absolute;
  left: 0;
} */

/* 綺麗に横並びになる↑ */

 .color-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 12px;
  width: 60px;
  position: relative;
  text-decoration: none;
  color: #000 !important;
}

.color-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #aaa;
  box-sizing: border-box;
  border-radius: 4px; /* ← ここで角丸に */
}

.color-label {
  display: block !important;
  opacity: 1 !important;
  color: #000 !important;
}

 .color-chip .color-label {
  display: block;
  margin-top: 30px; /* ← 重なりを避けて下に配置 */
  font-size: 13px;
  text-align: center;
}


/* 7/28追加↑ */

/* 7/29追加↓ */
/* カラーチップ一覧（4列グリッド） */
ul.color-chip-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列 */
  gap: 16px 12px; /* 縦・横の間隔 */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各カラーチップ：縦並び */
.color-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
}

/* 色チップ（■部分） */
.color-chip::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: currentColor;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: block;
  margin-bottom: 6px;
}

/* ラベル */
.color-label {
  white-space: nowrap;
  font-size: 13px;
}

/* 検索ページ用：強制的に4列グリッドにする */
.hSearchModule .color-chip-list {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px 12px !important;
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawerNav .color-chip {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  font-size: 13px !important;
  width: 60px !important;
  color: #000 !important;
  text-decoration: none !important;
  position: static !important;
}

.drawerNav .color-chip .color-label {
  margin-top: 8px !important; /* ← ここを調整 */
  font-size: 13px !important;
  text-align: center !important;
}

.drawerNav .color-chip::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: currentColor;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: block;
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
}

/* 7/29追加↑ */



/* 各カラー定義 */
.color-chip.white::before        { background-color: #fff; }
.color-chip.blue::before         { background-color: #0074d9; }
.color-chip.navy::before         { background-color: #001f3f; }
.color-chip.purple::before       { background-color: #800080; }
.color-chip.red::before          { background-color: #ff0000; }
.color-chip.pink::before         { background-color: #ffc0cb; }
.color-chip.green::before        { background-color: #2ecc40; }
.color-chip.khaki::before        { background-color: #78866b; }
.color-chip.yellow::before       { background-color: #ffdc00; }
.color-chip.brown::before        { background-color: #8b4513; }
.color-chip.beige::before        { background-color: #f5f5dc; }
.color-chip.black::before        { background-color: #000; }
.color-chip.gray::before         { background-color: gray; }
/* 特殊カラーは background 使用（gradient系） */
.color-chip.multicolor::before {
  background: linear-gradient(45deg, red, yellow, green, blue);
}
.color-chip.pattern-stripe::before {
  background: repeating-linear-gradient(45deg, #999, #999 3px, #fff 3px, #fff 6px);
}
.color-chip.other::before {
  background-color: #ccc;
}

/* .color-chip::before {
  top: 4px;
} */

/* .gNav .color-chip::before {
  content: "";
  position: absolute;
  top: 1.3em; 
  left: 0.6em;
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  vertical-align: middle;
} */

.gNav .color-chip {
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
/* 7/8追記カラー ↑*/


/* 7/9追記 ↓*/
.hashtag-list li {
  background-color: #f0f0f0; /* グレーの背景色 */
  margin: 5px;
  padding: 5px 10px; /* 中の余白もあると見やすい */
  border-radius: 5px; /* 角丸 */
  display: inline-block; /* 並べて表示したい場合 */
}

/* COLORセクションだけliの枠線を消す */
.hSearchModule.hSelect dd ul li .color-chip {
  border: none !important;
}

/* 念のためliにも適用（aではなくliに枠線が付いている可能性もあるため） */
.hSearchModule.hSelect dd ul li:has(.color-chip) {
  border: none !important;
}

/* 7/9追記 ↑*/

/* for PC*/
@media print, screen and (min-width: 768px){
	.header{
    /*height: auto;*/
    height: 150px;
  }
  .header a{}
  .header > div{
    height: 100px;
  }
  .header .logo{
    order: 1;
    width: calc((168 / var(--cont-width-nv-pc)) * 100%);
    max-width: 168px;
    margin: 0;
  }


  .header .hNav{
    order: 2;
    display: flex;
    justify-content: center;
  }
  .header .hNav > li{
    width: auto;
    height: auto;
    margin: 0 10px;
    text-align: center;
  }
  .header .hNav > li a,
  .header .hNav > li label{}
  .header .hNav > li img{
    width: 30px;
    height: 30px;
  }
  .header .hNav > li a > span,
  .header .hNav > li.hasNav label > span{
    display: block;
    margin: 5px 0 0 0;
    font-size: clamp(calc(11px * var(--font-markup)), calc(11vw / var(--vw-pc)), 11px);/*11*/
  }
  .header .hNav > li.hasNav div{
    left: 0;
    top: 100%;
  }
  .header .hNav > li.hasNav div ul{
    width: 10em;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*13 / 16*/
  }
  .header .hNav > li.hasNav div ul li{}
  .header .hNav > li.hasNav div ul li a{
    padding: 1.0em;
  }
  .header .hNav > li.hasNav div ul li a:hover{
    background: var(--color-def03);
    opacity: 1.0;
  }

  /*開いてる時*/
  .header .hNav > li.hasNav input:checked + div{
    grid-template-rows: 1fr;
  }
  .header .hNav > li.hasNav input:checked + div ul{
    background: var(--color-white);
    box-shadow: 1px 1px 2px rgba(var(--color-def-rgb),0.2);
    border: 1px solid rgba(var(--color-def03-rgb),0.1);
  }


  
  .header .hNav > li.hSpSearch,
  .header .hNav > li.hSpGuide{
    display: none;
  }

  .header .hTel{
    order: 3;
    display: block;
    margin: 0 0 0 3.0%;
    text-align: left;
  }
  .header .hTel dt{
    font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-pc)), 13px);/*13*/
    letter-spacing: 0.05em;
  }
  .header .hTel dd{
    margin: 5px 0 0 0;
  }
  .header .hTel dd a{
    pointer-events: none;
  }
  
.header .hNav > li.hasNav label {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  height: auto !important;
}

.header .hNav > li.hasNav label img {
  display: inline-block;
  vertical-align: middle;
}

.header .hNav > li.hasNav label span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  white-space: nowrap;
}

/* 追加↓ */

/* スマホ用アイコン類を非表示にする場合（hSpGuide など） */
  .hNav > li.hSpGuide {
    display: none !important;
  }

  /* ロゴ左寄せに戻す */
  .header .logo {
    position: static;
    transform: none;
    margin-left: 30px;
  }
  /* PCではすべてのアイコン表示 */
  .hNav > li {
    display: inline-block !important;
  }

  /* gNavPC（ナビ）表示 */
  .gNavPC {
    display: block !important;
  }

    .hNav > li.hSpSearch {
    display: none !important;
  }

  .hNav_left {
    display: none !important;
  }

/* 追加↑ */

}


/*
btnGNav
*/
.btnGNav {
  order: 1;
	position: relative;
  display: block;
  width: 20px;
	height: 17px;
  line-height: 0;
  cursor: pointer;
  z-index: 100000;
	}	
#btnGNavCheck {
  display: none;
	}
.btnGNav span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
  font-style: normal;
	}
.btnGNav span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-def);
}
.btnGNav span:nth-of-type(1) {
  top: 0;
}
.btnGNav span:nth-of-type(2) {
  top: 50%;
}
.btnGNav span:nth-of-type(3) {
  top: 100%;
}


/* for PC*/
@media print, screen and (min-width: 768px){
	.btnGNav {
    display: none;
  }	
}


/*
gNav
*/
.gNavPC {
    display: none !important;
  }

.gNav {
  position: fixed;
  left: -100vw;
  top: 60px;
  width: 100vw;
  height: 100%;
  padding: 40px 20px 20px 20px;
  text-align: left;
  transition: var(--transition-duration01);
  z-index: 99999;
  background: rgba(var(--color-white-rgb),0.98);
  overflow-y: auto;
}

/* 追加▼▼ */
.gNavPC {
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.gNavPC .conPC {
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
/* 追加▲▲ */


/*OPEN時*/
/*#btnGNavCheck:checked ~ .toggle .btnGNav span{
  background-color: var(--color-white);
}*/
#btnGNavCheck:checked ~ .toggle .btnGNav span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
#btnGNavCheck:checked ~ .toggle .btnGNav span:nth-of-type(2) {
	top:8px;
  transform: translateY(0) rotate(45deg);
}
#btnGNavCheck:checked ~ .toggle .btnGNav span:nth-of-type(3) {
  opacity: 0;
}
#btnGNavCheck:checked ~ .gNav {
  left: 0;
}



/*ドロワーのみの設定*/
/*
.header .gNav .hNav {
  order: unset;
  justify-content: space-around;
  margin: 0 0 40px 0;
}
.header .gNav .hNav li {
  width: auto;
  height: auto;
  margin-left: 0;
  text-align: center;
}
.header .gNav .hNav li:nth-of-type(1){
  order: 2;
}
.header .gNav .hNav li:nth-of-type(2){
  order: unset;
}
.header .gNav .hNav li:nth-of-type(3){
  order: 1;
}
.header .gNav .hNav li:nth-of-type(4){
  order: 3;
}
.header .gNav .hNav li:nth-of-type(5){
  order: 4;
}
.header .gNav .hNav .hSpGuide{
  display: none;
}
.header .gNav .hNav li img {
  width: 30px;
  height: 30px;
}
.header .gNav .hNav li a span{
  display: block;
  margin-top: 10px;
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);
}
*/



/* for PC*/
@media print, screen and (min-width: 768px){
	.gNav {
    display: none !important;
  }
  .gNavPC {
    display: block !important;
    height: 50px;
    border-top: 1px solid var(--color-def02);
    border-bottom: 1px solid var(--color-def02);
  }
  .gNavPC > div {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .gNavPC > div > ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  .gNavPC > div > ul > li {
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16*/
    height: 100%;
  }
  .gNavPC > div > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1em;
    font-weight: var(--font-weight-bold);
    color: var(--color-def);
    text-align: center;
    height: 100%;
  }
  .gNavPC > div > ul > li > a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 0 0 10px;
    border: 2px solid var(--color-def);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    transition: var(--transition-duration01);
  }
  
  
  .gNavPC > div > ul > li > ul {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-duration01);
  }
  .gNavPC > div > ul > li > ul::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 200vw;
    height: 100%;
    background: var(--color-key01);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-duration01);
    transform: translate(-50%,0);
    z-index: 1;
  }
  .gNavPC > div > ul > li > ul > li {
    position: relative;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16*/
    text-align: left;
    z-index: 2;
  }
  .gNavPC > div > ul > li > ul > li a {
    /* padding: 1em 1em; */
    padding: 1em 0.5em;
/* 7/22修正↑ */
    pointer-events: none;
  }
  
  
  .gNavPC > div > ul > li:hover {}
  
  .gNavPC > div > ul > li:hover a {
    background: var(--color-key01);
    opacity: 1.0;
    color: var(--color-white);
  }
  .gNavPC > div > ul > li:hover > a::after {
    border-color: var(--color-white);
    transform: rotate(-135deg);
  }
  .gNavPC > div > ul > li:hover > ul,
  .gNavPC > div > ul > li:hover > ul::before{
    opacity: 1;
    visibility: visible;
  }
  .gNavPC > div > ul > li:hover > ul > li a {
    pointer-events: auto;
    color: var(--color-white);;
  }

  /* 7/18追加↓ */
   .gNavPC > div > ul > li {
    width: 195px !important; /* ヘルプ＆ガイドと同じ幅 */
    text-align: center;
  }

  .gNavPC > div > ul > li > a {
    width: 100%;
    justify-content: center;
  }

  .gNavPC > div > ul > li > ul {
    min-width: 195px; /* ドロップダウンの幅も統一 */
  }
  /* 7/18追加↑ */
  
  
  
  .hPcSearch{
    align-self: center;
    width: calc((235 / var(--cont-width-nv-pc)) * 100%);
    max-width: 235px;
    height: 35px;
  }
  .hPcSearch form{
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hPcSearch form input{
    width: 100%;
    height: 100%;
    padding: 0 0 0 10px;
    border: 1px solid var(--color-def02);
  }
  .hPcSearch form button{
    position: absolute;
    right: 10px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: none;
    background: transparent;
    transform: translate(0,-50%);
  }

/* 7/22追加↓ */
    .hasNav {
    position: relative; /* aを絶対位置で配置するために必要 */
  }

  .hNav-link-for-pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    background: transparent;
  }
}

/*
hInfo
*/
.hInfo{
  margin: 60px 0 0 0;
  padding: 0.8em 0;
  background: var(--color-def01);
  color: var(--color-white);
  text-align: center;
}
.hInfo p{
  font-size: clamp(calc(17px * var(--font-markup)), calc(17vw / var(--vw-pc)), 17px);/*15 / 17*/
}

/* for PC*/
@media print, screen and (min-width: 768px){
  .hInfo{
    margin-top: 150px;
    padding: 15px 0;
    background: var(--color-def01);
    color: var(--color-white);
    text-align: center;
  }
  .hInfo p{
    font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-sp)), 15px);/*15 / 17*/
    line-height: 1.0;
  }
}

/*
footer
*/
.footer{
  padding: 0 0 100px 0;
  background:  var(--color-def01);
  color: var(--color-white);
}
.footer > div{
  position: relative;
}
.footer a{
	display: block;
}

.footer .fTel{
  position: relative;
  margin: 0 0 50px 0;
  padding: 40px 0 0 0;
}
.footer .fTel::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 100vw;
  /*height: 50%;*/
  height: calc(20px + 50%);
  background: var(--color-def03);
  /*border-top: 40px solid var(--color-def03);*/
  transform: translate(-50%,0);
}
.footer .fTel dl{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  background: var(--color-white);
  color: var(--color-def04);
  text-align: center;  
}
.footer .fTel dt p:nth-of-type(1){
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 24*/
  line-height: 1.0;
}
.footer .fTel dt p:nth-of-type(2){
  margin: 10px 0 0 0;
  font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*16 / 15*/
  line-height: 1.0;
  letter-spacing: normal;
}
.footer .fTel a{
  max-width: 335px;
  margin: 15px auto 0 auto;
}

/*フッターとドロワー内のナビはデザイン共通*/
.footer .fNav,
.drawerNav{
  /*color: var(--color-white);*/
}
.footer .fNav > li,
.drawerNav > li{
  border-bottom: 1px solid var(--color-def04);
}
.drawerNav:nth-of-type(1) > li:nth-of-type(1){
  border-top: 1px solid var(--color-def04);
}
.footer .fNav > li label,
.drawerNav > li label,
.drawerNav > li > a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 16*/
  font-weight: var(--font-weight-bold);
  line-height: 1.0;
  text-align: left;
}
.footer .fNav > li input,
.drawerNav > li input{
  display: none;
}
.footer .fNav > li input ~ label::after,
.drawerNav > li input ~ label::after,
.drawerNav > li > a::after{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 0 0 10px;
  border: 2px solid var(--color-white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  transition: .3s;
}
.drawerNav > li input ~ label::after,
.drawerNav > li > a::after{
  border-color: var(--color-def);
}
.drawerNav > li > a::after{
  transform: rotate(-45deg);
}
.footer .fNav > li input:checked ~ label::after,
.drawerNav > li input:checked ~ label::after{
  transform: rotate(-135deg);
}


.footer .fNav > li > div,
.drawerNav > li > div{
  /*opacity: 0;
  visibility: hidden;
  max-height: 0;
  display: flex;
  flex-wrap: wrap;*/
  display: grid; 
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.footer .fNav > li input:checked ~ div,
.drawerNav > li input:checked ~ div{
  /*opacity: 1;
  visibility: visible;
  max-height: 500px;*/
  grid-template-rows: 1fr;
}
.footer .fNav > li > div ul,
.drawerNav > li > div ul{
  overflow: hidden;
}
.footer .fNav > li > div ul li,
.drawerNav > li > div ul li{
  font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-sp)), 15px);/*15 / 15*/
  line-height: 1.0;
  text-align: left;
}
.footer .fNav:nth-of-type(1) > li > div ul li,
.drawerNav:nth-of-type(1) > li > div ul li{
  min-width: 50%;
}
.footer .fNav > li > div ul li a,
.drawerNav > li > div ul li a{
  padding: 5px 0 20px 10px;
  color: var(--color-white);
}
.drawerNav > li > div ul li a{
  color: var(--color-def);
}


.footer .fBottom{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 50px 0 0 0;
}
.footer .fLogo{
  width: calc((100px / var(--cont-width01-sp)) * 100%);
  max-width: 100px;
}
.footer .fSns{
  width: 70px;
  height: 25px;
}
.footer .fSns a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 8px;
  border: 1px solid var(--color-white);
}
.footer .fSns a::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border: 1px solid var(--color-white);
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
}
.footer .fSns a img{
  width: 30px;
}

.footer .copyright{
  width: 100%;
  /* margin: 50px 0 0 0; */
  margin: 0 auto;
  font-family: var(--font-family-en);
	font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-sp)), 12px);/*12 / 12*/
	text-align: center;
	line-height: 1.0;
  letter-spacing: 0.02em;
}

/* 追加↓ */
/* FOLLOW US のSNSアイコンを横並びにする */
.fNav .fNav-followus + div > ul {
  display: flex !important;
  gap: 12px;
  list-style: none;
  padding: 0; /* ← ここでpaddingを完全に除去 */
  margin: 0;  /* 念のためmarginもリセット */
}

.fNav .fNav-followus + div > ul li {
  display: inline-block;
}

.fNav .fNav-followus + div {
  padding-top: 2px;  /* ←ここの値を調整（例: 4px, 2px など） */
}

  /* FOLLOW US 以外の .fNav の中の ul を2列に */
  .footer .fNav > li:not(:has(.fNav-followus)) > div ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em 1.2em;
 padding-left: 1em; /* ←ここを追加して1文字分ずらす */
     margin: 0;
  }

  .footer .fNav > li:not(:has(.fNav-followus)) > div ul li {
    display: block;
    padding-left: 0;
    margin: 0;
    list-style: none;
    text-align: left;
  }

  .footer .fNav > li:not(:has(.fNav-followus)) > div ul li + li::before {
    content: none;
  }

  .footer .fNav > li:not(:has(.fNav-followus)) > div ul li {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

.fNav .fNav-followus + div > ul li img {
  display: inline-block;
  max-height: 100%; /* liの高さ内に収める */
  height: 32px;      /* 必要なら明示的に指定 */
  width: auto;
}
  .fNav-followus + div {
    display: block; /* ← 必要なら明示的に表示 */
  }

  .fBottom {
    display: none;
  }

  /* FOLLOW USだけ常に表示させる */
.fNav-followus + div {
  display: block !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 追加↑ */

/* for PC*/
@media print, screen and (min-width: 768px){
	.footer{
    padding: 0 0 160px 0;
  }
  .footer > div{
    display: flex;
    flex-wrap: wrap;
  }
  .footer a{}

  .footer .fTel{
    width: 100%;
    margin-bottom: 100px;
    padding-top: 80px;
  }
  .footer .fTel::before{
    /*border-top-width: 80px;*/
    height: calc(40px + 50%);
  }
  .footer .fTel a{
    pointer-events: none;
  }
  .footer .fTel dl{
    max-width: 800px;
    height: 200px;
    margin: 0 auto;
  }

  .footer .fTel dt,
  .footer .fTel dd{
    width: 460px;
    margin: 0 auto;
  }
  .footer .fTel dt{
    text-align: left;
  }
  .footer .fTel dt p:nth-of-type(1){
    font-size: clamp(calc(24px * var(--font-markup)), calc(24vw / var(--vw-pc)), 24px);/*16 / 24*/
  }
  .footer .fTel dt p:nth-of-type(2){
    margin-top: 20px;
    font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-pc)), 15px);/*16 / 15*/
  }
  .footer .fTel a{
    width: 100%;
    max-width: initial;
  }

  .footer .fNav{
    margin: 0 5% 0 0;
  }
  .footer .fNav:nth-of-type(1){
    /* width: 53%; */
    /* width: 660px; */
  }
  .footer .fNav:nth-of-type(3){
    margin-right: 0;
  }
  .footer .fNav > li{
    border-bottom: none;
  }
  .footer .fNav > li label{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16 / 16*/
  }
  .footer .fNav > li input {
    display: none;
  }
  .footer .fNav > li input ~ label::after {
    content: none;
  }
  .footer .fNav > li input:checked ~ label::after {}


  .footer .fNav > li > div{
    display: block;
    grid-template-rows: unset;
    transition: unset;
    padding: 30px 0;
  }
  .footer .fNav:nth-of-type(1) > li > div{
    padding-top: 15px;
  }
  
  .footer .fNav > li input:checked ~ div {
    grid-template-rows: unset;
  }
  .footer .fNav > li > div ul{}
  .footer .fNav > li > div ul li{
    margin: 0 0 20px 0;
    font-size: clamp(calc(15px * var(--font-markup)), calc(15vw / var(--vw-sp)), 15px);/*15 / 15*/
    letter-spacing: 0.02em;
  }
  
  .footer .fNav:nth-of-type(1) > li > div ul{
    display: flex;
    flex-wrap: wrap;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    margin: 15px 0 0 0;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li + li{
    margin-left: 0.6em;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li + li::before{
    content: "/";
    display: inline-block;
    margin: 0 0.6em 0 0;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li:nth-of-type(8){
    margin-left: 0;
  }
  .footer .fNav:nth-of-type(1) > li > div ul li:nth-of-type(8)::before{
    content: none;
  }
  .footer .fNav > li > div ul li a{
    padding: 0;
  }

  .footer .fBottom{
    align-items: flex-start;
    margin-top: 100px;
  }
  .footer .fLogo{
    width: calc((168 / var(--cont-width-nv-pc)) * 100%);
    max-width: 168px;
  }
  .footer .fSns{}
  .footer .fSns a{}
  .footer .fSns a::after {}
  .footer .fSns a img{}
  .footer .copyright{
    width: 70%;
    margin: -1em 0 0 auto;
    font-size: clamp(calc(12px * var(--font-markup)), calc(12vw / var(--vw-pc)), 12px);/*12 / 12*/
    text-align: right;
  }

  /* 追加↓ */
/* ブランド（縦1列） */
.footer .fNav:nth-of-type(1) > li:nth-of-type(1) > div ul {
  display: block;
}
.footer .fNav:nth-of-type(1) > li:nth-of-type(1) > div ul li {
  display: block;
  margin: 0 0 0.5em 0;
}
.footer .fNav:nth-of-type(1) > li:nth-of-type(1) > div ul li + li::before {
  content: none;
}

/* アイテム（3行×2列の固定並び＋他と同じ左余白） */
/* アイテム（3行×2列の固定並び＋余白統一） */
.footer .fNav:nth-of-type(1) > li:nth-of-type(2) > div ul {
  display: grid;
  grid-template-columns: max-content max-content; /* 内容サイズに合わせつつ詰める */
  column-gap: 2em;        /* 横の間隔を文字2個分に調整 */
  row-gap: 0.5em;         /* 行間もブランドと統一 */
  padding-left: 0;
  margin: 0;
 line-height: 1.6; /* ← 高さにゆとりを持たせる */}

.footer .fNav:nth-of-type(1) > li:nth-of-type(2) > div ul li {
  list-style: none;
  padding: 0.2em 0 0.2em 1.2em; /* 上下に0.2emの余白追加 */
  margin: 0;
}

.footer .fNav:nth-of-type(1) > li:nth-of-type(2) > div ul li + li::before {
  content: none;
}

/* 共通の左余白ルール */
.footer .fNav > li > div ul li {
  padding-left: 1.2em;
}

.footer .fNav-followus + div ul li {
  padding-left: 0 !important;
}

.footer .fNav {
  margin-top: 10%;
  flex: 0 0 30%;  
  max-width: 32%; 
  box-sizing: border-box;
}

.footer > .conPC {
  display: flex;
  justify-content: center; 
 gap: 5%; 
}

.footer .fBottom {
  display: block;
}

.footer .copyright {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* 再修正 */
  .footer {
    padding: 0 0 100px 0;
  }

  .footer > .conPC {
    display: flex;
    justify-content: center;
    gap: 5%;
    flex-wrap: nowrap;
  }

  .footer .fNav {
    flex: 0 0 30%;
    max-width: 32%;
    box-sizing: border-box;
  }

  /* ---- ブランド（縦1列） ---- */
  .footer .fNav:nth-of-type(1) > li:nth-of-type(1) > div ul {
    display: block;
    padding-left: 0;
    margin: 0;
  }
  .footer .fNav:nth-of-type(1) > li:nth-of-type(1) > div ul li {
    padding-left: 1.2em;
    margin: 0 0 0.5em 0;
    list-style: none;
  }

  /* ---- アイテム（2列×3行） ---- */
  .footer .fNav:nth-of-type(1) > li:nth-of-type(2) > div ul {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 2em;
    row-gap: 0.5em;
    padding-left: 0;
    margin: 0;
    line-height: 1.6;
  }
  .footer .fNav:nth-of-type(1) > li:nth-of-type(2) > div ul li {
    padding-left: 1.2em;
    list-style: none;
    margin: 0;
  }

  /* ---- ヘルプ＆ガイド・ユナイテッドジャパンについて ---- */
  .footer .fNav:nth-of-type(2) > li > div ul,
  .footer .fNav:nth-of-type(3) > li:nth-of-type(1) > div ul {
    display: block;
    padding-left: 0;
    margin: 0;
  }

  .footer .fNav:nth-of-type(2) > li > div ul li,
  .footer .fNav:nth-of-type(3) > li:nth-of-type(1) > div ul li {
    padding-left: 1.2em;
    margin: 0 0 0.5em 0;
    list-style: none;
  }

  /* ---- FOLLOW US 横並び（任意） ---- */
  .footer .fNav:nth-of-type(3) > li:last-of-type > div ul {
    display: flex;
    gap: 1em;
    padding-left: 1.2em;
    margin-top: 1em;
  }
  .footer .fNav:nth-of-type(3) > li:last-of-type > div ul li {
    list-style: none;
  }

  /* FOLLOW US のラベル直下の div の padding を除去 */
.footer .fNav:nth-of-type(3) > li:nth-of-type(2) > div {
  padding: 0 !important;
}

.footer .fNav:not(:last-of-type) li {
  margin: 0.5em 0;
  line-height: 1.8;
}

  /* ---- コピーライト ---- */
.footer .copyright {
  margin-top: 2em;
}

.footer .fNav li:not(.fNav-followus-li) > div ul li {
  line-height: 2;
}

/* FOLLOW USだけは除外する */
.footer .fNav > li.fNav-followus-li {
  margin-bottom: 0;
}

/* 7/8追記画面幅縮めても切れず３列↓ */
.footer > .conPC {
    display: flex;
    justify-content: space-between;
    gap: 1.5%; /* 必要に応じて調整 */
  }

  .footer .fNav {
    flex: 0 0 32.5%;
    max-width: 32.5%;
    /* margin: 0; */
    margin-top: 100px;
    box-sizing: border-box;
  }
/* 7/8追記画面幅縮めても切れず３列↑ */

/* 7/18追加 ↓*/
.fNav .fNav-followus + div > ul {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.fNav .fNav-followus + div {
  display: flex;
  justify-content: flex-start; /* 中央揃えにしたい場合は center に */
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;           /* ← これが重要！幅制限が外れます */
  overflow: visible !important;
  box-sizing: border-box;
  padding: 0 16px;
}

/* アイコン枠を固定サイズにし、見えなくならないように */
.fNav .fNav-followus + div > ul li {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent; /* 背景白い画像対策 */
}

/* 画像サイズ：高さ基準で合わせる */
.fNav .fNav-followus + div > ul li img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}
}






/*btnPageTop*/
.btnPageTop{
	position:fixed;
	right:10px;
	bottom:60px;
  width: 50px;
	height: 50px;
	z-index:500;
	}
.btnPageTop a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-def01-rgb),0.6);
  border-radius: 50%;
}
.btnPageTop a:hover{
  opacity: 1;
}
.btnPageTop a::after{
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: 5px 0 0 0;
  border: 1px solid var(--color-white);
  border-top: none;
  border-left: none;
  transform: rotate(-135deg);
}

/* for PC*/
@media print, screen and (min-width: 768px){
  .btnPageTop{
    bottom:160px;
    }
  .btnPageTop a:hover{
    background: rgba(var(--color-def01-rgb),1.0);
  }
}

/*
sideNav
*/
.sideNav{
  display: none;
}

/* for PC*/
@media print, screen and (min-width: 768px){
  .sideNav{
    display: block;
    border-top: 1px solid var(--color-def02);
    text-align: left;
  }
  .sideNav a{
    display: block;
  }
  .sideNav .module{
    padding: 40px 0 20px 0;
    border-bottom: 1px solid var(--color-def02);
  }
  .sideNav .module h2{
    margin: 0 0 10px 0;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    line-height: 1.4;
  }
  .sideNav .module ul{
    padding: 0 0 0 15px;
  }
  .sideNav .module ul li{
    border-bottom: 1px dotted var(--color-def02);
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*14 / 16*/
    line-height: 1.4;
  }
  .sideNav .module:not(.sideOther) ul li:last-of-type{
    border-bottom: none;
  }
  .sideNav .module ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
  }
  .sideNav .module ul li a::after{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid var(--color-def);
    border-bottom: none;
    border-left: none;
    transform: rotate(45deg);
  }
  
  .sideNav .module.sideOther,
  .sideNav .module.sideBanner{
    padding: 0;
    border-bottom: none;
  }
  .sideNav .module.sideOther ul{
    padding: 0;
  }
  .sideNav .module.sideOther ul li{
    border-bottom-style: solid;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    font-weight: var(--font-weight-bold);
    line-height: 1.0;
  }
  .sideNav .module.sideOther ul li a{
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .sideNav .module.sideOther ul li a::after{
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  
  .sideNav .module.sideBanner ul{
    padding: 50px 0 0 0;
  }
  .sideNav .module.sideBanner ul li{
    margin: 0 0 30px 0;
    border-bottom: none;
  }
  .sideNav .module.sideBanner ul li a{
    display: block;
    padding: 0;
  }
  .sideNav .module.sideBanner ul li a::after{
    content: none;
  }
  
  
  .sideNav .module.sideBanner ul li.sideBnrStyle01{}
  .sideNav .module.sideBanner ul li.sideBnrStyle01 a{
    background: rgba(var(--color-def02-rgb), 0.1);
    /*border: 2px solid rgba(var(--color-def02-rgb), 0.2);*/
    border: 4px solid rgba(var(--color-def02-rgb), 0.2);
  }
  
  
  .sideNav .module.sideKW form input {
    width: 100%;
    height: 40px;
    padding: 0 0 0 10px;
    border: 1px solid var(--color-def02);
    border-radius: 0;
  }
  .sideNav .module.sideKW form .sideKWTxt input {
    width: 100%;
  }
  .sideNav .module.sideKW form .sideKWPrice{
    display: flex;
    align-items: center;
    margin: 20px 0 0 0;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    line-height: 1.0;
  }
  .sideNav .module.sideKW form .sideKWPrice input {
    width: 32%;
  }
  .sideNav .module.sideKW form .sideKWPrice i {
    display: inline-block;
    margin: 0 5px;
    font-style: normal;
  }
  .sideNav .module.sideKW form .sideKWPrice span {
    align-self: flex-end;
    margin: 0 0 0 5px;
  }
  
  .sideNav .module.sideKW form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 30px;
    margin: 20px auto 0 auto;
    background: var(--color-def01);
    border: none;
    color: var(--color-white);
    font-size: clamp(calc(13px * var(--font-markup)), calc(13vw / var(--vw-pc)), 13px);/*13 / 13*/
    text-align: center;
    line-height: 1.0;
  }
  .sideNav .module.sideKW form button::before {
    content: none;
  }
  
}


/*
contents
*/
main{
	display: block;
}



.sec01{
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec01.-secType01{
  margin-bottom: 50px;
  padding: 0;
}
.sec02{
  padding-top: 30px;
  padding-bottom: 30px;
}
.sec02.-secType01{
  margin-bottom: 30px;
  padding: 0;
}



/*ttl*/
.fs-c-heading.fs-c-heading--page,
.pageTtl{
  margin-bottom: 30px;
  font-size: clamp(calc(26px * var(--font-markup)), calc(26vw / var(--vw-sp)), 26px);/*26 / 36*/
  line-height: 1.4;
  text-align: left;
}

.ttl01{}
.ttl02{/*色は個別に設定*/
  margin-bottom: 20px;
  font-size: clamp(calc(22px * var(--font-markup)), calc(22vw / var(--vw-sp)), 22px);/*22 / 32*/
  line-height: 1.4;
}
.ttl03{/*色は個別に設定*/
  margin-bottom: 20px;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 18*/
  line-height: 1.4;
}


/* 7/10追加↓ */
 .ttl02{
    font-size: 26px;
    line-height: 1.4;
  }

/* 中央寄せに変更 */
.ttl02.taL,
.lead01.taL {
  text-align: center !important;
}

.infoWrap .conSP.conPC {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sectionWhite {
  background: #ffffff !important;
}

.brandWrap ul li img {
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* 7/10追加↑ */

/* 7/22追加↓ */
.fs-c-heading.fs-c-heading--page{
 font-weight: var(--font-weight-bold);
 color: var(--color-def);
}


/*lead*/
.lead01{
  margin-bottom: 20px;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 16*/
  line-height: var(--line-height-narrow);
}
.lead02{
  font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-sp)), 18px);/*18 / 20*/
  line-height: var(--line-height);
}

.fs-body-top .lead01 {
margin-top: -1em !important;}

/*bgcolor*/
.bg01{
  background: var(--color-def03);
}


/*btn*/
.btn{}
.btn a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.btnGen{}
.btnGen a{
  background: var(--color-def01);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}
/* .btnGen a::after{
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-white);
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg) translate(0,-50%);
} */

.btnGen.-btnType01{
  width: calc(100% - 20px * 2);
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
.btnGen.-btnType02,
.btnGen.-btnType03{
  width: 100%;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
.btnGen.-btnType01 a,
.btnGen.-btnType02 a,
.btnGen.-btnType03 a{
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 16*/
}


.btnGen.-btnTypeT01{
  width: auto;
  height: auto;
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);/*14 / 14*/
}
.btnGen.-btnTypeT01 a{
  justify-content: flex-start;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--color-def);
  font-weight: var(--font-weight-middle);
  text-decoration: underline;
}
/* .btnGen.-btnTypeT01 a::after{
  position: static;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-color: var(--color-def);
  transform: rotate(45deg) translate(0,0);
} */


/* 7/11追加↓ */
.btnGen.-btnType01 {
  width: 100%;
  max-width: 100%;
  height: 50px;
  box-sizing: border-box;
}

  .sp-only-br {
    display: inline;
  }

.btnGen a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  margin-left: 1em;
  border: 1px solid var(--color-white);
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
  position: static;
}

.btnGen.-btnTypeT01 a::after {
  border-color: var(--color-def);
  width: 6px;
  height: 6px;
}


/* 7/11追加↑ */


/* for PC*/
@media print, screen and (min-width: 768px){
	.contents{
    margin-top: 90px;
  }

  .sec01{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .sec01.-secType01{
    margin-bottom: 100px;
    padding: 0;
  }
  .sec02{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sec02.-secType01{
    margin-bottom: 60px;
    padding: 0;
  }
  
/* 7/14追加↓ */

  section.sec01.infoWrap,
  section.recentWrap.sec01,
section.pickupSection.sec01,
section.featureWrap,
section.brandWrap {
  padding-top: 0 !important;
}
  
  /*20250724追加ここから*/
  /*商品ページのレコメンド上padding上書き調整*/
  .fs-body-product .reccomendWrap section.recentWrap.sec01:first-of-type{
    padding-top: 100px !important;
  }
  /*20250724追加ここまで*/
  
  .pageTtl{
    margin-bottom: 40px;
    font-size: clamp(calc(36px * var(--font-markup)), calc(36vw / var(--vw-pc)), 36px);/*26 / 36*/
  } 
  .ttl01{}
  .ttl02{/*色は個別に設定*/
    margin-bottom: 20px;
    font-size: clamp(calc(32px * var(--font-markup)), calc(32vw / var(--vw-pc)), 32px);/*22 / 32*/
  }
  .ttl03{/*色は個別に設定*/
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
  }

  /*lead*/
  .lead01{
    margin-bottom: 40px;
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16 / 16*/
  }
  .lead02{
    font-size: clamp(calc(20px * var(--font-markup)), calc(20vw / var(--vw-pc)), 20px);/*18 / 20*/
    line-height: var(--line-height);
  }
  
  /*btn*/
  .btn{}
  .btn a{}

  .btnGen{}
  .btnGen a{}
  .btnGen a::after{
    right: 20px;
    width: 10px;
    height: 10px;
  }

  .btnGen.-btnType01,
  .btnGen.-btnType02{
    max-width: 500px;
    height: 50px;
  }
  .btnGen.-btnType03{
    min-width: 270px;
    height: 50px;
  }
  .btnGen.-btnType01 a,
  .btnGen.-btnType02 a,
  .btnGen.-btnType03 a{
    font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-pc)), 16px);/*16 / 16*/
  }
  .btnGen.-btnTypeT01{
    font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-pc)), 14px);/*14 / 14*/
  }
  .btnGen.-btnTypeT01 a{}
  .btnGen.-btnTypeT01 a::after{}


/* 7/10追加↓ */
.sp-only-br {
  display: none;
}

/* 7/10追加↑ */

}



/*reason [
----------------------------------------------------------- */
.reasonWrap{}
.fs-body-top .reasonWrap.sec01{
  padding-top: 0 !important;
}
.reasonWrap h2{
  /*width: calc((220px / var(--cont-width01-sp)) * 100%);*/
  width: 80%;
  max-width: 220px;
  margin: 0 auto 25px auto;
  text-align: center;
  line-height: 1.0;
}
.reasonWrap ol{
  margin: 0 0 40px 0;
}
.reasonWrap ol li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 1.33vw;
  border-bottom: 1px dotted var(--color-def02);
}
.reasonWrap ol li .num{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: var(--color-key01);
  border-radius: 50%;
  color: var(--color-white);
  font-size: clamp(calc(14px * var(--font-markup)), calc(14vw / var(--vw-sp)), 14px);/*14 / 20*/
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.0;
}
.reasonWrap ol li .num img{
  display: block;
  width: 12px;
  margin: 5px auto 0 auto;
  line-height: 1.0;
}
.reasonWrap ol li > div{
  width: calc(100% - (70px + 15px));
}
.reasonWrap ol li h3{
  display: flex;
  align-items: center;
  font-size: clamp(calc(17px * var(--font-markup)), calc(17vw / var(--vw-sp)), 17px);/*17 / 32*/
  text-align: left;
  line-height: 1.0;
}
.reasonWrap ol li h3 strong{
  color: var(--color-key01);
  font-size: calc((24 / 17) * 100%);
}
.reasonWrap ol li h3 + p{
  margin: 8px 0 0 0;
  font-size: clamp(calc(16px * var(--font-markup)), calc(16vw / var(--vw-sp)), 16px);/*16 / 18*/
  font-weight: var(--font-weight-bold);
  text-align: left;
  line-height: var(--line-height-narrow);
  letter-spacing: 0.05em;
}

@media print, screen and (min-width: 768px){
  .reasonWrap{}
  .reasonWrap h2{
    /*width: calc((440 / var(--cont-width01-nv-pc)) * 100%);*/
    max-width: 440px;
    margin-bottom: 50px;
  }
  .reasonWrap ol{
    display: flex;
    justify-content: space-between;
    width: var(--cont-width01-pc);
    margin: 0 auto 30px auto;
  }
  .reasonWrap ol li{
    position: relative;
    display: block;
    padding: 0;
    width: calc((100% - 40px) / 3);
    border-bottom: none;
  }
  .reasonWrap ol li::before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    padding: 0;
    width: 100%;
    height: calc(100% - 50px);
    border: 1px solid var(--color-def02);
    transform: translate(-50%,0);
  }
  .reasonWrap ol li .num{
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    font-size: clamp(calc(20px * var(--font-markup)), calc(20vw / var(--vw-pc)), 20px);/*14 / 20*/
    z-index: 10;
  }
  .reasonWrap ol li .num img{
    width: 24px;
    margin-top: 10px;
  }
  .reasonWrap ol li > div{
    width: calc((280 / 320) * 100%);
    margin: 35px auto 40px auto;
  }
  .reasonWrap ol li h3{
    justify-content: center;
    font-size: clamp(calc(32px * var(--font-markup)), calc(32vw / var(--vw-pc)), 32px);/*17 / 32*/
    text-align: center;
  }
  .reasonWrap ol li h3 strong{
    font-size: calc((24 / 17) * 100%);
  }
  .reasonWrap ol li h3 + p{
    margin-top: 30px;
    font-size: clamp(calc(18px * var(--font-markup)), calc(18vw / var(--vw-pc)), 18px);/*16 / 18*/
    line-height: var(--line-height);
  }
}


/* 7/18追加 */
/* .fs-p-memberAgreement .fs-l-main,
.fs-p-privacyPolicy .fs-l-main,
.fs-p-aboutTerms .fs-l-main,
.fs-p-returnPolicy .fs-l-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.fs-p-memberAgreement *,
.fs-p-privacyPolicy *,
.fs-p-aboutTerms *,
.fs-p-returnPolicy * {
  text-align: left !important;
} */

/* 1. 親要素（fs-l-main）に明示的に flex 中央寄せを設定 */
.fs-l-main {
  display: flex;
  justify-content: center;
}

/* 2. 各情報ページの中央寄せ用ブロック */
.fs-p-memberAgreement,
.fs-p-privacyPolicy,
.fs-p-aboutTerms,
.fs-p-returnPolicy {
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 2em;
}

/* 3. テキストは常に左寄せ */
.fs-p-memberAgreement *,
.fs-p-privacyPolicy *,
.fs-p-aboutTerms *,
.fs-p-returnPolicy *,
.fs-body-about-shippingPayment p {
  text-align: left !important;
}


/* ↓送料のページの文字左揃え */

/* #fs_anchor_deliveryService,
#fs_anchor_deliveryService h3,
#fs_anchor_deliveryService h4,
#fs_anchor_deliveryService h5,
#fs_anchor_deliveryService p,
#fs_anchor_deliveryService ul,
#fs_anchor_deliveryService li,
#fs_anchor_deliveryService .fs-c-documentContent,
#fs_anchor_deliveryService .fs-c-note,
#fs_anchor_deliveryService .fs-c-shippingCarrierInfo__comment {
  text-align: left;
} */


#fs_anchor_aboutPostage,
#fs_anchor_aboutPayment,
#fs_anchor_tax {
  text-align: left !important;
}

#fs_anchor_tax,
#fs_anchor_tax th,
#fs_anchor_tax td,
#fs_anchor_tax p,
#fs_anchor_tax .fs-c-note,
#fs_anchor_tax .fs-c-price,
#fs_anchor_cashOnDelivery .fs-c-specTable th,
#fs_anchor_cashOnDelivery .fs-c-specTable td,
#fs_anchor_npPostpayRta .fs-c-specTable th,
#fs_anchor_npPostpayRta .fs-c-specTable td{
  text-align: left;
}

/* ↑送料のページの文字左揃え */


/* 例外：中央揃えにしたい箇所 */
.fs-body-about-shippingPayment .hInfo p,
.fs-body-about-shippingPayment p.copyright {
  text-align: center !important;
}

.fs-c-documentColumn .fs-c-documentColumn__heading,
.fs-c-documentArticle .fs-c-documentArticle__heading {
  text-align: left;
}

/* ログイン画面 */
.fs-c-button--memberRegister.fs-c-button--primary {
  color: #fff !important; /* ボタン文字を白に */
}

@media screen and  (max-width:767px){
/* ログインページの左右余白 */
.fs-c-loginForm {
  padding: 0 2em;
  box-sizing: border-box;
  gap: 0.5%;
}
}

/* 1023pxになるとアイコンが消えるのを防ぐ */
@media screen and (max-width: 1023px) and (min-width: 769px) {
  .fNav .fNav-followus + div {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    padding: 0; /* ← 横paddingをなくす */
  }

  .fNav .fNav-followus + div > ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2% !important;
    padding: 0 !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .fNav .fNav-followus + div > ul li { 
    width: 30px;
    height: 30px;  
  }

  /* .fNav .fNav-followus + div > ul li img {
    height: 30px;
    width: auto;
    object-fit: contain;
  } */
}


/* ８月下旬より発売開始予定のp設定 いつか消す↓ */

.coming-soon-notice {
  font-size: 0.9rem;
  margin-top: -8px;
}

.gNavPC .coming-soon-notice {
  color: #fff; 
}

.drawerNav .coming-soon-notice {
  margin-bottom: 8px; /* ← 下に余白を追加 */
}

/* @media print, screen and (min-width: 768px){

} */