@charset "utf-8";
/* CSS Document */

.section-calender {
  width: 90%;
  margin: 0 auto 50px;
}
.section-calender h2 {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',serif;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #f19ec2;
}
.section-calender_img  {
  width: 70%;
  margin: 0 auto;
}
.section-calender_img img {
  width: 100%;
}

.schedule-iframe_div {
  height: 1800px;
  overflow: hidden;
}
.schedule-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  top: -50px;
}

.section-information {
  margin-top: 0;
  top: -300px;
}

.section-reservation h2 {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',serif;
  font-size: 1.6rem;
}

.accordion-001 {
  width: 90%;
  margin: 10px auto 0;
  background-color: #18282c;
}

.accordion-001:not([open]) {
  margin-bottom: 7px;
}

.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
  cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  transition: transform .3s;
}

.accordion-001[open] summary::after {
  transform: rotate(225deg);
}

.accordion-001 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  transition: transform .5s, opacity .5s;
  text-align: left;
  font-size: 1.2rem;
}
.accordion-001[open] p {
  transform: none;
  opacity: 1;
}