@font-face {
    font-family: 'BLG';
    src: url(../font/bleage_font.ttf);
    font-weight: normal;
}

.blg_txt {
    font-family: 'BLG';
    font-weight: normal;
}

.wht_txt {
    color: white;
}

.txt_center {
    text-align: center;
}

.section_ttl {
    padding: 40px 0 32px;
}

.section_ttl h2 {
    font-size: 16px;
    text-align: center;
}

.section_ttl h3 {
    font-size: 20px;
    text-align: center;
}

/* ------固定ボタン------------------ */
.fixed-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px); /* 初期は下に隠す */
  background-color: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transition: all 0.5s ease; /* ふわっとアニメーション */
  z-index: 1000;
  max-width: 500px;
}

/* 表示状態 */
.fixed-btn.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}d
/* -------概要----------------- */
.about_contents{
    padding-bottom: 32px;
}
.about_txt {
    text-align: center;
    font-size: 16px;
    padding-bottom: 40px;
}

.about_bg {
    background-color: #61A7E6;
}

.schedule_txt {
    background-color: white;
    color: #013384;
    border-radius: 9999px;
    display: block;
    text-align: center;
    padding: 8px 16px;
    margin: 0 auto;
    width: 320px;
    font-size: 20px;
    font-weight: 900;
}

.schedule_contents{
    border-top: 1px solid rgb(255, 255, 255);
}
.schedule_contents img {
    margin-top: 40px;
}

/* ------スタンプラリー参加方法--------- */
.play_bg {
    background-color: #013384;
    padding-bottom: 40px;
}

.play_ttl_contents{
    width: 100%;
    background-color: #013384;
}

.play_contents {
    margin: 0 auto;
    padding: 0 16px;
}
.play_slider {
  position: relative;
  overflow: hidden;
}

.play_slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.play_item {
  flex: 0 0 100%; /* 画面幅に1枚だけ */
}

.play_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.play_prev { left: 8px; }
.play_next { right: 8px; }

.play_pagination {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.play_dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #c8d0d8;
  cursor: pointer;
}


.play_card {
    position: relative;
    height: 100%;
    padding: 16px 16px 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play_step-label {
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 10px;
    color: #b3b3b3;
}

.play_ttl {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 12px;
    background: #013384;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid white;
}

.play_ttl h2 {
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 0.08em;
}

.play_ttl img {
    width: 18px;
    height: auto;
}

.play_subttl {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 12px;
    margin-top: 8px;
}

.play_img {
    margin-bottom: 12px;
    width: 180px;
    margin: 24px 0;
}

.play_img img {
    max-width: 100%;
    height: auto;
    display: block;
}


.play_txt {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    text-align: left;
    width: 100%;
}

.play_note {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.6;
    color: #666666;
    width: 100%;
}

.play_btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    width: 100%;
    max-width: 220px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: #0077d9;
    border-radius: 24px;
    text-decoration: none;
}

.play_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play_prev {
    left: 4px;
}

.play_next {
    right: 4px;
}

.play_pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.play_dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #c8d0d8;
    cursor: pointer;
}

.play_dot.is-active {
    width: 18px;
    background: #4f8df2;
}

/* ------グッズ------------- */
.goods_bg{
    background-color: #f3f3f3;
    padding-bottom: 40px;
    border-bottom: 1px solid #013384;
}
.goods_banner{
    width: calc(100% - 32px);
    margin: 0 auto 32px;
    display: block;
}
.blue_btn{
    background: #013384;
    color: white;
    display: flex;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 9999px;
    align-items: center;
    width: calc(100% - 32px);
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    font-size: 14px;
}
.blue_btn img{
    width: 15px;
}

.goods_txt{
    text-align: center;
    margin-top: 8px;
}

/* ------アコーディオン------------- */
.faq_bg{
    background: #013384;
    padding-bottom: 40px;
}
#accordion{
  width: 100%;
  background-color: #F7F7F7;
}
#accordion h2{
  margin: auto;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
#accordion ul{
  width: 100%;
  list-style: none;
  margin:  0px auto 0 auto;
  width: calc(100% - 32px);
}
#accordion ul li{
  margin-bottom: 8px;
  padding: 16px;
  background-color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
}
.accordion_q{
  position: relative;
  padding-right: 35px;
}
.accordion_q:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(135deg);
}
.accordion_q.arrow:after {
  transform: rotate(-45deg);
  top: 45%;
}
.accordion_a{
  display: none;
  margin-top: 24px;
  padding: 16px;
  background-color: #f0f0f0;
}

/* ------注意事項------------- */
.notes_bg{
background-color: #61A7E6;
padding-bottom: 40px;
}
.notes_item{

}
.notes_item{
    width: calc(100% - 32px);
    margin: 0 auto;
}
.notes_item li{
    font-size: 14px;
    padding: 8px;
    color: white;
    border-bottom: 1px solid white;
}

/* ------規約------------- */
.terms_bg{
    background: #013384;
    padding-bottom: 40px;
}

.terms {
    border-radius: 4px;
    background-color: #FFF;
    height: 250px;
    overflow: auto;
    padding: 10px 20px;
    margin:0px 16px 0;
}

.cooperation{
    text-align: center;
    color: white;
    margin-top: 8px;
    font-size: 14px;
}