





@charset "UTF-8";
/* ==========================================================================
Base
========================================================================== */
/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }

}
:where(body) {
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
}

: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(div) {
  box-sizing: border-box
}
: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) {
  block-size: auto; /* アスペクト比を保持 */
  max-inline-size: 100%; /* images should never overflow past the available space */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  block-size: 0;
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  overflow: visible;
}

: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)) {
  border: 0 !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

:root {
  --line-height-l: 2;
  --line-height-m: 1.75;
  --line-height-s: 1.5;
  --line-height-xs: 1.3;
  --letter-spacing-l: 0.12em;
  --letter-spacing-m: 0.08em;
  --letter-spacing-s: 0em;
}

/* Base
----------------------------------------------------------------- */
html {
  font-size: 62.5%;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-l);
	color: #585858
}

::-moz-selection {
  color: var(--color-01-yellow);
}

:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a):hover {
  text-decoration: none;
}
:where(ol),
:where(ul),
:where(dl) {
  list-style: none;
}

:where(em),




:where(i) {
  font-style: normal;
}

:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  font-size: 1.6rem;
  font-weight: 700;
}

:where(p) {
  font-size: 14px;
  font-weight: 700;
  line-height: var(--line-height-m);
}
@media print, screen and (min-width:768px) {
  :where(p) {
    font-size: 18px;
  }
}
:where(p).-center {
  text-align: center;
}

:where(em) {
  font-style: normal;
  font-weight: 500;
}

:where(img) {
  display: block;
  height: auto;
  width: 100%;
}

:where(button) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

:where(input) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:where(textarea) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media print, screen and (max-width:767px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width:768px) {
  .sp {
    display: none !important;
  }
}
.p-home .l-header{
  position:absolute
}
.l-main{
	padding:0
}
#roirom-collabo{
	width: 100%;
	/* background: url(https://www.tokyu-dept.co.jp/shibuyabeautyjam/roirom/bg.webp) repeat-y top center/100% #dcecf9; */
	overflow: hidden;
}
.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://www.tokyu-dept.co.jp/shibuyabeautyjam/roirom/bg.webp) repeat-y top center / 100% #dcecf9;
    z-index: -5;
}

.main-wrap {
    padding: 100px 0 0;
    position: relative;
    z-index: -1;
    box-shadow: inset 0 26px 23px #dff1faeb;
}
#roirom-collabo .roiromcolabo-title{
	position: relative;
	background: #DFF6FF;
	background: #DAF1FE;
	background: radial-gradient(circle, rgba(218, 241, 254, 1) 0%, rgba(223, 246, 255, 1) 41%, rgba(228, 245, 255, 1) 71%, rgba(225, 243, 255, 1) 100%);
	height: 100vh;
}
    #roirom-collabo .roiromcolabo-title::before {
        content: "";
        display: block;
        width: 100%;
        height: 16px;
        position: absolute;
        bottom: -11px;
        left: 0;
        box-shadow: 0 -12px 8px #dff1faeb;
        z-index: 10;
        background: #dff1fa;
    }
@media screen and (max-width:500px){
#roirom-collabo .roiromcolabo-title::before{
	content:"";
	display:block;
	width:100%;
	height: 17px;
	position:absolute;
	bottom: -4px;
	left:0;
	box-shadow: 0 -12px 15px #dcecf9;
	z-index: 10;
	background: #dcecf9;
}
}

#roirom-collabo .roiromcolabo-title .kv-text{
	position: absolute;
	top: 50%;
	right: 0%;
	transform: translate(0,-50%);
	width: 44%;
	z-index: 10000;
}
#roirom-collabo h3 span,#roirom-collabo h2 span{
	width:1px;
	height:1px;
	overflow:hidden;
	display: block;
}
@media screen and (max-width: 1000px) and (min-width: 769px){
	#roirom-collabo .roiromcolabo-title {
		height: auto;
		display: flex;
		flex-direction: column-reverse;
		box-shadow: none;
	}
	#roirom-collabo .roiromcolabo-title picture {
		box-shadow: 0 19px 56px #daecf6;
		aspect-ratio: 700/1049;
	}
	#roirom-collabo .roiromcolabo-title picture img{
		object-position: left 5% top 0!important;
	}
	.main-wrap {
		padding: 150px 0 0;
		box-shadow: inset 0 -23px 23px #dff1faeb;
	}
	#roirom-collabo .roiromcolabo-title .kv-text{
	position: absolute;
	top: auto;
	bottom: 16vh;
	right: 50%;
	transform: translate(50%,0%);
	width: 59%;
}
}
#roirom-collabo .roiromcolabo-title .roiromcolabo-title_logo{
	max-width: 500px;
	width: 92%;
	margin: 0 auto 50px;
	position: relative;
}
#roirom-collabo .roiromcolabo-title picture{
	display: block;
	height: 100%;
	position: relative;
}
#roirom-collabo .roiromcolabo-title picture img{
	height: 100%;
	object-fit: cover;
	object-position: left top;
}
#roirom-collabo .roiromcolabo-title .lead{
	max-width: 603px;
	line-height: 2.9;
	text-align: center;
	font-size: 40px;
	letter-spacing: 0.1em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	width: 80%;
	margin: 0 auto;
	min-width: 460px;
	position: relative;
}
#roirom-collabo .roiromcolabo-title .lead::before{
	content:"";
	display:block;
	background:url(https://www.tokyu-dept.co.jp/shibuyabeautyjam/roirom/lead-bg.webp) no-repeat center/100%;
	width: 740px;
	aspect-ratio: 655/494;
	position:absolute;
	top: 47%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
#roirom-collabo .roiromcolabo-title .lead .roirom-bt{
	margin: 20px auto 0;
	position: relative;
}
#roirom-collabo .roiromcolabo-title .lead .roirom-bt a{
	padding: 13px 8px 13px;
	line-height: 1.0;
}
.roirom-bt {
	margin: 37px auto 0;
	border-radius: 100vh;
	overflow: hidden;
	max-width: 323px;
	position: relative;
	font-size: 20px;
	letter-spacing: 0.1em;
	transition: 0.3s;
}
.roirom-bt span{
	font-size:15px;
	margin-right:5px;
}
.roirom-bt.fivefloor {
	margin: 10px auto 0;
}
.roirom-bt a{
	cursor: pointer;
	padding: 9px 8px 8px;
	background: #6b6b6b;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 0;
	position: relative;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.roirom-bt a:hover {
    text-decoration: none;
    background: #939393;
}

.roirom-bt:hover {
    transform: translateY(-5px);
}
.roirom-section{
	margin: 200px 0;
	/* width: 100%; */
}
.roirom-section .section-lead{
	margin: 0 auto 86px;
	padding: 0 20px;
	text-align: center;
	max-width: 1000px;
}
.roirom-section .section-lead .kome{
	font-size:13px;
	text-decoration:underline;
}
.roirom-section .section-lead h2{
	margin: 0 0 44px;
	font-size:20px;
	position: relative;
	height: 180px;
}
.roirom-section .section-lead h2 img{
	height:100%;
	object-fit:contain
}
.roirom-section .section-lead p{
	font-size:18px;
	letter-spacing:0.1em;
	line-height:2.2
}
@media screen and (max-width:768px){
	#roirom-collabo .roiromcolabo-title{
		height:auto;
	}
	#roirom-collabo .roiromcolabo-title .kv-text{
		right:50%;
		transform: translate(50%, 0);
		top: auto;
		width: 78%;
		bottom: 0;
	}
	#roirom-collabo .roiromcolabo-title .roiromcolabo-title_logo{
		width: 100%;
		margin: 0 auto 20px;
	}

	#roirom-collabo .roiromcolabo-title picture img{
		height: 100%;
		object-fit: contain;
	}
	#roirom-collabo .roiromcolabo-title .lead{
		max-width:500px;
		font-size: 22px;
		width: 100%;
		min-width: auto;
	}
	.roirom-bt {
		margin: 21px auto 0;
		max-width: 200px;
		font-size: 14px;
	}
	.roirom-section{
		margin: 100px 0;
		/* width: 100%; */
	}
	.roirom-section .section-lead{
		margin: 0 auto 42px;
	}
	.roirom-section .section-lead h2{
		margin: 0 0 31px;
		font-size:20px;
		position: relative;
		height: 120px;
	}
	.roirom-section .section-lead h2 img{
		height:100%;
		object-fit:contain
	}
	.roirom-section .section-lead p{
		font-size: 14px;
		max-width: 80%;
		margin: 0 auto;
	}
	#roirom-collabo .roiromcolabo-title .lead::before{
	width: 101vw;
	top: 30%;
	}
}



/*購入者限定プレゼント*/
section.roirom-section.present-section {
	margin: 0 0 100px;
}
.present-wrap{
	max-width: 1000px;
	margin: 0 auto;
	width: 92%;
	display: flex;
	gap: 100px;
}
li.present {
    width: calc((100% - 100px) / 2);
}
.present-wrap li h3{
	margin: 0 0 34px;
	letter-spacing: 0.1em;
}
.present-wrap li h3::before{
	content:"";
	display:block;
	width:100%;
	height:25px;
	background:url(/shibuyabeautyjam/roirom/shopper-title.webp) no-repeat center/contain;
}
.present-wrap li:nth-of-type(2) h3::before{
	background:url(/shibuyabeautyjam/roirom/stecker-title.webp) no-repeat center/contain;
}
.swiper.present-slider{
	width: 100%;
}
.swiper,.swiper-wrapper,.swiper-slide{
	height: auto;
}
.swiper-slide figure,.swiper-slide figure img{
	height: auto;
	width: 100%
}
@media screen and (max-width:768px){
	.present-wrap{
	width: 80%;
	flex-wrap:wrap;
	gap: 50px;
  }
  .present-wrap li.present {
    width: 100%
  }
  .present-wrap li h3{
	margin: 0 0 34px;
	padding: 0 0 5px;
	font-size: 13px;
  }
}
/*対象商品*/
.present-item{
	margin: 200px auto;
	width: 90%;
}
.present-item h3,.insta-campaign h3{
	margin: 0 0 31px;
	text-align: center;
	height: 44px;
}
.present-item h3 img,.insta-campaign h3 img{
	height:100%;
	object-fit:contain;
}
.present-item > p{
	text-align: center;
    position: relative;
    z-index: 10;
}
.present-item .floor-block{
	display: flex;
	align-items: center;
	gap:10%;
	position: relative;
	width: 100%;
}
.present-item .floor-block.sixfloor{
	margin:100px 0 200px;
}
.present-item section.floor-block.sixfloor.sapporo{
	margin:100px 0 0;
}
.present-item .floor-block h4{
	position: absolute;
	top: 0%;
	left: 0%;
	background: url(https://www.tokyu-dept.co.jp/shibuyabeautyjam/roirom/6f.webp) no-repeat center/100%;
	width: 100px;
	aspect-ratio: 33/37;
	z-index: 100;
	font-size: 0;
	opacity: 0.6;
}
.present-item .floor-block h4.floor-title.sapporo{
	background: url(https://www.tokyu-dept.co.jp/shibuyabeautyjam/roirom/1f.webp) no-repeat center/100%;
}
.present-item .floor-block.fivefloor h4{
	background: url(https://www.tokyu-dept.co.jp/shibuyabeautyjam/roirom/5f.webp) no-repeat center/100%;
	top: -9%;
}
@media screen and (max-width: 780px){
	.present-item{
		margin: 100px auto;
		width: 90%;
		}
		.present-item h3,.insta-campaign h3{
		margin: 0 0 31px;
		text-align: center;
		height: 24px;
		}
		.present-item h3 img,.insta-campaign h3 img{
		height:100%;
		object-fit:contain;
	}
	.present-item > p{
		text-align: center;
		max-width: 80%;
		margin: 0 auto;
	}
	.present-item .floor-block{
		flex-wrap:wrap;
	}
	.present-item .floor-block.sixfloor{
		margin: 50px 0 100px;
	}
	.present-item .floor-block h4{
		top: 5%;
		left: -1%;
		width: 73px;
	}
	.present-item .floor-block.fivefloor h4{
		top: -7%;
	}
}


/* メインスライダー */
.bg-div{
	width: 60%;
	max-width: 800px;
	position: relative;		
}
.bg-div::before{
	content:"";
	display:block;
	background:url(https://www.tokyu-dept.co.jp/shibuyabeautyjam/roirom/cosme-bg.webp) no-repeat center/100%;
	width: 133%;
	aspect-ratio: 655/494;
	position:absolute;
	top: 60%;
	left:50%;
	transform: translate(-50%,-50%);
	visibility: visible;
}
.cosme-swiper-main .swiper-wrapper{
	padding: 20px 0;
}
.cosme-swiper-main .swiper-slide{
	display: grid;
	grid-template-columns: 1fr 250px ;
	align-items: flex-end;
	gap:10%;
}

.cosme-swiper-main .swiper-slide figure{
	width: 80%;
	margin: 0 auto;
	height: 400px;
	transform: rotate(-3deg);
	animation:fuwa 5.5s infinite;
}
@keyframes fuwa{
	0%,100%{
		transform: rotate(-3deg) translateY(20px) translateX(-5px);
	}
	50%{
		transform: rotate(1deg) translateY(0);
	}
}
.cosme-swiper-main .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
}
.cosme-swiper-main .swiper-slide .text-wrap .brand-name{
	margin: 0 0 50px;
	font-size:33px;
	position: relative;
	line-height: 1.2;
}
.cosme-swiper-main .swiper-slide .text-wrap .brand-name > span{
	font-size: 15px;
	white-space: nowrap;
	display: block;
}
.cosme-swiper-main .swiper-slide .text-wrap .brand-name > span > span{
	font-size: 20px;
}
.cosme-swiper-main .swiper-slide .text-wrap .item-text{
	position: relative;
	line-height: 1.5;
	font-size: 17px;
}
.cosme-swiper-main .swiper-slide .text-wrap .item-text::before{
	content: "プレゼント条件";
	display: inline-block;
	width: auto;
	height: auto;
	position: absolute;
	top:0;
	left: 0;
	transform: translateY(-106%);
	font-size: 13px;
	border: 1px solid;
	padding: 3px 10px 5px;
	letter-spacing: 0.1em;
	border-radius: 5px;
	line-height: 1.0;
}
.cosme-swiper-main .swiper-slide .text-wrap .item-text.oneitem::before{
	content: "プレゼント対象商品";
	display: inline-block;
}
.cosme-swiper-main .swiper-slide .text-wrap .item-text span{
	font-size: 20px;
}
.cosme-swiper-main .swiper-slide .text-wrap .item-text span.jamsection{
	display:block;
	font-size: 14px;
	border:1px solid;
	padding:25px 5px 5px;
	position:relative;
	width: calc((100% - 1px));
}
.cosme-swiper-main .swiper-slide .text-wrap .item-text span.jamsection::before{
	content: "セット内容";
	display: inline-block;
	width: auto;
	height: auto;
	position: absolute;
	top:2px;
	left: 5px;
	font-size: 11px;
	padding: 3px 3px 5px;
	letter-spacing: 0.1em;
	line-height: 1.0;
	border-bottom:1px dashed
}
.cosme-swiper-main .swiper-slide .text-wrap .item-price span{
	font-size:25px;
}
@media screen and (max-width:768px){
	.bg-div{
		width: 100%;
		max-width: 800px;
		position: relative;		
	}
	.bg-div::before{
		width: 147%;
		top: 68%;
	}
	.cosme-swiper-main{
		margin-bottom:50px
	}
	.cosme-swiper-main .swiper-wrapper{
		padding: 20px 0 0;
	}
	.cosme-swiper-main .swiper-slide{
		display: block;
	}
	.cosme-swiper-main .swiper-slide figure{
		width: 68%;
		margin: 0 auto;
		height: 42vh;
		max-height: 46%;
	}
		.cosme-swiper-main .swiper-slide img {
		object-position: center bottom;
	}
	.cosme-swiper-main .swiper-slide .text-wrap{
		max-width: 400px;
		margin: 51px auto 0;
		width:90%
	}
	.cosme-swiper-main .swiper-slide .text-wrap .brand-name{
		margin: 0 0 34px;
		font-size:20px;
	}
	.cosme-swiper-main .swiper-slide .text-wrap .brand-name > span{
		font-size: 11px;
		white-space: wrap;
	}
	.cosme-swiper-main .swiper-slide .text-wrap .brand-name > span > span{
		font-size: 18px;
	}
	.cosme-swiper-main .swiper-slide .text-wrap .item-text::before{
		font-size: 11px;
		border: 1px solid;
		padding: 3px 5px 5px;
	}
	.cosme-swiper-main .swiper-slide .text-wrap .item-price span{
		font-size:20px;
	}
}
/* サムネイルスライダー */
.cosme-swiper-thumb {
	width: 25%;
	max-width: 800px;
}
.cosme-swiper-thumb .swiper-wrapper{
	flex-wrap: wrap;
	gap:20px 10px;
	padding: 5px 10px 7px 5px;
	box-sizing: border-box;
}
.cosme-swiper-thumb .swiper-slide {
	cursor: pointer;
	width: calc((100% - 30px) / 4)!important;
	aspect-ratio: 1/1.5;
	margin: 0!important;
	padding: 8px 10px;
	background: #ffffff6e;
	border-radius: 5px;
	box-shadow: 0 0 5px #00000038;
	transition: 0.3s;
}
.cosme-swiper-thumb .swiper-slide-thumb-active {
	box-shadow: 0 0 5px #ffffff;
	transform: scale(1.05) rotate(5deg);
	background: #ffffffe0;
}
.cosme-swiper-thumb .swiper-slide figure{
	height: 100%;
	width: 100%
}
.cosme-swiper-main .swiper-slide:nth-of-type(5) figure,.cosme-swiper-main .swiper-slide:nth-of-type(7) figure,.present-item section.floor-block.sixfloor.sapporo .cosme-swiper-main .swiper-slide:nth-of-type(2) figure,.present-item section.floor-block.sixfloor.sapporo .swiper-slide:nth-of-type(3) figure{
	max-width:300px
}
.present-item section.floor-block.sixfloor.sapporo .swiper-slide:nth-of-type(5) figure,.present-item section.floor-block.sixfloor.sapporo .swiper-slide:nth-of-type(7) figure{
	max-width:100%
}
.cosme-swiper-thumb .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media screen and (max-width:768px){
	.cosme-swiper-thumb {
		width: 100%;
	}
	.cosme-swiper-thumb .swiper-wrapper{
		gap:10px 10px;
		padding: 5px 10px 7px 5px;
	}
	.cosme-swiper-thumb .swiper-slide {
		width: calc((100% - 40px) / 5)!important;
		aspect-ratio: 1/1.3;
		padding: 8px 10px;
	}
}
@media screen and (max-width:1100px) and (min-width:768px){
	.present-item .floor-block{
    gap:30px
  }
  .bg-div{
	  width:calc((100% - 30px) - 25%)
  }
	.cosme-swiper-main .swiper-slide{
	gap:5%;
  }
}


/* インスタ */
.roirom-section.instagram{
	margin: 300px 0 0;
}
.roirom-section.instagram .section-lead picture{
	margin-top:50px;
	display:block;
}
.roirom-section.instagram ul.step-wrap {
    width: 90%;
    margin: 0 auto;
    /* border-radius: 10vh; */
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.roirom-section.instagram ul.step-wrap .step {
    padding: 27px 33px;
    height: 253px;
    background: #a7a7a7;
    position: relative;
    z-index: 4;
    border-radius: 7vh;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(2) {
    background: #c5c5c5;
    z-index: 3;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(3) {
    background: #e1e1e1;
    z-index: 2;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(4) {
    background: #ffffff;
    z-index: 1;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(2) span{
	display:block;
	font-size:13px;
	margin:10px auto 0;
	padding:10px 20px;
	border:1px solid;
	max-width:500px;
	background: #ffffff8a;
}
.roirom-section.instagram ul.step-wrap .step::before{
  content:"";
  display:block;
  position:absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translate(50%, 54%) rotate(90deg);
  border-width: 150px 0 150px 30px;
  border-color: transparent transparent transparent #a7a7a7;
  z-index: 1000;
  border-radius: 60px;
}

.roirom-section.instagram ul.step-wrap .step:nth-of-type(3)::before{
  border-color: transparent transparent transparent #e1e1e1;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(2)::before{
  border-color: transparent transparent transparent #c5c5c5;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(4)::before{
	display:none
}
ul.step-wrap .step p{
	font-size: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	color: #333;
	letter-spacing: 0.05em;
	line-height: 1.2;
}
ul.step-wrap .step h3{
	margin: 0;
	text-align: center;
	height: 55%;
	width: auto;
	position: absolute;
	top: 46%;
	left: 8%;
	transform: translate(-50%,-50%);
	padding: 10px;
	/* background: #ffffff; */
	opacity: 0.6;
}
ul.step-wrap .step h3 img{
	height:100%;
	object-fit:contain
}
ul.step-wrap .step h3 span{
	font-size: 100px;
	letter-spacing: -0.05em;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(3) p span {
	border: 2px solid;
	padding: 3px;
	margin: 0 3px;
	color: #3772e3;
	white-space: nowrap;
}

.roirom-section.instagram ul.step-wrap .step:nth-of-type(3) p {
	line-height: 2.2;
}

.roirom-section.instagram ul.step-wrap .step:nth-of-type(4) p span {
	font-size: 29px;
}
.roirom-section.instagram ul.step-wrap .step:nth-of-type(4) p span.kome {
	font-size: 11px;
}
.roirom-section.instagram ul.step-wrap .step a {
	text-decoration: underline;
	color: #273ef1;
}
@media screen and (max-width:768px){
	.roirom-section.instagram{
		margin: 100px 0 0;
	}
	.roirom-section.instagram .section-lead picture{
		margin-top:50px;
	}
	.roirom-section.instagram ul.step-wrap {
			width: 90%;
			gap: 22px;
	}
	.roirom-section.instagram ul.step-wrap .step {
			padding: 27px 21px;
			height: auto;
			border-radius: 3vh;
	}
	.roirom-section.instagram ul.step-wrap .step::before{
		border-width: 150px 0 150px 30px;
	}
	ul.step-wrap .step p{
		font-size: 14px;
		top: 0;
		left: 0;
		transform: none;
		letter-spacing: 0.05em;
		position: relative;
	}
	ul.step-wrap .step h3{
		height: 80px;
		top: 0;
		left: 0;
		transform: none;
		padding: 0;
		position: relative;
		margin: 0 0 20px;
	}
	.roirom-section.instagram ul.step-wrap .step:nth-of-type(3) p span{
		margin: 5px 3px;
		display: block;
	}
	.roirom-section.instagram ul.step-wrap .step:nth-of-type(4) p span {
		font-size: 29px;
	}
}

/* 応募規約 */
.modal {
	position: relative;
	z-index: 1000000;
}
div#modal-wrap.active .modal-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #fff;
	color: #000;
	height: 80vh;
	width: 80vw;
	z-index: 1000;
	padding: 59px 30px 30px;
	box-sizing: border-box;
	max-width: 600px;
}
.modal .modal-bt{
	margin: 20px auto 0;
	border-radius: 100vh;
	max-width: 300px;
	cursor: pointer;
	padding: 9px 8px 8px;
	background: #6b6b6b;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 0;
	position: relative;
}
div#modal-wrap {
	opacity: 0;
	display: none;
}
div#modal-wrap.active {
	animation: fade 0.3s forwards;
	opacity: 1;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height:100vh;
	width: 100vw;
	background: #00000078;
	z-index: 10000000;
}
@keyframes fade{
	0%{
			opacity:0
	}
	100%{
			opacity:1;
			display:block
	}
}
button.js-modal-close {
    background: transparent;
    border: none;
    position: relative;
    width: 36px;
    height: 31px;
    position: absolute;
    top: 10px;
    left: 10px;
}
button.js-modal-close::before,button.js-modal-close::after {
    content: "";
    display: block;
    width: 100%;
    transform: rotate(45deg);
    height: 2px;
    background: #000;
}
button.js-modal-close::after{
    transform: rotate(135deg) translateY(1px);
}
.p-top-terms__inner {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow-y: scroll;
  padding: 50px 30px;
  position: relative;
  z-index: 11;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__inner {
    margin: 0 auto;
    padding: 100px 50px;
    width: 820px;
  }
}
.p-top-terms__content {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  width: 100%;
}
.p-top-terms__content h2 {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content h2 {
    font-size: 18px;
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content h3 {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 20px 0 40px 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content h3 {
    font-size: 18px;
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content h4 {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 30px 0 0 0;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content h4 {
    font-size: 15px;
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 20px 0 0 0;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content p {
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content ul {
  margin: 20px 0 0 0;
}
.p-top-terms__content ul li {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  list-style-type: none;
  margin-bottom: 5px;
  margin-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content ul li {
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content ol {
  margin: 20px 0 0 0;
}
.p-top-terms__content ol li {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  list-style-type: none;
  margin-bottom: 5px;
  margin-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .p-top-terms__content ol li {
    letter-spacing: 0.3em;
  }
}
.p-top-terms__content ol li::first-letter {
  margin-left: -1em;
}
.p-top-terms__content a {
  text-decoration: underline;
}



.collabocafe-section .balloon{
	margin: 0 auto;
	width: 80%;
	max-width: 400px;
}
.collabocafe-section .text-wrap > p {
	font-size: 18px;
	line-height: 2.2em;
}
.collabocafe-section .text-wrap > p.menu-text{
  color: #111;
  line-height: 2.2em;
  backdrop-filter: blur(2px); /* 背景を少しぼかす */
  border-radius: 8px;
  overflow: hidden;
  letter-spacing: 0.1em;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.collabocafe-section .text-wrap > p.menu-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to bottom, #00000000 0, #00000000 calc(2.2em - 1px), rgb(0 0 0 / 64%) calc(2.2em - 1px), rgb(0 0 0 / 65%) calc(2.2em));
  pointer-events: none;
  z-index: 1;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.collabocafe-section .text-wrap > p span.ex {
	font-size: 25px;
}
.kome {
	font-size: 13px;
}
.collabocafe-section .info {
	margin: 30px auto 0;
	padding: 42px;
	border: double;
	width: 80%;
	background: #ffffffb5;
	max-width: 800px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.collabocafe-section .info > div {
	display: grid;
	grid-template-columns: 50px 1fr;
	align-items: center;
	gap: 30px;
}
.collabocafe-section .info > div.roirom-bt{
	display:block
}
.collabocafe-section .info > div:first-of-type{
	margin: 0 0 20px;
}
.collabocafe-section .info p.place {
    text-align: left;
}
.collabocafe-section .info > div > span {
	font-weight: 600;
	border-right: 2px solid;
	padding: 0 10px 0 0;
	font-size: 16px;
	letter-spacing: 0.1em;
}
#roirom-collabo p.date {
  margin: 9px 0 11px 5px;
  font-size: 35px;
  display: flex;
  align-items: flex-end;
  line-height: 1.0;
}
#roirom-collabo p.date span.youbi{
  background:#1eab39;
  color:#fff
}
#roirom-collabo p.date span.youbi{
  background:#f15d1c;
  color:#fff
}
#roirom-collabo p.date span.md{
  margin: 0 2px 3px;
  font-size: 15px;
  align-self: flex-end;
}
#roirom-collabo p.date span.youbi {
  margin-left: 2px;
  font-size: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background:#fff;
  color: #585858;
  /* border: 1px solid; */
}
.collabocafe{
	display: grid;
	grid-template-columns:40% 1fr;
	gap:5%;
	align-items: center;
	width: 80%;
	margin: 0 auto;
	max-width: 900px;
}
.collabocafe .menu-info {
	margin: 0 0 20px;
	font-size: 22px;
}
.collabocafe .menu-info p.brand-name {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.collabocafe .menu-info p.item-name {
	font-size: 25px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.collabocafe .menu-info p.item-name .kome {
    font-family: "Noto Sans JP", sans-serif;
	display:block;
	margin-top:-5px;
}
.collabocafe .menu-info p.price {
	font-size: 23px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.collabocafe .menu-info p.price span{
	font-size: 28px;
}
@media screen and (max-width:768px){
	.collabocafe-section .balloon{
	margin: 0 auto;
	width: 80%;
	max-width: 400px;
}
.collabocafe-section .text-wrap > p {
	font-size: 13px;
}
.collabocafe-section .text-wrap > p.menu-text{
  color: #111;
  line-height: 2.2em;
  backdrop-filter: blur(2px); /* 背景を少しぼかす */
  border-radius: 8px;
  overflow: hidden;
  letter-spacing: 0.1em;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.collabocafe-section .text-wrap > p.menu-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to bottom, #00000000 0, #00000000 calc(2.2em - 1px), rgb(0 0 0 / 64%) calc(2.2em - 1px), rgb(0 0 0 / 65%) calc(2.2em));
  pointer-events: none;
  z-index: 1;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.collabocafe-section .text-wrap > p span.ex {
	font-size: 16px;
}
.kome {
	font-size: 11px;
}
.collabocafe-section .info {
	margin: 30px auto 0;
	padding: 20px 20px;
	width: 90%;
	max-width: 800px;
}
.collabocafe-section .info > div {
	grid-template-columns: 37px 1fr;
	gap: 12px;
}
.collabocafe-section .info > div.roirom-bt{
		display:block;
}
.collabocafe-section .info > div:first-of-type{
	margin: 0 0 20px;
}
.collabocafe-section .info p.place {
    text-align: left;
}
.collabocafe-section .info > div > span {
	padding: 0 10px 0 0;
	font-size: 11px;
}
#roirom-collabo p.date {
  font-size: 23px;
  margin: 0;
  display: flex;
}
#roirom-collabo p.date span.youbi{
  background:#1eab39;
  color:#fff
}
#roirom-collabo p.date span.youbi{
  background:#f15d1c;
  color:#fff
}
#roirom-collabo p.date span.md{
  margin: 0 2px 3px;
  font-size: 12px;
  align-self: flex-end;
}
#roirom-collabo p.date span.youbi {
  margin-left: 2px;
  font-size: 11px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background:#fff;
  color: #585858;
  /* border: 1px solid; */
}
.collabocafe{
	grid-template-columns: 1fr;
	gap: 0%;
}
.collabocafe .menu-info {
	margin: 0 0 9px;
	font-size: 20px;
}
.collabocafe .menu-info p.item-name {
	font-size: 20px;
}
.collabocafe .menu-info p.price {
	font-size: 15px;
}
.collabocafe .menu-info p.price span{
	font-size: 25px;
}
}


.photospot{
	max-width: 800px;
	width: 80%;
	margin: 0 auto
}
@media screen and (max-width:768px){
	.photospot{
		width:95%
	}
}

.map-google iframe {
   width:100%;
  height:100%;
    display: block;
}
.access-wrap.flex-wrap{
  max-width: 900px;
  margin: 50px auto 0;
  gap: 30px;
  display: flex;
  align-items: center;
}
.map-google {
    width: 60%;
    height: 300px;
}
.access-wrap .text-wrap{
  font-size: 17px;
  position: relative;
  z-index: 10;
  width: calc((100% - 60%) - 30px);
}
.access-wrap p a{
  color:#fff
}
.access-wrap p span{
  margin: 0 0 5px;
  display: block;
  font-size: 22px;
}
@media screen and (max-width:768px){
  .flex-wrap.access-wrap{
    margin: 0;
    padding: 29px 0 0;
    flex-direction: column;
  }
    .map-google {
    width: 100%;
    height: 300px;
    max-width: 480px;
  }
 .access-wrap .section-lead {
    margin:0 0 30px
  }
  .access-wrap .text-wrap{
    font-size: 13px;
    max-width: 300px;
    width:100%
  }
  .access-wrap p span{
      margin: 0 0 17px;
      display: block;
      font-size: 20px;
  }
}

section#info-wrap {
  margin: 0 0 0;
  padding: 50px 20px 80px;
  color: #fff;
  position: relative;
  background: #00000052;
  box-shadow: 0px -6px 15px #7a888f;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
 section#info-wrap::after{
   opacity:0.65
 }

section#info-wrap h3 {
  margin: 0 0 46px;
  font-size: 31px;
  text-align: center;
  letter-spacing: 0.1em;
}

section#info-wrap dl {
  margin: 15px auto;
  padding: 15px 8px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 550px;
  border-bottom: 3px dashed #ffffff94;
  border-top: 3px dashed #ffffff94;
}
section#info-wrap dl:last-of-type {border-top: none;margin: 0 auto;padding-top: 0;}
section#info-wrap dl dt {
  letter-spacing: 0.1em;
  font-size: 17px;
  width: 94px;
  border-right: 3px solid;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

section#info-wrap dl dd {
  margin: 0;
  width: calc((100% - 75px) - 32px);
  font-size: 20px;
}

section#info-wrap dl dd span {
  font-size: 25px;
}
section#info-wrap dl dd span span {
  font-size: 15px;
}
section#info-wrap dl dd span.hour {
  margin: 0 0 0 15px;
  padding: 0 15px 0 0;
  border-right: 1px solid;
}
section#info-wrap dl dd span.hour:first-of-type {
  margin: 0;
}
section#info-wrap dl dd span.hour:last-of-type {
  border-right: none;
}
@media screen and (max-width:768px){
  section#info-wrap {
    padding: 35px 26px;
  }
  section#info-wrap h3 {
    font-size: 31px;
  }
  section#info-wrap dl {
    margin: 15px auto;
    padding: 15px 8px;
    gap: 22px;
    max-width: 400px;
  }
  section#info-wrap dl dt {
    font-size: 14px;
    width: 71px;
  }
  section#info-wrap dl dd {
    margin: 0;
    width: calc((100% - 71px) - 22px);
    font-size: 13px;
  }
  section#info-wrap dl dd span {
    font-size: 19px;
  }
  section#info-wrap dl dd span span {
    font-size: 15px;
  }
  section#info-wrap dl dd span.hour {
    margin: 0 0 0 10px;
    padding: 0px 8px 0 0;
  }
  section#info-wrap dl dd span.hour:first-of-type {
    margin: 0;
  }
  section#info-wrap dl dd span.hour:last-of-type {
    border-right: none;
  }

}

.fuwa-image{
opacity:0
}
.displayed{
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp{
  0%{opacity:0; transform: translateY(20px);}
100%{opacity:1; transform: translateY(0);}
}



