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

img { -ms-interpolation-mode: bicubic; }

.sp{
display: none;
}

/*ハンバーガーメニュー*/

.hamburger-menu {line_btn
  display: block;
}

/* ボタン（初回右からふわっと表示） */
.menu-btn {
  position: fixed;
  bottom: 170px;
  right: 0px;
  display: flex;
  height: 50px;
  width: 240px;
  border-radius: 30px 0 0 30px;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background-color: #000000;
  cursor: pointer;
  transform: translateX(300px);
  animation: slideInFromRight 1.2s ease-out 10s forwards;
}

@keyframes slideInFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
  transition: all 0.5s;
  left: 20px;
}
.menu-btn span::before {
  bottom: 8px;
  left: 0px;
}
.menu-btn span::after {
  top: 8px;
  left: 0px;
}

.menu-btn b {
  color: #fff;
  margin-top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
  margin-left: 15px;
  padding-bottom: 3px;
}

#menu-btn-check {
  display: none;
}

/* バー変形アニメーション */
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニュー本体 */
.menu-content {
  width: 240px;
  height: 50px;
  position: fixed;
  bottom: 170px;
  right: 0;
  z-index: 999999;
  background-color: #000000;
  border-radius: 30px 0 0 30px;
  overflow-y: hidden;
  transform: translateX(300px);
  animation: slideInFromRight 1.2s ease-out 10s forwards;

  /* 開閉アニメーションに必要 */
  transition: height 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

/* ✅ 開いた状態（JSで追加） */
.menu-content.open {
  height: 280px;
}

/* メニュー中身 */
.menu-content ul {
  width: 90%;
  padding: 0 5%;
  margin-top: 20px;
}
.menu-content ul li {
  list-style: none;
  margin-bottom: 4%;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  box-sizing: border-box;
  color: #000000;
  text-decoration: none;
  padding: 4% 0 4% 8%;
  position: relative;
  background: #fff;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.menu-content ul li a::before {
  content: "▶︎";
  position: absolute;
  right: 10px;
  top: 12px;
  font-size: 1.3rem;
  color: #DB5B2E;
}

/*ハンバーガーメニューここまで*/




/*
.line_btn {
  background: #CC0012;
  color: #fff;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  display: block;
  z-index: 99;
  position: fixed;
  bottom: 60px;
  right: 0;
  line-height: 120%;
  padding: 15px 80px 15px 20px;
  text-align: center;
  border-radius: 40px 0 0 40px;

  transform: translateX(500px);
  animation: slideInFromRight 1.2s ease-out 10.0s forwards;
}
*/

.line_btn {
  background: #CC0012;
  color: #fff;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  display: block;
  z-index: 99;
  position: fixed;
  bottom: 60px;
  right: 0;
  line-height: 120%;
  padding: 15px 20px 15px 20px;
  text-align: center;
  border-radius: 40px 0 0 40px;

  /* スライドインアニメーション */
  transform: translateX(500px);
  animation: slideInFromRight 1.2s ease-out 10.0s forwards;
}



.line_btn img{
width: 58px;
position: fixed;
top: 20px;
right: 10px;
}
.line {
  width: 90px;
  position: fixed;
  bottom: 10px;
  left: 1%;
  z-index: 999;

  /* アニメーション */
  transform: translateX(-500px);
  animation: slideInFromLeft 1.2s ease-out 10.0s forwards;
}
@keyframes slideInFromLeft {
  to {
    transform: translateX(0);
  }
}


/* タイピングテキスト */
    #typing-container {
      position: relative;
      z-index: 10;
      white-space: pre-wrap;
      font-size: clamp(2.5rem, 2vw, 5rem);
      font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  bottom: 13%;
  left: 3.5%;
    }

    #typing-container span{
    font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 180%;
    }

    .cursor {
      display: inline-block;
      width: 1px;
      height: 1.2em;
      background: #000;
      margin-left: 2px;
      animation: blink 0.8s steps(1) infinite;
      vertical-align: bottom;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    /* 円のアニメーション */
    .circle {
      position: absolute;
      top: 53%;
      left: 70%;
      width: 0;
      height: 0;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      transition: width 6s linear, height 6s linear;
      overflow: hidden;
    }

    .expand {
      width: 300vmax;
      height: 300vmax;
    }

    .black {
      background: #DB5B2E;
      z-index: 1;
    }

    .white {
      background: white;
      z-index: 2;
    }
    
    
h1 {
  position: relative;
  z-index: 9;
  padding: 2% 0 0 3%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 3s ease-out 0.2s forwards;
}

.gentei {
  position: absolute;
  top: 3%;
  left: 49%;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 3s ease-out 0.2s forwards;
}

/* h1 固有スタイル */
h1 {
  width: 46%;
}

/* .gentei 固有スタイル */
.gentei {
  width: 9%;
}

/* アニメーション定義 */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo{
width: 45%;
position: absolute;
top: 15%;
right: 5%;
z-index: 9;
}


.top_img{
width: 45%;
aspect-ratio: 10 / 9.5;
position: absolute;
top: 13%;
right: 7%;
z-index: 9;
display: block;
/*background: #000000;*/
/*opacity: 0.5;*/
}


.top01{
width: 11%;
position: absolute;
top: 36%;
right: 47.5%;
z-index: 9;
}
.top02{
width: 11%;
position: absolute;
top: 84%;
right: 55.5%;
z-index: 9;
}
.top03{
width: 10%;
position: absolute;
top: 65.5%;
right: 64.5%;
z-index: 9;
}
.top04{
width: 12%;
position: absolute;
top: 79%;
right: 75%;
z-index: 9;
}
.top05{
width: 15.5%;
position: absolute;
top: 32.5%;
right: 18%;
z-index: 9;
}
.top06{
width: 16%;
position: absolute;
top: 46%;
right: 59%;
z-index: 9;
}
.top07{
width: 13%;
position: absolute;
top: 83%;
right: 33%;
z-index: 9;
}
.top08{
width: 17%;
position: absolute;
top: 0;
right: 33%;
z-index: 9;
}
.top09{
width: 15%;
position: absolute;
top: 30%;
right: 65.5%;
z-index: 9;
}
.top10{
width: 18%;
position: absolute;
top: 12%;
right: 50%;
z-index: 9;
}
.top11{
width: 16%;
position: absolute;
top: 37%;
right: 84%;
z-index: 9;
}
.top12{
width: 11.5%;
position: absolute;
top: 19.5%;
right: 78%;
z-index: 9;
}
.top13{
width: 11.5%;
position: absolute;
top: 21.5%;
right: 33%;
z-index: 9;
}
.top14{
width: 17%;
position: absolute;
top: 66%;
right: 40%;
z-index: 9;
}
.top15{
width: 7.5%;
position: absolute;
top: 25%;
right: 10%;
z-index: 9;
}
.top16{
width: 13.5%;
position: absolute;
top: 11%;
right: 16%;
z-index: 9;
}
.top17{
width: 15.5%;
position: absolute;
top: 39%;
right: 0%;
z-index: 9;
}
.top18{
width: 15.5%;
position: absolute;
top: 46%;
right: 33%;
z-index: 9;
}
.top19{
width: 10%;
position: absolute;
top: 75%;
right: 19.5%;
z-index: 9;
}
.top20{
width: 11.5%;
position: absolute;
top: 57%;
right: 19%;
z-index: 9;
}
.top21{
width: 11.5%;
position: absolute;
top: 59%;
right: 85.5%;
z-index: 9;
}
.top22{
width: 9.5%;
position: absolute;
top: 59.5%;
right: 5%;
z-index: 9;
}
.top23{
width: 9.5%;
position: absolute;
top: 5.5%;
right: 68%;
z-index: 9;
}

.top24{
width: 23%;
position: absolute;
top: 18%;
right: 93%;
z-index: 9;
}

.top25{
width: 25%;
position: absolute;
top: -5%;
right: 0%;
z-index: 9;
}


@keyframes scaleLoop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

@keyframes flipLoop {
  0%, 45% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(-1);
  }
  55%, 100% {
    transform: scaleX(1);
  }
}

img[class^="top"] {
  opacity: 0;
  transition: opacity 1s ease;
  transform-origin: center center;
  animation-name: scaleLoop;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}


.main_section_01{
width: 100%;
background: #DB5B2E;
padding: 10% 0;
margin-top: 80vh;
position: relative;
z-index: 9;
}

.main_section_01 > section{
width: 1200px;
margin: 0 auto;
}

h2{
text-align: center;
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size: 5.0rem;
color: #fff;
margin-bottom: 30px;
}

h2 b{
font-weight: 700;
font-size: 3.0rem;
color: #000000;
}

.caution_p{
text-align: center;
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size: 2.0rem;
color: #FFFF00;
}


.event_list{
margin-top: 50px;
}


.event_list > li{
position: relative;
  width: 82%;
  padding: 2% 9%;
  margin-bottom: 55px;
  background: #fff;
  border-radius: 20px;
}



.accordion_input {
  display: none;
}
.accordion_label {
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 9;
  width: 100%;
}
.accordion_label::after {
  content: "+";
  font-size: 5.0rem;
  position: absolute;
  top: -10px;
  right: -90px;
  color: #D5592D;
  transition: transform 0.3s ease;
}
.accordion_input:checked + .accordion_label::after {
  content: "−";
}

.event_container {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease;
  background: #fff;
}

.number{
text-align: center;
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size: 4.0rem;
background: #DA5B2E;
color: #fff;
display: inline-block;
border-radius: 100px;
padding: 23px 30px;
position: absolute;
top: -40px;
left: -130px;
}

.event_midashi_01{
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size: 4.0rem;
display: flex;
align-items: center;
}

.event_midashi_01 b{
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size: 2.5rem;
background: #E50012;
color: #fff;
padding: 0.1em 0.5em;
border-radius: 20px;
margin-left: 10px;
}

.event_dl_01{
display: flex;
justify-content: flex-start;
align-items: center;
}

.event_dl_01 dt{
font-weight: 600;
font-size: 1.9rem;
background: #000000;
color: #fff;
border-radius: 5px;
padding: 0 0.5em 3px 0.5em;
margin-top: 7px;
margin-right: 5px;
}

.event_dl_01 dd{
font-weight: 700;
font-size: 3.6rem;
color: #E50012;
margin-right: 1em;
}

.event_dl_01 dd b{
font-weight: 700;
font-size: 4.1rem;
}

.event_dl_01 dd span{
font-weight: 700;
font-size: 1.8rem;
background: #E50012;
color: #fff;
padding: 0 0.3em;
border-radius: 5px;
margin-left: 10px;
}

.event_dl_02{
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 10px;
}
.event_dl_02 dt{
font-weight: 400;
font-size: 1.8rem;
background: #F0F0F0;
padding: 0.5em 0.5em 0.5em 1em;
}

.event_dl_02 dt::after{
content: "｜";
margin-left: 0.5em;
}

.event_dl_02 dd{
font-weight: 400;
font-size: 1.8rem;
background: #F0F0F0;
padding: 0.5em 1em 0.5em 0;
}

.honbun_01{
font-weight: 600;
font-size: 2.0rem;
  margin-top: 30px;
}

.event_img_01{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 30px 0;
}

.event_img_01 li{
width: 32%;
}

.event_midashi_02{
background: #E50012;
color: #fff;
font-weight: 500;
font-size: 2.0rem;
padding: 0.2em 0.5em 0.3em 0.9em;
border-radius: 10px;
}

.event_list_01{
display: flex;
flex-direction: column;
flex-wrap: wrap;
height: 130px;
}

.event_list_01 li{
font-weight: 500;
font-size: 2.0rem;
margin-top: 10px;
width: 50%;
padding-left: 1em;
}

.event_list_01 li::before{
content: "・";
margin-left: -1em;
}

.caution_dl{
border: #E50012 1px solid;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 1% 2%;
border-radius: 10px;
margin-top: 10px;
}

.caution_dl dt{
font-weight: 500;
font-size: 1.8rem;
color: #E50012;
width: 8%;
}

.caution_dl dd{
font-weight: 500;
font-size: 1.5rem;
width: 92%;
margin-top: 2px;
}

.two_c{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 30px;
margin-bottom: 30px;
}

.two_c div{
width: 48%;
}

.event_data_dl{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.two_c div iframe{
width: 100%;
height: 260px;
margin-top: 20px;
}

.event_data_dl dt{
font-weight: 600;
font-size: 2.2rem;
color: #E50012;
position: relative;
padding-left: 7%;
width: 24%;
border-bottom: #000000 1px dashed;
margin-bottom: 25px;
padding-bottom: 25px;
}

.event_data_dl dt:last-of-type{
border-bottom: none;
margin-bottom: 0px;
padding-bottom: 0px;
}

.event_data_dl dt img{
width: auto;
height: 30px;
position: absolute;
top: 2px;
left: 0;
}
.event_data_dl dd{
width: 69%;
font-weight: 700;
font-size: 2.5rem;
line-height: 130%;
border-bottom: #000000 1px dashed;
margin-bottom: 25px;
padding-bottom: 25px;
}

.event_data_dl dd:last-of-type{
border-bottom: none;
margin-bottom: 0px;
padding-bottom: 0px;
}

.event_data_dl dd span{
font-weight: 700;
font-size: 1.7rem;
}

.event_data_dl dd p{
font-weight: 400;
font-size: 1.8rem;
}

.halloween{
  background: url(../img/ba01.jpg) no-repeat;
  background-size: 100% 100%;
  border-radius: 40px;
  text-align: center;
  padding: 15% 0 20% 0;
}

.center{
  text-align: center;
  display: inline;
}

.flexcenter{
  justify-content: center;
}

.cs{
  width: 370px;
  display: block;
  margin: 25px auto;
}

.number02{
text-align: center;
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size: 4.0rem;
background: #DA5B2E;
color: #fff;
display: inline-block;
border-radius: 100px;
padding: 23px 30px;
}

.main_section_02{
width: 100%;
background: #fff;
padding: 10% 0;
position: relative;
/*z-index: 9;*/
}

.main_section_02 > section{
width: 1200px;
margin: 0 auto;
}

.voice_list{
  display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.voice_list li{
  width: 44%;
  padding: 3% 2%;
  border: #D5592D 4px solid;
  border-radius: 40px;
  position: relative;
  font-weight: 600;
font-size: 3.5rem;
margin-bottom: 20px;
cursor: pointer;
}

.voice_list li img{
  width: 76px;
  position: absolute;
  top: 15px;
  right: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


/* アニメーション対象 */
.modal.show .modal-content {
  animation: fadeIn 0.5s ease-out;
}

/* アニメーション定義 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
position: relative;
z-index: 99999;
  background-color: #fff;
  padding: 30px;
  width: 80%;
  max-width: 500px;
  border: #BFFD91 4px solid;
  text-align: center;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;

  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.close {
  color: #000;
  font-size: 28px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  background: #BFFD91;
  border-radius: 50px;
  padding: 0 0.3em 0.1em 0.3em;
}


.modal-content h3{
  background: #DA5B2E;
  color: #fff;
  font-size: 2.5rem;
font-weight: 500;
text-align: center;
display: inline-block;
padding: 0.2em 0.8em;
border-radius: 20px;
}

.report_comment{
margin-bottom: 10%;
}

.report_comment li{
margin-bottom: 3%;
}

.report_comment dl dd p{
font-weight: 700;
color: #000000;
}


.green dl{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
}

.green dl dt{
width: 14%;
}

.green dl dd{
width: 80%;
border-radius: 30px;
position: relative;
margin-top: 50px;
}

.green dl dd{
background: #BFFD91;
}

.green dl dd img{
width: 35px;
position: absolute;
top: 10px;
left: -30px;
}

.orange dl{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
}

.orange dl dt{
order: 2;
width: 14%;
}

.orange dl dd{
order: 1;
width: 80%;
border-radius: 30px;
position: relative;
margin-top: 50px;
}

.orange dl dd{
background: #FDE491;
}

.orange dl dd img{
width: 35px;
position: absolute;
top: 10px;
right: -30px;
}

.comments_line li dl dd p{
padding: 3% 5%;
font-size: 1.8rem;
font-weight: 500;
text-align: left;
}

.main_section_03{
width: 100%;
background: #DB5B2E;
padding: 5% 0 5% 0;
position: relative;
z-index: 9;
}

.main_section_03 > section{
width: 1200px;
margin: 0 auto;
}


.faq_over{
width: 120%;
margin-left: -10%;
}

.faq_box{
background: #fff;
border-radius: 40px;
height: auto!important;
}

.q{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 15px;
padding: 7% 7% 0 7%;
}

.q dt{
width: 12%;
background: #E50012;
color: #fff;
font-size: 2.8rem;
font-weight: 500;
text-align: center;
line-height: 1em;
padding: 0.2em 0em 0.4em 0em;
border-radius: 10px;
}

.q dd{
font-size: 2.5rem;
font-weight: 500;
width: 85%;
margin-top: -5px;
}

.a{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
padding: 0% 7% 7% 7%;
}

.a dt{
width: 12%;
background: #FFFF00;
color: #E50012;
font-size: 2.8rem;
font-weight: 500;
text-align: center;
line-height: 1em;
padding: 0.2em 0em 0.4em 0em;
border-radius: 10px;
}

.a dd{
font-size: 1.7rem;
font-weight: 400;
width: 85%;
margin-top: -5px;
line-height: 2em;
}


.swiper-pagination-bullets{
background: #fff;
padding: 0;
border-radius:20px;
display: block !important;
position: relative!important;
  margin: 0 auto!important;
margin-top: 40px !important;
display: block;
width: 200px !important;
  padding: 1%;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  display: inline-block;
  border-radius: 100%;
  border: 2px #E50012 solid;
  background: #fff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #E50012 !important;
}

footer{
padding: 55px 0;
text-align: center;
background: #fff;
}

footer img{
width: 400px;
margin-bottom: 35px;
}

footer p{
font-size: 2.2rem;
font-weight: 400;
line-height: 1.8em;
}
