@charset "UTF-8";
/*------------------------
店舗案内
------------------------*/
#detail{
	padding: 60px 0 100px;
}

/* TOP部分 */
#detail .ttl-wrap{
	display: flex;
    align-items: baseline;
    margin-bottom: 18px;
}
#detail .ttl-wrap .tab-wrap{
	display: flex;
	align-items: center;
}
#detail .ttl-wrap .num {
	color: #fff;
    height: 30px;
    padding: 0 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    font-weight: bold;
    z-index: 10;
    font-size: 18px;
    margin-right: 10px;
}
#detail .ttl-wrap .tab{
	background: var(--yellow);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 3px 12px;
	border-radius: 50px;
	margin-right: 10px;
}
#detail .ttl-wrap h2{
	font-size: 30px;
    flex: 1;
    text-align: left;
    line-height: 1.3;
}
#detail .top-wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}


/* image */
#detail .top-wrap .image-wrap{
	width: 460px;
	margin-right: 40px;
}
#detail .top-wrap .shopimg{
	width: 460px;
	height: 320px;
}
#detail .top-wrap .shopimg img{
	object-fit: contain;
	box-sizing: border-box;
}

/* Slick */
#detail .slide .slick-dots {
	bottom: -30px;
	right: 45%;
	width: auto;
}
#detail .slide .slick-dots li {
	width: 20px;
	height: 20px;
	margin: 0 2px;
}
#detail .slide .slick-dots li button:before {
	font-size: 10px;
	line-height: 20px;
	width: 25px;
	height: 25px;
	opacity: .6;
	color: #c9c9c9;
}
#detail .slide .slick-dots li.slick-active button:before {
	color: var(--yellow);
	opacity: .85;
}
.slick-dots > li:first-child:last-child {
	display: none;
}
.slick-arrow {
	cursor: pointer;
	background: var(--yellow);
	width: 40px;
	height: 40px;
	z-index: 10;
	position: absolute;
	transition: opacity .3s linear;
	border-radius: 50%;
	left: 0;
}
.slick-arrow:hover{
	opacity: .7;
}
.slick-arrow.slick-disabled:hover{
	opacity: 1;
}
.slick-arrow.slick-next{
	left: auto;
	right: 0;
}
.slick-prev:before,.slick-next:before {
	content: '';
}
.slick-arrow:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: -5px;
	background: url(/nishiogi-koukashita/pc/img/common/arrow_w.svg) no-repeat;
	background-size: contain;
	width: 10px;
	height: 12px;
	margin: auto;
	transform: rotate(180deg);
}
.slick-arrow.slick-next:after  {
	transform: rotate(0deg);
	left: auto;
	right: 14px;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	color: unset;
	outline: none;
	background: var(--yellow);
}

/* text */
#detail .top-wrap .text{
	flex: 1;
}
#detail .top-wrap .textarea{
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.4;
}
#detail .top-wrap .outline{
	margin-bottom: 20px;
}
#detail .top-wrap .outline dl{
	display: flex;
	margin-bottom: 10px;
}
#detail .top-wrap .outline dt{
	border: 1px solid var(--orange);
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	min-height: 30px;
	color: var(--orange);
	padding: 5px;
}
#detail .top-wrap .outline dd{
	flex: 1;
	font-size: 16px;
	font-weight: 500;
}
#detail .top-wrap .outline dd a{
	text-decoration: underline;
	transition: all .3s ease 0s;
}
#detail .top-wrap .outline dd a:hover{
	color: var(--orange);
}

#detail .top-wrap .flex-btn {
	display: flex;
	align-items: center;
}
#detail .top-wrap .flex-btn .url a {
	background: var(--black);
	color: #fff;
	display: inline-flex;
	min-width: 80px;
	height: 32px;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 15px;
	margin-right: 15px;
	padding: 0 8px;
}
#detail .top-wrap .flex-btn .url a:hover {
	background: #767676;
}

#detail .top-wrap .sns-icon{
	display: flex;
}
#detail .top-wrap .sns-icon a{
	width: 40px;
	height: 40px;
	display: block;
	margin-right: 8px;
	transition: all 0.5s ease 0s;
}
#detail .top-wrap .sns-icon a:hover{
	transform: translateY(-5px);
}

#detail .top-wrap .text .come{
	font-size: 14px;
	margin-top: 20px;
}


#detail .floormap{
	margin-top: 60px;
	width: 100%;
	height: auto;
	cursor: pointer;
	transition: all 0.5s ease 0s;
}
#detail .floormap:hover{
	opacity: .8;
}
#detail .floormap img{
	border-radius: 20px;
	padding: 15px 10px 10px;
	border: 5px solid var(--bg_gray);
}