/* ============================================
   Shop Single
============================================ */

/* 店舗紹介 */
.shop-single_intro {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
	.shop-single_intro {
  display: flex;
		gap: 24px;
	}
}
@media screen and (max-width: 768px) {
	.shop-single_intro {
		flex-direction:column;
	}
}

.shop-single_intro__image {
  flex: 0 0 480px;
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.20);
	border-radius: 10px;
}
@media screen and (max-width: 1024px) {
	.shop-single_intro__image {
		flex: 0 0 360px;
	}
}
@media screen and (max-width: 768px) {
	.shop-single_intro__image {
		flex: 1;
        aspect-ratio: 3 / 2;
        width: 100%;
        height: 240px;
	}
}

.shop-single_intro__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
	border-radius: 10px;
}
@media screen and (max-width: 1024px) {
	.shop-single_intro__image img {
		height: 240px;
	}
}
@media screen and (max-width: 768px) {
		.shop-single_intro__image img {
        height: 100%;
	}
}

.shop-single_intro__body {
  flex: 1;
}

.shop-single_intro__name{
	  font-size: 32px;
  font-weight: 700;
	padding-bottom:16px;
	position:relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
	.shop-single_intro__name{
		font-size: 20px;
  margin-bottom: 16px;
	padding-bottom:8px;
	}
}
.shop-single_intro__name:after{
	content:"";
	display:block;
	width:80px;
	height:2px;
	background:#17645E;
	position:absolute;
	left:0;
	bottom:0;
}
.shop-single_intro__heading {
  font-size: 24px;
	line-height:1.6;
	margin-bottom:40px;
}
@media screen and (max-width: 1024px) {
.shop-single_intro__heading {
  font-size: 18px;
	margin-bottom:24px;
}
}

.shop-single_intro__text {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
	.shop-single_intro__text {
  font-size: 14px;
}
}
/* スライドショー */
.shop-single_slideshow {
  overflow: hidden;
  padding: 120px 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
	.shop-single_slideshow {
		padding: 40px 0;
	}
}

.shop-single_slideshow__swiper {
  overflow: hidden;
}

.shop-single_slideshow__swiper .swiper-slide {
  width: 320px;
  margin-right: 16px;
}

.shop-single_slideshow__swiper .swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
	.shop-single_slideshow__swiper .swiper-slide img {
		height: 120px;
	}
}

/* 店舗情報テーブル */
.shop-single_info {
  margin: 60px 0 0 0;
}
@media screen and (max-width: 768px) {
	.shop-single_info {
  margin: 40px 0 0 0;
}
}
@media screen and (max-width: 768px) {
	.shop-single_info .l-inner--mini{
	padding:0;	
	}
}
.shop-single_info__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #9F9F9F;
}
@media screen and (max-width: 768px) {
	.shop-single_info__table,
	.shop-single_info__table tbody{
		display:block;
		width:100%;
	}
}
@media screen and (max-width: 768px) {
	.shop-single_info__table tr{
		display:flex;
		flex-wrap:wrap;
		padding:8px 0 0 0;
	}
}
.shop-single_info__table th,
.shop-single_info__table td {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.8;
  border-bottom: 1px solid #9F9F9F;
  text-align: left;
  vertical-align: top;
}

.shop-single_info__table th {
  width: 160px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
.shop-single_info__table th {
	width:100%;
  border-bottom: unset;
	padding: 4px 8px;
}
}
.shop-single_info__table td a{
	color:rgb(85, 26, 139);
	word-break: break-word;
}
@media screen and (max-width: 768px) {
.shop-single_info__table td {
	width:100%;
  border-bottom: 1px solid #9F9F9F;
	padding: 4px 8px 12px 8px;
}
}
/* Googleマップ */
.shop-single_map {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 768px) {
	.shop-single_map {
  padding: 40px 0 0 0;
	}
}

.shop-single_map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
@media screen and (max-width: 768px) {
	.shop-single_map iframe {
		height: 240px;
	}
	.shop-single_map .l-inner--mini {
        padding: 0;
    }
}
	
/* 他の店舗 */
.shop-single_other {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 768px) {
	.shop-single_other {
  padding: 40px 0 0 0;
	}
}

.shop-single_other__list {
display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 40px;
}
@media screen and (max-width: 768px) {
	.shop-single_other__list {
    gap: 16px;
    padding: 0;
		flex-wrap:wrap;
		justify-content: center;
}
}

.shop-single_other__item {
  flex: 1;
    border-radius: 20px;
}
@media screen and (max-width: 768px) {
.shop-single_other__item {
	flex:unset;
	width:calc(50% - 16px);
	}
}
.shop-single_other__link {
flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    border-radius: 20px;
}

.shop-single_other__image {
width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #ddd;
    object-position: top;
    border-radius: 20px;
}
@media screen and (max-width: 768px) {
	.shop-single_other__image {
		height: 160px;
	}
}

.shop-single_other__image img,
.shop-single_other__image--empty {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #ddd;
    border-radius: 20px;
}
@media screen and (max-width: 768px) {
	.shop-single_other__image img,
.shop-single_other__image--empty {
	height: 100%;
	}
}

.shop-single_other__name {
font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
    position: absolute;
    bottom: 72px;
    left: 16px;
    color: #fff;
    z-index: 3;
    margin: 0;
}
@media screen and (max-width: 768px) {
	.shop-single_other__name {
		font-size: 16px;
left: 0;
        right: 0;
        margin: auto;
        width: fit-content;
	}
}

.shop-single_other__link .c-btn {
    position: absolute;
    bottom: 24px;
    left: 16px;
    color: #fff;
    width: 160px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 8px;
    border: solid 1px #fff;
    border-radius: 20px;
    z-index: 3;
    font-size: 12px;
}
@media screen and (max-width: 768px) {
	.shop-single_other__link .c-btn {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
	}
}

.shop-single_other__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 20px;
    z-index: 1;
    transition: all 0.3s;
}

.shop-single_other__link .c-btn:hover{
	background:unset;
}
.shop-single_other__link .c-btn:after{
	content:"→";
	display:block;
	position:absolute;
	right:8px;
	top:0;
	bottom:0;
	margin:auto;
width: fit-content;
    height: fit-content;
}
.shop-single_other__link:hover:after{
	background:#fff;
	transition:all 0.3s;
	opacity:0.1;
}