







@charset "utf-8";
/* CSS Document */
/* ==========================================================================
Base
========================================================================== */

/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}

:where(body) {
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  color: inherit; /* カラーも継承 */
  font: inherit; /* フォーム コントロールは親フォントを継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  overflow: visible;

  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  color: inherit;
  border-block-start: 1px solid;
  block-size: 0;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

:root {
  --color-00-accent: #fc858c;
  --color-00-black: #2d2a2a;
  --color-00-white: #fff;
  --color-00-gray: #a3a3a3;
  --color-01-pink: #fc858c;
  --color-01-green: #6bcc81;
  --color-01-yellow: #d0d05a;
  --color-01-blue: #93a4db;
  --color-01-brown: #7c674f;
  --color-02-yellow: #efefa8;
  --color-02-green: #d4eaac;
  --color-background-yellow: #f2f2ed;
  --color-background-blue: #edf0f2;
  --color-background-pink: #f2eded;
  --color-background-pink2: #faf6f5;
  --color-background-footer: #faf6f5;
  --color-background-navy: #214571;
  --gradation-01: linear-gradient(90deg, #3769c6 0%, #07378e 100%);
  --gradation-02: linear-gradient(90deg, #07378e 0%, #3769c6 100%);
  --gradation-03: linear-gradient(45deg, #07378e 0%, #3769c6 100%);
  --gradation-04: linear-gradient(0deg, #07378e 0%, #3769c6 100%);
  --font-family-main:
    'ヒラギノ角ゴシック', 'Noto Sans JP', 'Noto Sans', '游ゴシック', 'Hiragino Kaku Gothic ProN',
    'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-family-en: 'brandon-grotesque', sans-serif;
  --content-width-base: 1000px;
  --content-width-slim: 900px;
  --content-width-wide: 1440px;
  --line-height-s: 1.2;
  --line-height-m: 1.5;
  --line-height-l: 1.7;
  --line-height-xl: 1.9;
}

html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-padding-top: 110px;
}

html:has(dialog:not(.c-calendar-filter__dialog)[open]) {
  overflow: hidden;
}

@media print, screen and (width >=768px) {
  html {
    scroll-padding-top: 138px;
  }
}

body {
  margin: 0;

  background-color: var(--color-00-white);
  color: var(--color-00-black);
  font-family: var(--font-family-main);
  font-size: 1.6rem;
  line-height: var(--line-height-l);
}



a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--color-00-black);
  outline-offset: 4px;
  border-radius: 4px;
}

input,
select,
textarea,
legend,
label,
form,
button {
  display: block;
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  appearance: none;
}

button:focus-visible {
  outline: 2px solid var(--color-00-black);
  outline-offset: 4px;
  border-radius: 4px;
}

::placeholder {
  color: var(--color-00-gray);
}

/* visually-hidden */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip-path: inset(50%);
}
p.caution {
	margin-top: 22px;
	font-size: 11px;
	line-height: 1.2;
}    
@media print, screen and (width <=767px) {
  .-pc-only {
    display: none !important;
  }
	p.caution {
	margin-top: 12px;
}   
}

@media print, screen and (width >=768px) {
  .-sp-only {
    display: none !important;
  }
}
body.modal-open {
  overflow: hidden; /* モーダル開いたら背景スクロール防止 */
}
.flex-wrap{
	display: grid;
	grid-template-columns: repeat(4,1fr);
}
@media print, screen and (width <=767px) {
  .flex-wrap{
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}
}


.c-header__body-inner {
	display: grid;
	grid-template-columns: 1fr 300px;
	height: 100%;
	overflow: hidden;
	align-items: flex-start;
	justify-content: flex-start;
}
@media print, screen and (width <=767px) {
  .c-header__body-inner {
	grid-template-columns: 1fr;
}
}
nav.c-header__navigation {
	background: #000;
	color: #fff;
	padding: 44px 20px 20px 44px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
@media print, screen and (width <=767px) {
  nav.c-header__navigation {
	padding: 20px 20px;
	position:absolute;
	z-index:1000;
	top:0;
	right:0;
	transform: translateX(111%);
}
}
nav.c-header__navigation h2{
	width: 88%;
	background:url(/shibuyabeautyjam/images/fragrance/sub-title.webp) no-repeat center/contain;
	aspect-ratio: 13/10;
}
.c-header__body > h2{
	display:none
}
@media print, screen and (width <=767px) {
  .c-header__body > h2{
	position:absolute;
	right: 12px;
	top: 39px;
	z-index: 1000;
	width: 45%;
	background:url(/shibuyabeautyjam/images/fragrance/sub-title.webp) no-repeat center/contain;
	aspect-ratio: 13/10;
	display:block;
}
}
.c-header__navigation-inner {
	display: grid;
	gap: 81px;
	position: relative;
}
.c-header__navigation-inner::before{
	content:"";
	display:block;
	width:calc(100% + 44px);
	height: 1px;
	background:#fff;
	position:absolute;
	top: 57%;
	left: -35px;
}
ul.c-burger-menu__list {
	display: grid;
	gap: 20px;
	position: relative;
}
ul.c-burger-menu__list::before{
	content:"";
	display:block;
	width: 21px;
	aspect-ratio: 20/41;
	background: url(/shibuyabeautyjam/images/fragrance/menu-store.webp) no-repeat center/contain;
	position: absolute;
	top: 50%;
	transform: translate(-100%, -50%);
	left: -8px;
}
ul.c-burger-menu__list:nth-of-type(1)::before{
	aspect-ratio: 21/67;
	background: url(/shibuyabeautyjam/images/fragrance/category-menu.webp) no-repeat center/contain;
}
.c-header__body {
	height: 100vh;
	position: relative;
	overflow: hidden;
}
h1.c-header__logo {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	max-width: 600px;
}
@media screen and (max-width:768px){
	h1.c-header__logo {
	padding: 0 25px;
			bottom: 11vh;
	}
}
h1.c-header__logo a > span,nav.c-header__navigation h2 > span,.c-header__body h2 span{
	width:1px;
	height:1px;
	white-space:nowrap;
	overflow:hidden;
	display:block;
	position:absolute;
	top:0;
	margin:-1px;
}
h1.c-header__logo a{
	width: 90%;
	background:url(/shibuyabeautyjam/images/fragrance/title.webp) no-repeat center/contain;
	aspect-ratio: 103/75;
}

.swiper-slide.mv-images {
	display: flex;
	gap: 20px;
	justify-content: space-around;
}
.swiper-wrapper,.swiper,.swiper-slide{
	height: auto;
}
.swiper-slide.mv-images div:nth-of-type(2) {
	transform: translateY(-50%);
}
.swiper-slide.mv-images div{
}
.swiper-slide.mv-images div img{
	height: 100%;
	object-fit:contain
}
.mv-slider.swiper {
	height: 100%;
}
.mv-slider.swiper .swiper-wrapper{
	transition-timing-function: linear;
}
h1.c-header__logo a span span {
    display: block;
    font-size: 7vw;
    margin-top: 3vw;
}


h1.c-header__logo a {
    font-size: 4vw;
    line-height: 1.2;
}




main.c-main {
	padding: 0;
	/* overflow: hidden; */
}
@media screen and (max-width:768px){
	main.c-main {
	padding: 0;
	}
}
section.campaign {
	padding: 13vh 60px 14vh;
	font-family: "heisei-kaku-gothic-std", sans-serif;
	font-weight: 700;
	font-style: normal;
	background: #000;
	color: #fff;
}
@media screen and (max-width:768px){
	section.campaign {
	padding: 7vh 10vw 8vh;
	}
}
@media screen and (min-width:1500px){
	section.campaign {
	padding: 13vh 10vw 14vh;
	}
}
section.campaign h2{
	font-size: clamp(30px,4.2vw,40px);
}
.campaign-wrap{
	margin: 50px 0 0;
	display:grid;
	grid-template-columns:30% 1fr;
	gap: 8%;
	max-width: 1000px;
	align-items: center;
}
@media screen and (max-width:768px){
	.campaign-wrap{
	margin: 33px auto 0;
	grid-template-columns:1fr;
	gap: 21px;
	justify-content: center;
	align-items: center;
	}
}
.campaign-wrap h3{
	margin-bottom: 14px;
	font-size: clamp(18px,3.2vw,30px);
}
.campaign-wrap h3 > span{
	margin-top:5px;
	display:block;
	font-size: clamp(16px,3.0vw,25px);
}
.campaign-wrap h3 > span span{
	font-size: clamp(13px,2.2vw,20px);
}
.campaign-wrap p{
	font-size: clamp(13px,2.2vw,17px);
	font-family: "heisei-kaku-gothic", sans-serif;
	font-weight: 500;
}
.fragrance-bt {
	margin: 20px auto 0;
	background: #fff;
	border-radius: 100vh;
	box-shadow: 0 2px 0 #000000;
	border: 1px solid #000;
	font-weight: 600;
	font-size: 17px;
	cursor: pointer;
	display: inline-block;
}
.fragrance-bt a{
	display: flex;
	padding: 10px 20px 10px 29px;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	color: #000;
}
@media screen and (max-width:768px){
	.fragrance-bt {
	font-size: 13px;
}
.fragrance-bt a{
	padding: 7px 20px 7px 29px;
}
}
.fragrance-bt a::after{
	content: "";
	display: inline-block;
	height: 1.2vh;
	border-top: 2px solid #000000;
	border-left: 2px solid #000000;
	transform: rotate(135deg);
	aspect-ratio: 1 / 1;
}
.campaign-text {
	display: grid;
}
section.select-wrap {
	padding: 40px 60px 21vh;
	font-family: "heisei-kaku-gothic-std", sans-serif;
	font-weight: 700;
	font-style: normal;
}
@media screen and (max-width:768px){
	section.select-wrap {
	padding: 40px 0 13vh;
	font-family: "heisei-kaku-gothic-std", sans-serif;
	font-weight: 700;
	font-style: normal;
	}
}
@media screen and (min-width:1500px){
	section.select-wrap {
	padding: 40px 10vw 21vh;
	}
}
.select-menu-wrap{
	position:relative
}
.select-menu-wrap::before{
	content:"";
	display:block;
	width: 245px;
	height: 62px;
	border:2px solid;
	position:absolute;
	top: 50%;
	transform:translateY(-50%);
	left: 75px;
	z-index: 10000;
}
@media screen and (max-width:768px){
	.select-menu-wrap{
	padding:0 30px;
	overflow: hidden;
}
	.select-menu-wrap::before{
	content:"";
	display:block;
	width: 165px;
	height: 49px;
	left: 79px;
	top: 45%;
	}
}
.select-menu-wrap::after{
	content:"から選ぶ";
	display:block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 25px;
	font-weight: 600;
	left: 330px;
}
@media screen and (max-width:768px){
	.select-menu-wrap::after{
	left: 260px;
	font-size: clamp(15px,2.2vw,18px)
	}
}
.select-menu.swiper {
	margin:0 0 50px;
	padding: 0 0 0 62px;
	height:20vh;
	position: relative;
	display: flex;
	align-items: center;
	width: 36vw;
	text-align: center;
	max-width: 318px;
}
@media screen and (max-width:768px){
	.select-menu.swiper {
	margin: 0 0 11px;
	padding: 0 0 0 46px;
	height: 18vh;
	width: 200px;
	}
}
.select-menu.swiper .swiper-wrapper {
    height: 100%;
	position:relative
}
.select-menu.swiper::before,.select-menu.swiper::after{
	content:"";
	display:block;
	background: #ffffff;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	width:100%;
	height: 64px;
	position:absolute;
	bottom: 0;
	left:62px;
	z-index:1000
}
@media screen and (max-width:768px){
	.select-menu.swiper::before,.select-menu.swiper::after{
	height: 40px;
	position:absolute;
	bottom: -10px;
	left: 40px;
	z-index:1000;
	width: 90%;
}
}
.select-menu.swiper::after{
	bottom:auto;
	top: 0;
	background: #ffffff;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	height: 60px;
}
.select-menu.swiper .swiper-wrapper .swiper-slide{
	height: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.0;
	font-size: clamp(12px,1.6vw,20px);
	color: #000;
}
.select-menu.swiper .swiper-wrapper .swiper-slide.swiper-slide-active{
	padding: 0;
	font-size: clamp(15px,1.9vw,26px);
	line-height: 1.0;
}
@media screen and (max-width:768px){
  .select-menu.swiper .swiper-wrapper .swiper-slide.swiper-slide-active{
	padding: 0;
	font-size: clamp(18px,1.8vw,24px);
	line-height: 1.0;
	}
	.select-menu.swiper::after{
	top: -12px;
	height: 42px;
}
}
.swiper-button-next,.swiper-button-prev {
	position: absolute;
	left: 0px;
	background: #000;
	aspect-ratio: 1 / 1;
	height: 5.2vh;
	border-radius: 50%;
	width: auto;
}
.swiper-button-next {
	bottom: -16px;
	transform: rotate(90deg) translateX(50%);
}
.swiper-button-prev {
	top: 27px;
	transform: rotate(90deg) translateX(50%);
}
.swiper-button-prev:after, .swiper-button-next:after{
	content: "";
	display: block;
	height: 1.2vh;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(-45deg);
	aspect-ratio: 1/1;
}
.swiper-button-next:after{
	transform: rotate(135deg);
}
@media screen and (max-width:768px){
	.swiper-button-next,.swiper-button-prev {
	height: 4.8vh;
}
	.swiper-button-next {
	bottom: 34px;
	top: auto;
	transform: rotate(90deg) translateX(50%);
}
.swiper-button-prev {
	top: 24px;
	transform: rotate(90deg) translateX(50%);
}
}

ul.tab-wrap {
	display: flex;
	margin: 0 0 50px;
	gap: 10px;
	align-items: flex-end;
}
.tab-wrap .tab {
	width: calc((100% - 30px) / 4);
	text-align: center;
	font-size: clamp(12px,1.6vw,20px);
	line-height: 1.1;
	cursor: pointer;
}
@media screen and (max-width:768px){
	ul.tab-wrap{
		overflow-x:scroll;
		width:100%;
		display:block;
		white-space:nowrap;
		color: #fff;
		padding: 14px 20px;
	}
	ul.tab-wrap::after{
		content:"";
		display: inline-block;
		width: 49px;
		height: 22px;
	}
	.tab-area{
		position:relative
	}
	.tab-area::before{
		content:"";
		display:block;
		position:absolute;
		top:0;
		left:0;
		width:100vw;
		height: 65px;
		background: #000;
		z-index:-1;
	}
	.tab-area::after{
	content:"";
	display:block;
	background: #000000;
	background: linear-gradient(-90deg, rgb(0 0 0) 0%, rgba(255, 255, 255, 0) 100%);
	width: 73px;
	height:55px;
	position:absolute;
	top: 0;
	right: 0;
	z-index:1000
}
	.tab-wrap .tab{
		display:inline-block;
		width:auto;
		margin:0 10px
	}
}
.tab-wrap .tab span{
	font-size:14px;
	display: none;
}
.yosan.tab-wrap .tab span {
    display:inline
}
.tab-wrap .tab.active{
	padding-bottom: 7px;
	font-weight:600;
	border-bottom:2px solid;
	font-size: clamp(18px,2.8vw,30px);
}
.tab-wrap .tab.active span{
	display:inline-block
}

@media screen and (max-width:768px){
	.item-list {
    padding: 0 30px;
}
}
.content-wrap{
  opacity: 0;
	display: none
}
.content-wrap.active{
  opacity: 1;
	display: grid
}
.content-wrap .flex-wrap {
    gap: 50px;
}
@media screen and (max-width:768px){
	.content-wrap .flex-wrap {
    gap: 30px 20px;
}
}
.item-list figure img{
	width:100%
}
button.open-modal {
    display: grid;
    align-items: start;
    gap: 10px;
}
button.open-modal p{
	font-family: "elza-condensed", sans-serif;
	font-weight: 700;
	line-height: 1.0;
	font-size: 20px;
	}



section.shibuya_map-wrap {
    padding: 100px 0;
    background: #000000;
    /* color: #fff; */
}
section.shibuya_map-wrap h2{
	color:#fff;
	text-align: center;
}
section.shibuya_map-wrap > h2{
	text-align:left;
	padding: 0 50px;
	font-size: 37px;
}
.shibuya_map {
    margin: 0px auto 76px;
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 35px;
    max-width: 1000px;
}
@media screen and (max-width:768px){
	.shibuya_map {
    margin: 0px auto 76px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 35px;
    max-width: 1000px;
  }
}
.shibuya_map #map-main {
    opacity: 0.95;
}
section.shibuya_map-wrap .store{
	display: grid;
	grid-template-columns: 55% 1fr;
	gap:5px;
	position: relative;
}
section.shibuya_map-wrap .store::before{
	content:"";
	display:block;
	position:absolute;
	left:0;
	transform: translateX(-96%);
	background: #929292;
	width: 61%;
	height: 100%;
}
section.shibuya_map-wrap .store.-dress-table::before{
	top: 31%;
	-webkit-clip-path: polygon(100% 0%, 100% 37%, 1% 100%);
	clip-path: polygon(100% 0%, 100% 37%, 1% 100%);
	width: 61%;
	height: 100%;
}
section.shibuya_map-wrap .store.-plusq::before{
	top: -12%;
	-webkit-clip-path: polygon(100% 52%, 100% 78%, 1% 0%);
	clip-path: polygon(110% 62%, 99% 91%, 66% 0%);
	width: 159%;
	height: 88%;
}
section.shibuya_map-wrap .store.-shinqs::before{
	top: -33%;
	-webkit-clip-path: polygon(100% 52%, 100% 78%, 4% 42%);
	clip-path: polygon(100% 52%, 100% 78%, -1% 87%);
	width: 24%;
	height: 100%;
}
.store-wrap {
    display: grid;
    gap: 10px;
    width: 100%;
}
.store-image {
    height: 199px;
    width: 163px;
    display: flex;
    justify-content: flex-end;
}
.store-image img{
    height:100%;
    object-fit:contain
}
.store-name {
	padding: 15px 38px 15px 15px;
	font-weight: 600;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #929292;
	gap: 33px 0;
	height: 199px;
	position:relative;
	font-family: "elza-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.shibuya_map .store-name{
	width: 110%;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 86% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.store-name::before{
	conetnt:"";
	display:block;
	width:100%;
	height:100%;
    background: #2ce539;
	position:absolute;
	bottom:-20px;
	right:-20px;
}
section.shibuya_map-wrap .store.active .store-name,section.shibuya_map-wrap .store.active::before{
	background: #ffffff;
}
.store-logo{
	width:100%;
	display: flex;
	justify-content: center;
	height: 76px;
}
.store-name .store-name-text1,.flex-wrap.floor-map-wrap .store-name .store-name-text1,.store-name .store-name-text2,.flex-wrap.floor-map-wrap .store-name .store-name-text2{
	width:auto;
}
span.store-name-text1 {
    font-size: 20px;
	line-height:1.1
}
span.store-name-text2 {
    font-size: clamp(20px,3.5vw,30px);
}
.store-content{
  display: none;
}

.store-content.active {
  display: block;
  padding: 0 0;
}


ul.store-tab-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    height: auto;
    z-index: 1000;
    display: flex;
    width: 100vw;
    transform: translateY(100%);
    transition:0.3s;
}
ul.store-tab-wrap.active{
    transform: translateY(0%);
}
ul.store-tab-wrap .store-name.store-tab {
    padding: 15px 15px 15px 15px;
    background: #000;
    transform: none;
    height: auto;
    align-items: flex-end;
    flex-wrap: nowrap;
    color: #fff;
    border: 1px solid;
    color: #ccc;
    font-size: clamp(11px,1.3vw,16px);
    width: 27%;
}
ul.store-tab-wrap .store-name.store-tab.active{
    transform: none;
    background: #2ce539;
    color: #000;
    font-size: 1.3vw;
    height: auto;
    width: calc((100% - 54%));
}
ul.store-tab-wrap .store-name.store-tab .store-name-text1{
	font-size: 1.3vw;
}
ul.store-tab-wrap .store-name.store-tab.active .store-name-text1{
	font-size: 1.5vw;
}
.store-name.store-tab .store-name-text1, .store-name.store-tab .store-name-text2{
    transform: none;
}
ul.shop-list {
    margin: 25px 0 0;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 7px;
    font-family: "elza-condensed", sans-serif;
    font-weight: 700;
    line-height: 1.0;
    position: sticky;
    top: 50px;
    left: 0;
    background: #000;
    z-index: 4;
}
li.shop-list-item {
    padding: 10px 20px;
    background: #fff;
    border-radius: 100vh;
    box-shadow: 0 2px 0 #fff;
    border: 1px solid #000;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
}
li.shop-list-item.active{
	box-shadow: none;
	background:#2ce539;
	color:#000
}
.flex-wrap.floor-map-wrap {
    padding: 50px 30px 145px;
    grid-template-columns: 30% 1fr;
    align-items: flex-end;
    gap: 50px;
    width: 68%;
    margin: 0 auto;
}
.flex-wrap.floor-map-wrap .store-name{
    background: transparent;
    transform: none;
    flex-direction: column;
    color: #fff;
    height: auto;
}
.flex-wrap.floor-map-wrap .store-name span.store-name-text1{
	width:100%
}
.flex-wrap.floor-map-wrap .store-name span.store-name-text2{
	font-size: 61px;
	width:100%
}


.fragrance-item-list.swiper {
    padding: 0 0 50px;
}
.fragrance-item-list.swiper .swiper-wrapper,.fragrance-item-list.swiper .swiper-slide{
	height: 100%
}
.fragrance-item-list.swiper .fragrance-item{
	opacity:0;
	transform:scale(0.5);
	transition:0.3s
}
.fragrance-item-list.swiper .fragrance-item.swiper-slide-active{
	opacity:1;
	transform:scale(1.0)
}
.fragrance-item-list.swiper .swiper-pagination{
	top:auto;
	bottom: 39px;
	border-radius:0;
	font-family: "elza-condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.fragrance-item-list.swiper .swiper-pagination-bullet {
  color: #000000;
  font-size: 16px;
  height: 24px;
  line-height: 1.5;
  transition: transform .2s linear;
  width: 24px;
  background: #00000000;
  opacity: 1;
}
.fragrance-item-list.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	border-bottom: 2px solid #fff;
	border-radius:0;
	font-size: 31px;
}
.store-content .fragrance-item-list.swiper{
	padding: 30px 30px 100px;
	background: #fff;
	-webkit-clip-path: polygon(67% 4%, 100% 4%, 100% 100%, 48% 100%, 50% 96%, 0% 96%, 0% 0%, 68% 0%);
	clip-path: polygon(67% 4%, 100% 4%, 100% 100%, 48% 100%, 50% 96%, 0% 96%, 0% 0%, 68% 0%);
	z-index:1
}
.store-content .swiper-block{
	position:relative;
	margin: 0 auto;
	width: 89%;
}
.store-content .swiper-block::before,.store-content .swiper-block::after{
	content:"";
	display:block;
	width:70%;
	height: 95%;
	background:#2ce539;
	position:absolute;
	top: -17%;
	right:-15px;
}
.store-content .swiper-block::after{
	top:auto;
	bottom: 0px;
	right:auto;
	left: -9px;
	width: 45%;
	height: 92%;
}
.store-content .swiper-block::before{
	-webkit-clip-path: polygon(66% 13%, 100% 12%, 100% 100%, 0% 100%, 0% 100%, 0% 12%, 0% 12%, 44% 12%, 68% 0%);
	clip-path: polygon(66% 16%, 100% 16%, 100% 100%, 0% 100%, 0% 100%, 0% 16%, 0% 16%, 50% 16%, 65% 0%);
}
section.shibuya_map-wrap .fragrance-item-list.swiper .swiper-slide h2{
	color:#000
}
.fragrance-item-list.swiper .swiper-slide .flex-wrap{
    grid-template-columns: repeat(2, 1fr);
    gap: 61px;
    align-items: center;
}
/* ページネーションの余白(位置) */
.fragrance-item-list.swiper .swiper-pagination-bullet {
  margin: 0 10px 0;
  line-height: 1.0;
  font-size: 22px;
}
.brand-name-area h2 {
    display: flex;
    align-items: flex-end;
    flex-flow: wrap;
    gap: 15px 41px;
    font-size: clamp(13px,1.5vw,17px);
}

span.brandlogo-img{
	display:block;
	width: auto;
	aspect-ratio: auto;
	max-width: 263px;
	transform:translateY(5px);
	height: 46px;
}
div#SABON span.brandlogo-img,div#Santa\ Maria\ Novella span.brandlogo-img{
	height: 80px;
		transform:translateY(10px);
}
span.tenpo {
    display: block;
    width: 100%;
    text-align: left;
    font-size: clamp(14px,1.8vw,20px);
    position: relative;
    color: #696969;
}
span.tenpo::before{
    content:"";
    display:inline-block;
    background:url(/tokyudeptbeauty/images/siteparts/icon_home01.png) no-repeat center/contain;
    width: 22px;
    aspect-ratio: 34/33;
    margin: 0 9px 0 0;
}
span.brand-kana {
    display: block;
    width: calc((100% - 263px) - 30px);
    text-align: left;
}
@media screen and (max-width:768px){
	.brand-name-area h2 {
    gap: 20px;
 }
	span.brandlogo-img {
    width:60%;
    height: 37px;
}
	span.brand-kana{
		width:calc((100% - 60% - 20px))
	}
	div#SABON span.brandlogo-img,div#Santa\ Maria\ Novella span.brandlogo-img{
	height: 80px;
		transform:translateY(10px);
		width:40%
  }
	div#SABON span.brand-kana,div#Santa\ Maria\ Novella span.brand-kana{
		width:calc((100% - 40% - 20px))
	}
}
span.brandlogo-img img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.brand-name-area {
    margin: 17px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}
@media screen and (max-width:768px){
	.brand-name-area {
    margin: 0px auto 20px;
  }
}
p.map-bt {
    padding: 10px 20px;
    border-radius: 100vh;
    background: #fff;
    font-weight: 600;
    border: 2px solid;
}
.fragrance-item .flex-wrap,#modal-body .flex-wrap {
    grid-template-columns: repeat(2,1fr);
    gap: 61px;
    align-items: center;
    color: #fff;
}
@media screen and (max-width:768px){
	.fragrance-item .flex-wrap,#modal-body .flex-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
}
}
.comment-wrap {
    margin:50px 0 0;
    color: #fff;
    display: grid;
    grid-template-columns: 150px 1fr;
    font-size: 13px;
    gap: 50px;
    align-items: center;
}
.coment-text {
    font-size: 18px;
}
.coment-text h3{margin:0 0 10px;font-size: 15px;letter-spacing: 0.1em;}
.comment-wrap p {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.comment-wrap > p::before{
    content:"";
    display:block;
    width:100px;
    height:100px;
    border-radius:50%;
    background: #000000;
}
.comment-wrap .coment-text p {
    position: relative;
    text-align: left;
    display: block;
}
p.item-name {
    font-weight: 600;
    font-size: clamp(17px,1.7vw,20px);
}

p.item-price {
    margin: 20px 0 30px;
    font-size: clamp(17px,1.7vw,20px);
}
@media screen and (max-width:768px){
	p.item-price {
    margin: 5px 0 20px;
}
}
p.item-price span {
    margin: 0 10px 0 0;
    font-size: 12px;
    border: 1px solid;
    padding: 0 5px;
}
p.item-price span:nth-of-type(n+2) {
    margin: 0 10px 0 10px;
   
}
p.item-explanation{
    font-size: clamp(14px,1.5vw,17px);
    line-height: 1.4;
}


div#modal {
	opacity: 0;
	display: none;
}
div#modal[aria-hidden="false"] {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #000000b5;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 1;
	z-index: 100000;
}
div#modal .modal-content {
	padding: 31px 19px 41px;
	width: 88%;
	max-height: 81vh;
	max-width: 1000px;
	CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
	background: #fff;
}
@media screen and (max-width:768px){
	div#modal .modal-content{
		padding: 11px 19px 60px;
	}
}
div#modal button.close {
    position: sticky;
    top: 5px;
    left: 1%;
    z-index: 100;
    height: 48px;
}
div#modal button.close::before,button.close::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: #000000;
    transform: rotate(25deg);
}
button.close::after {
    transform: rotate(-25deg);
}
div#modal .modal-content #modal-body {
    z-index: 0;
    max-width: 700px;
    margin: 0 auto;
    overflow-y: scroll;
    height: 62vh;
}
@media screen and (max-width:768px){
	div#modal .modal-content #modal-body {
    height: 65vh;
 }
}
div#modal .modal-content #modal-body figure{
	aspect-ratio:1/1;
	border: 1px solid #ccc;
}
div#modal .modal-content #modal-body figure img{
	height:100%;
	object-fit:contain
}
#modal-body .comment-wrap,#modal-body .flex-wrap{
	color:#000
}
span.brandlogo-name span {
    display: block;
}

.c-footer__bottom {
    padding: 0 0 50px;
    background: #000;
    color: #fff;
    display: grid;
    justify-content: center;
}
.c-footer__bottom .fragrance-bt{
	margin: 0 auto 76px;
}
@media screen and (max-width:768px){
	.c-footer__bottom {
    padding: 30px 20px 30px;
  }
}
#bottom-nav {
  padding: 10px 0 10px 35px;
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  z-index: 10017;
  display:flex;
  justify-content: space-between;
  align-items: center;
  background: #000000a3;
  transform: translateY(-113%);
  transition:0.3s
}
#bottom-nav.is-active {
  transform: translateY(0);
}
p.bottom-title {
    height: 34px;
}

p.bottom-title a {
    display: block;
    height: 100%;
}

p.bottom-title a img,p.bottom-sub-title img {
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:768px){
	#bottom-nav{
		  padding: 10px 0 10px 15px;
		gap:20px
	}
	p.bottom-title {
    height: 20px;
}
	p.bottom-sub-title {
    height: 20px;
}
}


.p-shop__block {
  margin-bottom: 100px;
  max-width: 800px;
}
.p-shop__block:last-child {
  margin-bottom: 0;
}
@media screen and (min-width:1200px){
	.p-shop__block {
	width: calc((100% - 10%)/ 2);
	}
}
.p-shop__floor {
  font-optical-sizing: auto;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.p-shop__wrap {
  margin-bottom: 50px;
}
.p-shop__wrap figure {
  margin-bottom: 25px;
}
.p-shop__wrap figure a {
  display: block;
  overflow: hidden;
}
.p-shop__brand h3{
	margin-bottom:20px
}
@media (hover: hover) and (pointer: fine) {
  .p-shop__wrap figure a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.p-shop__wrap figure img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.p-shop__infoFig {
  margin-bottom: 40px;
  -webkit-filter: invert(1);
  filter: invert(1);
}
.p-shop__infoFig img {
  margin: 0 auto;
  max-width: 170px;
}
.p-shop__infoTxt {
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 2.0714285714;
  margin-bottom: 20px;
}
.p-shop__infoLink a {
  color: var(--color-00_black);
  letter-spacing: 0.12em;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-shop__infoLink a {
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  .p-shop__infoLink a:hover {
    opacity: 0.7;
  }
}
@media print, screen and (min-width:768px) {
  .p-shop {
    max-width: 1140px;
  }
  .p-shop .c-title1 {
    margin-bottom: 100px;
  }
  .p-shop__floor {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .p-shop__wrap {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
  }
	@media screen and (min-width:1200px){
	.p-shop__wrap {
	display:block;
	flex-wrap: wrap;
	gap: 50px;
	}
}
  .p-shop__wrap figure {
    width: 61.320754717%;
  }
  .p-shop__info {
    margin-top: 40px;
    width: 35.8490566038%;
  }
		@media screen and (min-width:1200px){
	.p-shop__wrap figure {
    width: 100%;
  }
  .p-shop__info {
    width: 100%;
  }
}
  .p-shop__infoFig {
    margin-bottom: 45px;
  }
  .p-shop__infoFig img {
    max-width: 100%;
    width: unset;
  }
  .p-shop__infoTxt {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .p-shop__infoLink a {
    font-size: 17px;
  }
  .p-shop #plusQ .p-shop__infoFig img {
    width: 260px;
  }
  .p-shop #ShinQs .p-shop__infoFig img {
    width: 220px;
  }
  .p-shop #SHIBUYA109 .p-shop__infoFig img {
    width: 140px;
  }
  .p-shop__brand h3 {
    font-size: 17px;
    margin-bottom: 50px;
  }
  .p-shop__brand h3::before {
    font-size: 36px;
  }
  .p-shop__brand ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 28px 20px;
  }
  .p-shop__brand ul li {
    margin-bottom: 0;
    width: calc((100% - 20px) / 2);
  }
  .p-shop__brand ul li a dl dt {
    font-size: 23px;
    font-weight: 500;
  }
  .p-shop__brand ul li a dl dd {
    font-size: 15px;
    font-weight: 500;
  }
}
section.shibuya_map-wrap {
    padding: 100px 10vw 20px;
    background: #000000;
    color: #fff;
}
@media screen and (min-width:1500px){
	section.shibuya_map-wrap {
	padding: 100px 10vw 21vh;
	}
}
@media screen and (min-width:1200px){
	section.shibuya_map-wrap {
	display:flex;
	flex-wrap: wrap;
	gap: 10%;
	}
}
section.shibuya_map-wrap > h2{
	text-align:left;
	padding: 0 0 30px;
	font-size: clamp(22px,3.5vw,30px);
	letter-spacing:0.05em;
	width:100%
}
section.shibuya_map-wrap > h2 span{
	font-size: clamp(28px,4.5vw,40px);
}
@media screen and (max-width:768px){
	section.shibuya_map-wrap {
    padding: 60px 30px 20px;
  }
}

.c-header__navigation-inner::before{
  display:none
}



