@charset "UTF-8";
/* 入場券　*/
#ticket{
 font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, "游ゴシック", "Yu Gothic", sans-serif;
}
.fsbox-item-container {
  width: 100%;
  margin: 0 auto;
}
.fsbox-item1 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.fsbox-item1-text {
  font-size: 1.0em;
}
.fsbox-item1-text-link {
  font-size: 1.0em;
  margin-bottom: 20px;
}
.fsbox-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.fsbox-image-item {
  flex: 1 1 calc(100% - 7px);
  box-sizing: border-box;
  padding-bottom: 20px;
}
.fsbox-image-item img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  padding-bottom: 0px;
}
.fsbox-image-item2 {
  flex: 1 1 calc(50% - 5px);
  box-sizing: border-box;
  padding-bottom: 20px;
}
.fsbox-image-item2 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  padding-bottom: 20px;
}
.fsbox-image-item3 {
  flex: 1 1 calc(33.0% - 5px);
  box-sizing: border-box;
  padding-bottom: 20px;
}
.fsbox-image-item3 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  padding-bottom: 20px;
}
.accordion {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.accordion input[type="checkbox"] {
  display: none;
}
.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background-color: #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s;
}
.accordion-label:hover {
  background-color: #e0e0e0;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 12px;
}
.accordion input[type="checkbox"]:checked ~ .accordion-content {
  max-height: 100%;
  padding: 12px;
}
.accordion-title {
  font-weight: bold;
}
.accordion-title2 {
  font-weight: bold;
  background-color: #0076A2;
  border-radius: 30px;
  padding: 6px 0px 6px 30px;
  color: #FFFFFF;
}
.accordion-text {
  margin-top: 8px;
  color: #333;
  padding: 5px 0px 5px 45px;
  font-size: 0.9em;
}
/* 開閉アイコン */
.accordion-arrow {
  font-size: 16px;
  transition: transform 0.3s;
}
/* 開いてるときは上向き（∧） */
.accordion input[type="checkbox"]:checked + label .accordion-arrow {
  transform: rotate(180deg); /* ∨ ∧  */
}
@media (max-width: 768px) {
  .fsbox-image-item {
    flex: 1 1 calc(50% - 5px);
  }
  .pc-image {
    display: none;
  }
  .mobile-image {
    display: block;
  }
  .mobile-image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 194px;
    height: 53px;
    z-index: 100;
  }
}