@charset "UTF-8";


/* 目次 */
.toc-005 {
    width: 600px;
	margin: 10px auto 20px ;
	
	
}

@media screen and (max-width: 767px) {
  .toc-005 {
    width: 300px;
  }
}

.toc-005 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #cd5c5c;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
	border-radius: 50px;
	
	
}

.toc-005 div::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    content: '';
}

.toc-005 label::after {
    margin-left: 7px;
    font-weight: 500;
    font-size: .7em;
    color: #fff;
    content: "open";
    cursor: pointer;
	
}

.toc-005:has(:checked) label::after {
    content: "close";
}

.toc-005 input {
    display: none;
}

.toc-005 ol {
    list-style-type: disc;
    margin: 0 auto;
    overflow: hidden;
	
}

.toc-005 > ol {
    height: 0;
	padding-left: 1.1em;
}

.toc-005:has(:checked) > ol {
    height: auto;
    padding: 1em 1em 1em 1em;
}

.toc-005 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc-005 li {
    padding: 5px 0;
    font-weight: 600;
	list-style: none;
}

.toc-005 ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.toc-005 a {
    color: #333;
    text-decoration: none;
}



/*アコーディオン*/

.details-wrap {
	width: 1200px;
	margin: 0px auto;
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
  .details-wrap {
    width: 100%;
  }
}


.details {
	position: relative;
	width: 20%;
	height: 350px;
	transition: width 0.5s;
	&:hover {
		width: 880px;
	}
}

.details-summary img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.details[open] {
	&:details-summary{
		&::before {
			display: none;
		}
	}
}

.details-summary {
	display: block;
	position: absolute;
	color: #fff;
	font-size: 18px;
	height: 100%;
	width: 100%;
	text-align: center;
	cursor: pointer;
	&::before {
		content: '';
		background-color: rgba(0, 0, 0, 0.3);
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: block;
		z-index: 2;
		}
	&:hover {
		&::before {
			  display: none;
		}
	}
	img {
		position: relative;
		width: 100%;
		height: 100%;
		object-fit: cover;

	}
}
.details-summary::-webkit-details-marker {
	display: none;
 }
.details-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
	background-color: #fff;
	opacity: 0.7;
	padding: 20px;
	z-index: 1;
}

/*はじめての方へ*/

ol.sample1{
	width: 600px;
	margin: 0 auto;
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 "Yu Gothic" sans-serif;
	text-align: left;
  padding:0;
}

@media screen and (max-width: 767px) {
  ol.sample1 {
    width: 300px;
  }
}

ol.sample1 li{
  position:relative;
  color: #fff;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 0px;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  background: #f08080;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
ol.sample1 li:before{
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ol.sample1 li:hover{
  background: #cd5c5c;
}


/*チケット料金*/

.guide_ttl img{
	width: 320px;
	padding: 20px;
}

@media (max-width: 767px) {
    .guide_ttl  img {
        width: 	250px;
    }
}

.guide_text{
	width: 600px;
	margin: 0px auto;
	text-align: left;
	
}

@media screen and (max-width: 767px) {
  .guide_text {
    width: 300px;
  }
}


.guide_text a:hover{
	color: coral;
}

table{
  width: 600px;
  margin: -30px auto 0px;
  border-collapse: collapse;
  
}

@media screen and (max-width: 767px) {
  table {
    width: 300px;
  }
}


table tr *:nth-child(1){
  background: #f08080;
}

table tr *:nth-child(2){
  background: #cd5c5c;
}

table tr *:nth-child(3){
  background: #649cdf;
}

table tr *:nth-child(4){
  background: #6e87d7;
}

table th,table td{
  color:white;
  border:solid 1px white;
  text-align: center;
  padding: 10px 0;
}


/*会員案内*/

.kaiin_tokuten {
	width: 700px;
	display:flex;
	margin: 0 auto;
	font-weight:bold;
	align-items: flex-end;
}

.kaiin_tokuten li{
	margin: 0 auto;
	padding-bottom: 20px;
	
}



@media screen and (max-width: 767px) {
  .kaiin_tokuten {
    max-width: 350px;
  }
}



/*会員案内ボタン*/

.kaiin_shyosai{
	width: 300px;
	margin: 0 auto;
}

a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #f08080;
  border: 1px solid #f08080;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.btn_03:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}

a.btn_03:hover {
  background: #cd5c5c;
  color: #fff;
}

a.btn_03:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}


@media screen and (max-width: 767px) {
  iframe {
    width: 300px;
	margin: 0 auto;
  }
}