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

@media screen and (max-width: 768px) {

.sp{
	display:block;
	}

.pc{
	display:none;
	}


.line {
  width: 15%;
  position: fixed;
  bottom: auto;
  top: 2%;
  left: auto;
  right: 4%;
  z-index: 999;

  /* アニメーション */
  transform: translateY(20px);
  animation: slideInFromLeft 3s ease-out 0.2s forwards;
  opacity: 0;
}
@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hamburger-menu {
  display: block;
}

.menu-btn {
  position: fixed;
  bottom: 2%;
  right: 0px;
  display: flex;
  height: 50px;
  width: 140px;
  padding-bottom: 0px;
  border-radius: 30px 0 0 30px;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background-color: #000000;
  cursor: pointer;

  /* 表示時アニメーション */
  transform: translateY(20px);
  animation: slideInFromRight 3s ease-out 0.2s forwards;
  opacity: 0;
}

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

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

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

#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-btn-check {
  display: none;
}

.logo {
  width: 70%;
  padding: 5% 0 2% 5%;
}

.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;
}

.menu-content {
  width: 140px;
  height: 50px;
  position: fixed;
  bottom: 2%;
  right: 0;
  z-index: 999999;
  background-color: #000000;
  border-radius: 30px 0 0 30px;
  overflow-y: hidden;

  /* 初期アニメーション（出現） */
  transform: translateY(0px);
  animation: slideInFromRight 0s ease-out 3.0s forwards;
  opacity: 0;

  /* 開閉アニメーション設定 */
  transition: all 0.5s ease;
}

/* 開いた状態のクラス（JSで追加） */
.menu-content.open {
  width: 240px;
  height: 280px;
  opacity: 1;
  transform: translateY(0);
}


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

  transform: translateY(20px);
  animation: slideInFromLeft 3s ease-out 0.2s forwards;
  opacity: 0;
}
*/


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

  transform: translateY(20px);
  animation: slideInFromLeft 3s ease-out 0.2s forwards;
  opacity: 0;
}


.line_btn img{
width: 30px;
position: fixed;
top: 12px;
right: 12px;
}



header{
overflow: hidden;
height: auto;
position: relative;
padding-bottom: 15%;
}

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

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

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

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

/* タイピングテキスト */
    #typing-container {
      position: relative;
      z-index: 10;
/*      padding-left: 3.5%;*/
      white-space: pre-wrap;
      font-size: 1.8rem;
      font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
  bottom: auto;
  left: auto;
  width: 90%;
  margin: 0 auto;
  line-height: 220%;
    }

    #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;
    }

  .cursor {
    display: none;
  }

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

    /* 円のアニメーション */
    .circle {
      position: absolute;
      top: 50%;
      left: 50%;
      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;
    }
    
    
.demo{
width: 90%;
position: absolute;
top: 33%;
right: 5%;
z-index: 9;
}


.top_img{
width: 90%;
margin: 0 auto;
aspect-ratio: 10 / 9.5;
position: relative;
top: auto;
right: auto;
z-index: 9;
display: block;
margin-bottom: 10%;
/*background: #000000;*/
/*opacity: 0.5;*/
}

.top01{
width: 10%;
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: 30%;
position: absolute;
top: -23%;
right: 38%;
z-index: 9;
}

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



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

.main_section_01 > section{
width: 90%;
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: 3.0rem;
color: #fff;
margin-bottom: 15px;
}

h2 b{
font-weight: 700;
font-size: 2.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: 1.3rem;
color: #FFFF00;
}

.event_list{
margin-top: 25px;
}

.event_list > li{
position: relative;
  width: 82%;
  padding: 2% 9%;
  margin-bottom: 25px;
  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: 4.0rem;
  position: absolute;
  top: -5px;
  right: -10px;
  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;
  padding-bottom: 20px;
}

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



.event_midashi_01{
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size: 2.5rem;
display: block;
align-items: center;
justify-content: center;
padding-top: 5%;
padding-bottom: 3%;
line-height: 120%;
text-align: center;
width: 100%;
}

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

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

.event_dl_01 dt{
font-weight: 600;
font-size: 1.4rem;
background: #000000;
color: #fff;
border-radius: 5px;
padding: 0 0.5em 3px 0.5em;
margin-top: 7px;
margin-right: 5px;
width: 17%;
text-align: center;
}

.event_dl_01 dd{
font-weight: 700;
font-size: 2.0rem;
color: #E50012;
margin-right: 0;
width: 75%;
position: relative;
}

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

.event_dl_01 dd span{
font-weight: 700;
font-size: 1.4rem;
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;
background: #F0F0F0;

margin-top: 10px;
}
.event_dl_02 dt{
font-weight: 400;
font-size: 1.4rem;
background: #F0F0F0;
padding: 0.3em 0 0.3em 2%;
width: 28%;
text-align: center;
}

.event_dl_02 dt::after{
content: "｜";
margin-left: 2%;
}

.event_dl_02 dd{
font-weight: 400;
font-size: 1.4rem;
background: #F0F0F0;
padding: 0.3em 0 0.3em 0;
width: 70%;
}

.honbun_01{
font-weight: 600;
font-size: 1.5rem;
  margin-top: 15px;
}

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

.event_img_01 li:nth-of-type(1){
width: 100%;
margin-bottom: 2%;
}
.event_img_01 li:nth-of-type(2){
width: 48%;
}
.event_img_01 li:nth-of-type(3){
width: 48%;
}

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

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

.event_list_01 li{
font-weight: 500;
font-size: 1.4rem;
margin-top: 3px;
width: 95%;
padding-left: 5%;
}

.event_list_01 li::before{
content: "・";
margin-left: -5%;
}

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

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

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


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

.two_c div{
width: 100%;
}

.two_c div iframe{
width: 100%;
height: 200px;
margin-top: 10px;
margin-bottom: 10px;
}

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

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

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

.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.5rem;
}

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

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

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

.flexcenter{
  justify-content: flex-start;
  text-align: left;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.cs{
  width: 50%;
  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: 2.5rem;
background: #DA5B2E;
color: #fff;
display: inline-block;
border-radius: 100px;
padding: 10px 14px;
margin: 20px 0;
}



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

.main_section_02 > section{
width: 90%;
margin: 0 auto;
}


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

.main_section_03 > section{
width: 90%;
margin: 0 auto;
}



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

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

.voice_list li img{
  width: 12%;
  position: absolute;
  top: 12%;
  right: 20px;
}


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

.modal-content {
  background-color: #fff;
/*  margin: auto;*/
  padding: 15px;
  /* border-radius: 50px; */
  width: 70%;
  max-width: 70%;
  position: relative;
  border: #BFFD91 4px solid;
  text-align: center;
  max-height: 60vh;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 9999999999;
}

.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: 1.8rem;
font-weight: 500;
text-align: center;
display: inline-block;
padding: 1em 0.8em;
border-radius: 20px;
line-height: 70%;
}

.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: 15%;
}

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

.green dl dd{
background: #BFFD91;
}

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

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

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

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

.orange dl dd{
background: #FDE491;
}

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

.comments_line li dl dd p{
padding: 7% 10%;
font-size: 1.4rem;
font-weight: 500;
text-align: left;
}




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

.faq_box{
background: #fff;
border-radius: 20px;
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: 1.5rem;
font-weight: 500;
text-align: center;
line-height: 1em;
padding: 0.2em 0.2em 0.4em 0.2em;
border-radius: 10px;
}

.q dd{
font-size: 1.8rem;
font-weight: 500;
width: 80%;
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: 1.5rem;
font-weight: 500;
text-align: center;
line-height: 1em;
padding: 0.2em 0.2em 0.4em 0.2em;
border-radius: 10px;
}

.a dd{
font-size: 1.6rem;
font-weight: 400;
width: 80%;
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: 150px !important;
  padding: 2%;
}
.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !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 100px 0;
text-align: center;
background: #fff;
}

footer img{
width: 70%;
margin-bottom: 20px;
}

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

}
