@charset "UTF-8";

/* -------------------------------- 

	base

-------------------------------- */

.section ,
#content section {
	width:740px;
	margin:0 auto 7rem;;
}

#content p {
	font-size:1.4rem;
	letter-spacing:0.1rem;
	line-height:1.8;
	margin-bottom:2.8rem;
}




/* -------------------------------- 

Style

-------------------------------- */
.gmap { width:900px; margin:0 auto 5rem; text-align:center;}
.gmap iframe { width:900px; height:600px; margin-bottom:3rem; }
.gmap img { margin-top: 2rem;}









/* --------------- 

	#hotNews

----------------- */
#hotNews { width: 1000px; margin:0 auto 6rem; }

@media only screen and (max-width: 767px) {
#hotNews { float:none; width:100%; margin-left:auto}
#hotNews img { width:100%;}
}

#hotNews ul {
	display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: center;
  flex-wrap: wrap;
	height: auto;
  margin: 2rem auto 0;
}
#hotNews li {
	flex: 0 1 auto;
	text-transform: uppercase;
	position: relative;
	transition: .3s;
	margin-right: 1rem;
}
#hotNews li span {
	display:block;
	font-weight:400;
	color:#444;
	font-size:1.2rem;
}
#hotNews li img {
	width: auto;
	height: 200px;
}

@media only screen and (max-width: 767px) {
#hotNews li { margin-right:0}
}



/* -------------------------------- 

Venue / Artist List

-------------------------------- */
.venue-list-title {
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: space-between; /* 左右に分ける */
	align-items: center;           /* 垂直方向を中央揃え */
	margin-bottom: 1rem;
}
.venue-list-title .time {
	margin-right:2rem;
	  border-bottom: 3px solid #ccc; /* 線の太さと色を調整 */
  padding-bottom: 6px;           /* 線と文字の間隔を調整 */

}

.venue-list_area-name {
    font-weight: bold;
    margin: 5rem 0 1rem; /* 全体のデフォルト */
}

/* venue-artist-list 内で最初の h3.venue-list_area-name のみ上書き */
.venue-artist-list .venue-area:first-child > .venue-list_area-name {
    margin-top: 3rem;
}

#content section.venue-artist-list,
#content section .venue-list,
#content section .artist-list {
	width: 880px;
}
#content section .artist-list {
	margin-bottom: 2rem;
}

.venue-list-details {
	border-bottom: 1px solid #444;
	transition: 0.1s;
}

.tagName {
	font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 3.5rem 2rem;
}
.tagName .comment {
	font-weight: bold;
}


/* venue list */
.venue-number {
	margin-right: 1rem;
	vertical-align: middle;
}
.venue-number img {
	width: 20px;
}

summary {
	/* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
	display: block;
}
summary::-webkit-details-marker {
	/* Safariで表示されるデフォルトの三角形アイコンを消します */
	display: none;
}

.summary-inner {
  cursor: pointer;
  font-size: 1.1em;
  padding: 1.2rem 1rem 1rem;
  display: flex;
  justify-content:space-between;
}
.summary-inner:hover {
	background: #f2f2f2;
}

.summary-inner .venue-english {
	font-size: 0.8em;
	padding-left: 1rem;
}

.venue-opentime {
	vertical-align: middle;
	text-align: right;
	display: flex;
	align-items: center;
	font-size: 1.65rem;
}
 
/* icon */
.icon {
	display: inline-block;
	position: relative;
	width: 24px;
	margin-left: 10px;
	flex-shrink: 0;
	transform-origin: center 43%;
	transition: transform 0.4s;
	vertical-align: middle;
  }
  
  /* アコーディオンが開いた時のスタイル */
  details[open] .icon {
	transform: rotate(180deg);
  }
  
  /* アイコンのバーのスタイル */
  .icon::before,
  .icon::after {
	content: "";
	position: absolute;
	display: block;
	width: 15px;
	height: 2px;
	background-color: #333;
  }
  
  .icon::before {
	left: 0;
	transform: rotate(45deg);
  }
  
  .icon::after {
	right: 0;
	transform: rotate(-45deg);
}


/* address */
.venue-address {
	padding: 1rem 0;;
}


/* artist list */
.page section.artist-list h1 {
	text-indent: unset;
	white-space: unset;
	overflow: visible;
}