@charset "UTF-8";
body::before{
	content: "";
	width: 520px;
	height: 520px;
	background: url(/koenji-mashita/pc/img/index/toimg_sankaku.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
}
header {
	background: unset;
}
header .inner .logo a {
	height: auto;
	width: 220px;
	padding: unset;
	display: block;
	transition: all 0.3s;
	position: absolute;
	top: 0;
}
header.scrolled .inner .logo a{
	height: auto;
	position: unset;
	width: 206px;
	padding: unset;
}
/*------------------------
topimg
------------------------*/
.topimg {
	position: relative;
	max-height: 920px;
	height: calc(100vh - 80px);
	padding: 0 110px 60px;
}
.topimg .image{
	width: 100%;
	height: 100%;
}
.topimg .image img{
	object-fit: cover;
}
.topimg h1{
	font-size: 28px;
	position: absolute;
	bottom: 100px;
	left: 170px;
}
.topimg h1 span{
	display: inline-block;
	background: rgba(255, 255, 255, .88);
	margin-bottom: 10px;
	padding: 2px 10px;
}
.topimg .scroll{
	color: var(--red);
	font-weight: bold;
	display: flex;
	align-items: center;
	position: absolute;
	left: 0;
	bottom: 120px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.topimg .scroll::before{
	content: "";
	width: 2px;
	height: 100px;
	background: var(--red);
	display: block;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin-right: 60px;
}
.topimg .scroll::after{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--red);
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 50%;
	animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;

}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
	0%{    left: 45px;}
	100%{left: -55px;}
	}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
	0%{opacity:0}
50%{opacity:1;}
80%{opacity:0.9;}
100%{opacity:0;}
}


/*------------------------
コンセプト
------------------------*/
#concept {
	position: relative;
	background: var(--bg-gray);
}
#concept::before{
	content: "";
	width: 258px;
	height: 258px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 10px;
}
#concept::after{
	content: "";
	width: 258px;
	height: 258px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 10px;
	right: 10px;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#concept .inner{
	padding: 80px 0 100px;
	z-index: 1;
	position: relative;
}
#concept .ttl-wrap h2{
	margin-bottom: 25px;
}
/* テキストエリア */
#concept .text{
	flex: 1;
}
#concept h3{
	font-size: 24px;
	margin-bottom: 15px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: .05em;
}
#concept .text{
	margin-bottom: 25px;
}
#concept .text .textarea{
	font-size: 18px;
	line-height: 1.88;
	margin-bottom: 10px;
}
#concept .image.right{
	width: 100%;
	height: 273px;
	overflow-x: scroll;
}
#concept .cop{
	font-size: 13px;
	text-align: right;
	margin-bottom: 20px;
}
#concept .image.right img{
	width: 1312px;
	object-fit: cover;
	max-width: unset;
}
#concept .sns-link{
	background: #e4e4e4;
	padding: 15px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#concept .sns-link .flex-box {
	align-items: center;
	line-height: 1;
	margin-bottom: 5px;
}
#concept .sns-link .name{
	font-size: 15px;
	font-weight: 600;
	margin-right: 8px;
	line-height: 1.2;
}
#concept .sns-link .sub{
	font-size: 12px;
}
#concept .sns-link a{
	width: 35px;
	height: 35px;
	margin-left: 10px;
}
#concept .sns-link a:hover{
	transform: translateY(-5px);
}

/*------------------------
INFORMATION
------------------------*/
#info {
	position: relative;
	background: var(--bg-red);
}
#info::before{
	content: "";
	width: 258px;
	height: 258px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 10px;
}
#info::after{
	content: "";
	width: 258px;
	height: 258px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 10px;
	right: 10px;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#info .inner{
	padding: 60px 0 80px;
	position: relative;
	z-index: 0;
}
#info .inner .ttl-wrap{
	margin-bottom: 20px;
	text-align: center;
}
#info ul {
	display: flex;
	margin-bottom: 20px;
}
#info ul li {
	margin-right: 20px;
}
#info ul li:last-child{
	margin-right: 0;
}
#info ul li a {
	width: 320px;
}
#info ul li .image{
	height: 213px;
	margin-bottom: 10px;
	overflow: hidden;
	border: 1px solid #c9c9c9;
}
#info ul li .image img{
	object-fit: cover;
	transition: all .3s ease 0s;
}
#info ul li a:hover .image img {
	transform: scale(1.05, 1.05);
}
#info ul li .tag-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	white-space: nowrap;
}
#info ul li .tag-wrap .day {
	font-size: 15px;
	margin-right: 10px;
}
#info ul li .tag {
	font-size: 13px;
	font-weight: 500;
	padding: 2px 11px 1px;
	line-height: 1.5;
	background: var(--blue);
	color: #fff;
	letter-spacing: .04em;
}
#info ul li .tag.event{
	background: var(--red);
}
#info ul li .ttl {
	letter-spacing: .04em;
	font-weight: 500;
	transition: all .3s ease 0s;
	text-align: justify;
	line-height: 1.4;
	font-size: 18px;
	padding-bottom: 20px;
}
#info ul li a:hover .ttl{
	color: var(--red);
}
#info .btn a{
	width: 320px;
	height: 60px;
	margin: 0 auto;
}

/*------------------------
SHOP
------------------------*/
#shop {
	position: relative;
	/* background: var(--bg-red); */
}
/* #shop::before{
	content: "";
	width: 258px;
	height: 258px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 10px;
}
#shop::after{
	content: "";
	width: 258px;
	height: 258px;
	background: url(/koenji-mashita/pc/img/common/ashirai_block.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 10px;
	right: 10px;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
} */
#shop .inner{
	padding: 60px 0 100px;
	position: relative;
	z-index: 10;
}
#shop .inner .ttl-wrap{
	text-align: center;
	margin-bottom: 25px;
}

#shop .floormap{
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}
#shop .floormap img{
	border: 1px solid var(--black);
}

/* ショップリスト */
#shop .block-wrap{
	display: flex;
	flex-wrap: wrap;
}
#shop .block-wrap .block{
	position: relative;
	margin-right: 20px;
	margin-bottom: 20px;
}
#shop .block-wrap .block:nth-child(3n){
	margin-right: 0;
}
#shop .block-wrap .block a{
	width: 320px;
}
#shop .block-wrap .block .image{
	height: 213px;
	margin-bottom: 10px;
	overflow: hidden;
	border: 1px solid #c9c9c9;
}
#shop .block-wrap .block .image img{
	object-fit: contain;
	transition: all .3s ease 0s;
}
#shop .block-wrap .block .num{
	background: var(--black);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	display: inline-block;
	padding: 1px 8px;
	letter-spacing: .05em;
	position: absolute;
	top: 0;
	left: 0;
}
#shop .block-wrap .block .cat{
	color: var(--red);
	font-weight: 500;
	line-height: 1;
	margin-bottom: 5px;
}
#shop .block-wrap .block .ttl{
	font-size: 20px;
	font-weight: bold;
	transition: all .3s ease 0s;
	line-height: 1.2;
}

/* hover */
#shop .block-wrap .block a:hover .image img{
	transform: scale(1.05, 1.05);
}
#shop .block-wrap .block a:hover .ttl{
	color: var(--red);
}

#shop .btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
	background: #fff;
	color: #fff;
	background: var(--black);
	position: relative;
	border: 1px solid var(--black);
	width: 320px;
	height: 60px;
	margin: 0 auto;
	transition: all 0.5s ease 0s;
}
#shop .btn::after {
	content: "";
	background: url(/koenji-mashita/pc/img/common/arrow_w.svg) no-repeat;
	background-size: contain;
	width: 10px;
	height: 12px;
	position: absolute;
	right: 30px;
	top: 42%;
	transition: all 0.5s ease 0s;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
#shop .btn.close::after{
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	top: 36%;
} 
#shop .btn:hover{
	background: #fff;
	color: var(--black);
}
#shop .btn:hover::after {
	background: url(/koenji-mashita/pc/img/common/arrow_b.svg) no-repeat;
	background-size: contain;
}


/*------------------------
アクセス
------------------------*/
#access {
	position: relative;
}
#access .inner{
	padding: 60px 0 100px;
}
#access .ttl-wrap{
	text-align: center;
	margin-bottom: 25px;
}

#access .block-wrap{
	margin-bottom: 30px;
}
#access .block {
	display: flex;
	align-items: flex-start;
	font-weight: 500;
	margin-bottom: 15px;
}
#access .block h3{
	font-size: 20px;
	display: flex;
	align-items: center;
	font-weight: 500;
	padding-right: 20px;
	border-right: 1px solid var(--red);
	margin-right: 20px;
	line-height: 1;
}
#access .block h3::before{
	content: "";
	width: 22px;
	height: 28px;
	background: url(/koenji-mashita/pc/img/common/icon_pin.png) no-repeat;
	background-size: contain;
	display: block;
	margin-right: 10px;
}
#access .block.train h3::before{
	content: "";
	width: 22px;
	height: 28px;
	background: url(/koenji-mashita/pc/img/common/icon_train.svg) no-repeat;
	background-size: contain;
	display: block;
	margin-right: 10px;
}
#access .block .text{
	font-size: 18px;
}
#access .block .text span{
	font-size: 16px;
	font-weight: normal;
	display: block;
}
#access .map{
	width: 100%;
	height: 450px;
	border: 1px solid var(--red);
	margin-bottom: 10px;
}
#access .map iframe{
	width: 100%;
	height: 100%;
}
#access .g-btn a{
	font-size: 15px;
	text-decoration: underline;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
#access .g-btn a:hover{
	opacity: .8;
}
#access .g-btn a::before{
	content: "";
	background: url(/koenji-mashita/pc/img/common/arrow_b.svg) no-repeat;
	background-size: contain;
	width: 8px;
	height: 12px;
	display: block;
	margin-right: 8px;
}
#access .btn a{
	width: 320px;
	height: 60px;
	margin: 0 auto;
}