@charset "UTF-8";


.list{
    
    max-height:500px;
    min-height:150px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  
    width:100%;
   
    overflow-y: scroll;
    background-color: #fff;
    justify-content: center;
    align-items: center;
   
}
.listEdge{
  
    padding-bottom: 5%;
    width:90%;
    margin:0 auto;
   
}

.card{
  transform:scale(0.9);
 

}

@media screen and (min-width:1024px){
.list{
  max-height:330px;
  min-height:150px;
 margin-top:40px;
  padding:10px;
}

   .listEdge{
    width:68%;
   }
}





/* モーダルと背景の指定 */
.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 5000;
  }
  
  /* モーダルの擬似要素の指定 */
  .modal:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
  }
  
  /* クラスが追加された時の指定 */
  .modal.is-active{
    opacity: 1;
    visibility: visible;
  }
  
  #overlay{
    background: var(--themelightnavy);
    opacity: .8;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9800;
  }

  /* overlay1とoverlayクラスのスタイル */
  #overlay1, .overlay {
    background: rgba(0, 0, 0, 0.8); /* 透明度の高い黒 */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9800;
    transition: opacity 0.3s ease;
  }

  /* intro.jsのオーバーレイとヘルパーがモーダルより前面に表示されるように（9999未満） */
  .introjs-overlay {
    z-index: 9200 !important;
    transition: all 0.3s ease-in-out !important;
  }

  .introjs-helperLayer {
    z-index: 9300 !important;
  }

  .introjs-tooltipReferenceLayer {
    z-index: 9400 !important;
  }
  
  /* モーダル内側の指定 */
  .modal-window{
      position: fixed;
      display: none;
      width: 90%;
      max-width: 600px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 9100;
      margin:0 auto;
  
  }
  
  
  
  /* モーダルを閉じるボタンの指定 */
  .modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background:var(--themered);
    border-radius: 50%;
    cursor: pointer;
    z-index:999;
  }
  
  .modal_scroll{
      max-height: 500px;
      /* overflow-y: scroll; */
  
  }

  
  /* モーダルのコンテンツ部分の指定 */
  .modal-content{
    background: var(--themewhite);
    text-align: left;
    line-height: 1.8;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    border-radius: 12px;
    align-items: center;
    position: relative;
    width:80%;
    margin:0 auto;
    padding-bottom:20px;
  }
  .modal-help{
    position:absolute;
    right:30px;
    top:10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--themered);
    color: var(--themewhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .modal-help:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  .modal-title{
    font-weight: bold;
    font-size: 15px;
    color: var(--themered);
  }
  .modal_search{
    font-size:12px;
    width:70%;
    height:30px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  .modal_search::before{
    content:"→";
    right:3px;
    top:50%;
    transform: translateY(-50%);
  }
  .modal_btn {
      display: flex;
      width: 100%;
      max-width: 440px;
      gap: 10px;
      flex-direction: row;
      transition: all .5s;
      align-items: flex-start;
      justify-content: center;
  }
  .modal_btn:nth-of-type(even){
      flex-direction: row-reverse;
  }
  .modal_btn img{
     width: 40%;
     height:fit-content;
     aspect-ratio: 3/2;
  }
  
  .modal_title{
     font-family: "Shippori Mincho", serif;
     font-weight: 700;
     border-bottom: 1px solid var(--themered);
     margin-bottom: 5px;
    margin-top:35px;
    font-size:15px;
  
  }
  .modal_detail{
      font-size: 0.7em;
  }
  
  .modal_btn:hover{
    transform: scale(1.05);
  }
  
  
  
  
  
  
  
  
  /* モーダルを開くボタン */

  .card-plus-open{
    display: block;
    width: 80%;
    border: 1.5px solid var(--themered);
    color: var(--themered);
    height: 50px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
  }
  .card-plus-open p{
    transform: translateY(-50%);
    top: 50%;
    text-align: center;
    position: relative;
    color: var(--themered);
    cursor: pointer;
  }
  #schedule .card-plus{
    margin-top:30px;
  }
  .modal-open{
    display: block;
        width: fit-content;
        
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    font-size: 12px;
    
    padding: 0.6em 3.5em;
    position: relative;
    transition: all .3s;
    cursor: pointer;
    color: var(--themered);
    border:1.5px solid var(--themered);
    background-color: var(--themewhite);
  }
  .modal-open::before{
      position: absolute;
      content: "";
      display: block;
      width: 0.8em;
      height: 1px;
      background-color:var(--themered);
      right: 13px;
      top: 50%;
      transform: translate(0, -50%);
  }
  .modal-open::after{
  position: absolute;
      content: "";
      display: block;
      width:0.8em;
      height: 1px;
      background-color: var(--themered);
      right: 13px;
      top: 50%;
      transform: translate(0, -50%) rotate(90deg);
    
  }
  
  
  .modal-open:hover{
    background: var(--themered);
    color: var(--themewhite);
  }
  
  
 
  #modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }

  #modal .modal-content {
    background-color: #fefefe;
    margin: 30vh auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
  }

  #modal.is-hidden {
    display: none;
  }

  #modal.is-shown {
    display: block;
  }

  #modal .close {
    color: #aaa;
    float: right;
    font-size: 100%;
    font-weight: bold;
  }

  #modal .close:hover,
  #modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  .wave {
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-top: -50px;
    z-index: -1;
}
.wave img {
    position: relative;
    display: block;
    width: calc(143% + 1.3px);
    height: 119px;
    max-width: 100%;
}


#overlay-new {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9800;
}

.modal-window-new {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--mg-orange);
    z-index: 9900;
    width: 80%;
    border-radius: 12px;
    max-width: 600px;
}


/* modal-open-new */
.modal-open-new{
    display: block;
        width: fit-content;
        margin: 3% auto 0 auto;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    font-size: 12px;
    border-radius: 9999px;
    padding: 0.6em 3.5em;
    position: relative;
    transition: all .3s;
    cursor: pointer;
    color: var(--themered);
    border:1.5px solid var(--themered);
  }
  .modal-open-new::before{
      position: absolute;
      content: "";
      display: block;
      width: 0.8em;
      height: 1px;
      background-color: var(--themered);
      right: 13px;
      top: 50%;
      transform: translate(0, -50%);
  }
  .modal-open-new::after{
  position: absolute;
      content: "";
      display: block;
      width:0.8em;
      height: 1px;
      background-color: var(--themered);
      right: 13px;
      top: 50%;
      transform: translate(0, -50%) rotate(90deg);
      transition: all .3s;
  }
  
  
  .modal-open-new:hover{
    background: var(--mg-orange);
    color: var(--white);
    border-color: var(--mg-orange);
  }

  .modal-open-new:hover::before,.modal-open-new:hover::after{
    background-color: var(--white);
}

.modal-close-new{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background:var(--mg-brown);
    border-radius: 50%;
    cursor: pointer;
  }

.modal-content-new{
    width: 100%;
    height: 100%;
}

.stampcard{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 8px;
    margin-top: 10px;
    grid-template-rows: 1fr 40px;
    align-items: center;
    justify-items: center;
    margin: 5px 10px;
}
.card_name{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 8px;
    
}

.stamp{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 200px;
    flex-flow: column;

}

.name p{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.7em;
}


.stamp img{
    width: 80%;
}

.midashi2{
    padding: 0 10%;
}

.h3_wrapper span, .h3_wrapper span::before, .h3_wrapper span::after{
    background: var(--white);
}

h3{
    color: var(--mg-brown);
}
.h3_wrapper{
    translate: -10px;
}
.card_explain{
    background: var(--mg-ivory);
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.card_title, .stamp_card, .card_name, .card_explain{
    margin: 0 20px;
}
.stamp p{
    font-size: 8px;
}


.card_btn button{
    width: 100%;
    margin-top: 10px;
    height: 50px;
    background-color: var(--mg-beige);
    border: none;
    border-radius: 0 0 5px 5px;
    font-family: "Shippori Mincho", serif;
}

.modal-content img{
  aspect-ratio: 1 / 1;
  height: calc(70px + 100vh/20);
}

.favevent_h1 h1{
  margin-bottom: 0;
  padding-bottom: 30px;
  background: var(--white);
}

button.disabled {
  background-color: #d3d3d3; /* 灰色 */
  color: #a9a9a9; /* テキストの色 */
  border: 1px solid #c0c0c0; /* 灰色の枠線 */
  cursor: not-allowed; /* 押せないカーソル */
}

.confetti {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 10px;
  background-color: #ffcc00;
  opacity: 0.8;
  border-radius: 50%;
  pointer-events: none;
  animation: fall linear infinite;
  z-index: 500;
}

.genre-filter img{
  width:30px;
  height:30px;
}

.genre-filter {
  /* display: flex; */
  /* gap: 10px; */
  /* margin: 10px auto; */
  /* width: 80%; */
  /* justify-content: center; */
  /* flex-wrap: wrap; */
  display: flex;
  /* gap: 20px; */
  /* margin: 20px auto; */
  padding: 0 10%;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  /* margin: 0 30px; */
  margin-bottom: 20px;
}

.genre-btn {
  width: 70px;
  height: 90px;
  cursor: pointer;
  transition: transform 0.2s;
  background-color: var(--themewhite);
  border:none;
  color:var(--themeblack);
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
}



.genre-btn.active {
 opacity: 1;
}
.genre-btn.active img {
  color:var(--themered)
}

.genre-label {
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
  color: var(--themeblack);
  font-family: "Noto Serif JP", serif;
}

/* 日付絞り込み */
.date-filter {
  display: flex;
  /* gap: 10px; */
  /* margin: 20px auto; */
  padding: 0 10%;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  /* margin: 0 30px; */
  margin-bottom: 20px;
}

.date-btn {
  /* padding: 8px 16px; */
  padding-bottom: 10px;
  padding-top:10px;
  cursor: pointer;
  transition: all 0.2s;
  background-color: transparent;
  border: none;
  opacity: 0.5;
  font-size: 12px;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  text-align: center;
  /* width: 140px; */
  color:var(--themeblack);
  width: calc( 100% / 4);
  /* width: calc((100%) / 4); */
}

.date-btn.active{
  font-weight:bold;
  opacity:1;
  background-color:var(--beige40);
  color:var(--themered);
}

.date-btn::before{
  position:absolute;
  content:"";
  background-color:var(--themered);
  width:0px;
  height:2px;
  border-radius:9999px;
  bottom:0;
  left:50%;
  transform:translateX(-50%)
  
}
.date-btn.active::before{
   width:100%;
}

#clear-btn, #clear-date-btn {
  padding: 3px 16px;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid var(--themered);
  border-radius: 20px;
  color: var(--themered);
  font-weight: bold;
  font-size: 10px;
  transition: all 0.2s;
  font-family: "Noto Serif JP", serif;
  width: 66px;
  height: 39px;
}

/* #clear-date-btn{
  margin:0 auto;
  
} */


#clear-btn p, #clear-date-btn p {
  margin: 0;
  font-size: 10px;
  color: var(--themered);
}

@keyframes fall {
  to {
      transform: translateY(100vh) rotateZ(360deg);
      opacity: 0;
  }
}



/* サブタブの部分 */
.subtab_area {
  display: flex;
  margin-top:30px;
  margin-bottom: 30px;
  justify-content:center;
}

.subtab_btn {
  padding: 8px 16px;
  background: #efe7de;
  text-align:center;
  cursor: pointer;
  text-decoration: none;
  color: var(--themebeige);
  position:relative;
  width:130px;
  font-weight:bold;
}
.subtab_btn.active::before{
  position:absolute;
  content:"";
  border-top: 7px solid var(--themered);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
}


.subtab_btn.active {
  background: var(--themered);
  color: var(--themewhite);
}

.subtab_panel {
  display: none;
}
.subtab_panel.active {
  display: block;
  position:relative;
  top:-10px;
}


/* 日付タブ */
.daypanel_area{
  padding-top:20px;
}
.daytab_area{
  display:flex;
  width:100%;
}
.daytab_btn {
  width:calc(100% / 3);
  padding: 6px 14px;
  background: var(--beige40);
 text-align:center;
  cursor: pointer;
  text-decoration: none;
  color: var(--themebeige);
  transition: background 0.3s, color 0.3s;
  border-radius: 10px 10px 0 0;
}

.daytab_btn:hover {
  background: var(--decoration);
  color: white;
}

.daytab_btn.active {
  background: var(--decoration);
  color: white;
  font-weight: bold;
}
.daytab_panel {
  display: none;
}
.daytab_panel.active {
  display: block;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  width:100%;
  position: relative;
}



.daypanel_area .card{
 padding:8px !important;
 border-radius: 8px;
 background-color: #fefefe;
}
/* My企画リスト部分 */
.timepoint{
  font-size: 13px;
  display: grid;
  grid-template-rows: repeat(120, 10px);
  margin-right: 3%;
  margin-top: 31px;
}
.timepoint.day1day2 {
  grid-template-rows: repeat(84, 10px);
}
.timepoint.lastday {
  grid-template-rows: repeat(60, 10px);
}


#line00 {
  grid-row-start: 1;
}
#line01{
  grid-row-start: calc(1 + 12*1);
}
#line02{
  grid-row-start: calc(1 + 12*2);
}
#line03{
  grid-row-start: calc(1 + 12*3);
}
#line04{
  grid-row-start: calc(1 + 12*4);
}
#line05{
  grid-row-start: calc(1 + 12*5);
}
#line06{
  grid-row-start: calc(1 + 12*6);
}
#line07{
  grid-row-start: calc(1 + 12*7);
}
#line08{
  grid-row-start: calc(1 + 12*8);
}
#line09{
  grid-row-start: calc(1 + 12*9);
}
#line10{
  grid-row-start: calc(1 + 12*10);
}


/* 使い方の部分 */
button{
  cursor: pointer;
}
.introduction-toggle{
  display: block;
  width: fit-content;
  margin: 10% auto 5% auto;
border:none;
}


@media screen and (min-width:1024px){
/*レスポンシブ用*/
.midashi2{
    padding: 0 15%;
}

p{

}

h1{


}

h2{


}
.modal-content{
  padding-bottom:30px;
}
.modal-open{
  width:450px;
  font-size:16px;
}
.modal-window-new{
    width: 60%;
}

.stamp p{
    font-size: 12px;
}

.modalbtn-wrapper{
    display: flex;
    width: 50%;
    margin: 0 auto;
    justify-content: center;
}
.modal_title{
  font-size:20px;
  border-width: 2px;;
}
.modal-help{
  width:40px;
  height:40px;
}

.card-plus-open{
  width:65%;
  border-style: dashed;
}


#schedule .card-plus{
  margin-top:50px;

}
.genre-btn:hover {
  transform: scale(1.1);
}

#schedule .card-plus-open{
  width:450px;
}
#clear-btn, #clear-date-btn{
 
  width:80px;
  height:40px;
}
#clear-btn p, #clear-date-btn p {
  font-size:14px;
}

#clear-btn:hover, #clear-date-btn:hover {
  background-color: var(--themered);
  color: var(--themewhite);
}

#clear-btn:hover p, #clear-date-btn:hover p {
  color: var(--themewhite);
}
.date-filter{
  width:70%;
  margin: 10px auto;
  padding:0;
  margin-bottom: 20px
}
  .date-btn{
    width: calc((100% - 120px) / 3);
    font-size:16px;
}
.date-btn:hover{
  font-weight:bold;
  opacity:.4;
}
.date-btn:hover::before{
  width:100%;
  background-color:var(--themeblack);
}
  .genre-filter{
     width:70%;
  margin: 10px auto;
  padding:0;
    
  }
  .genre-label{
    font-size:15px;
  }
}




/*タブ切り替え*/
.tab_box {
  display: inline-block;
  width: 100%;
  margin:3% 0;
}
.btn_area{
  display: flex;
  width: 100%;
  justify-content: center;
}
.btn_area_genre > .tab_btn{
    font-size: .8em;
}
.tab_btn{
  /* width: calc(90%/3); */
  width: calc(90%/2);
  max-width: 300px;
  opacity: .5;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  color: var(--themeblack);
  padding: .8em 0;
  cursor: pointer;
  
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  
}




.tab_btn:hover{
  opacity: 1;
}




.panel_area {
    width: 100%;
    
}

.tab_panel{
  display: none;
}






.tab_panel.active{  display: block;
  border-top: 2px solid var(--themebeige);}
.tab_btn.active{background-color: var(--themewhite);
  border: 1.5px solid var(--themebeige);
 border-bottom: none;
opacity: 1;
color:var(--themered);
position:relative;}
.tab_btn.active::before{
  position:absolute;
  width:100%;
  height:5px;
  background-color: var(--themewhite);
  bottom:-3px;
  content:"";

}


@media screen and (min-width:1024px){
  .subtab_area{
    margin-top:50px;
  }
  .subtab_btn{
    width:200px
  }
  .daytab_area{
    justify-content:center;
  }
  .daytab_btn{
    width: calc(70% / 3);
  }
  .daytab_panel.active::before{
    height:2px;
    width:100%;
    position:absolute;
    content:"";
    background-color:var(--decoration);
    top:-20px
  }
  .daytab_panel.active{
    flex-wrap:wrap;
    /* width: 310px; */
    padding: 10px auto;
    /* margin: 10% auto; */
  }
  .list_card-wrapper{
    width:70%;
    flex-wrap:wrap;
    display:flex;
    justify-content: center;
  }
  .list_card-wrapper .card{
    width:310px;
  }
  
}



/*タブ切り替え　fin*/


/* 基本機能 */
h3{
  position:relative;
  padding: 0 10%;
}
h3::before{
  position:absolute;
  content:"";
  width:160px;
  height:1px;
  background-color:var(--themeblack);
  top:50%;
  right:10%;
  border-radius:9999px
}

@media screen and (min-width:1024px){

  h3{
    width: 70%;
    margin:0 auto;
    padding:0;
    
      
    }
    h3::before{
      width:525px;
      right:0;
      height:2px;
      
    }

}


/* Introjs関連 */

.introjs-tooltip{
  background-color:var(--themewhite) !important;
  border:2px solid var(--themered) !important;
  border-radius:5px !important;
  transition: all 0.3s ease-in-out !important;
}
.introjs-tooltiptext{
  padding:10px !important;
  font-family:'Noto Serif JP', serif !important;
  background-color:white !important;
  width:90% !important;
  margin:5px auto !important;
box-shadow: 2px 2px 2px 2px white !important;
font-size:12px !important;
}

.introjs-bullets ul li a{
  background:var(--beige40) !important;
  
}
.introjs-bullets ul li a.active{
  background:var(--themebeige) !important;
}
.introjs-button{
  border: 2px solid var(--themered) !important;
  color:var(--themeblack) !important;
  border-radius:30px !important;
}

.introjs-disabled{
  color:var(--beige40) !important;
  border-color: var(--beige40) !important;
}
.introjs-helperLayer{
  box-shadow: var(--themered) 0px 0px 1px 2px, rgba(33, 33, 33, 0.5) 0px 0px 0px 5000px !important;
  transition: all 0.3s ease-in-out !important;
}

/* スタート時専用スタイル（遅いアニメーション） */
.introjs-tooltip.initial-start {
  transition: all 1.2s ease-in-out !important;
}

.introjs-overlay.initial-start {
  transition: all 1.2s ease-in-out !important;
}

.introjs-helperLayer.initial-start {
  transition: all 1.2s ease-in-out !important;
}



/* ステップ2のツールチップ専用スタイル */
.introjs-tooltip.step4-tooltip {
  margin-top: 78px !important;
}

.introjs-tooltip.step5-tooltip {
  margin-left: 30px !important;
}

.introjs-arrow.bottom{
  border-top-color: var(--beige40) !important;
  
}
.introjs-arrow.top{
  border-bottom-color: var(--beige40) !important;
}
.introjs-button{
  font-family:serif !important;
}

@media screen and (min-width: 1024px) {
  .introjs-tooltip.step4-tooltip {
    margin-top: 15px !important;
  }
}

.wrap{
  width:70%}
  
  .scroll{
  width:95%;
  }
  
  .stage{
    width:50%;
  }
  
  @media screen and (min-width: 1024px) {
    .programname {
        font-size: 20px !important;
        width: 100%;
        max-height: 100px;
        
    }
     .introduction-toggle{
       margin:5% auto 3% auto;
    }
    .introjs-tooltiptext{
      font-size:15px !important;
    }
    .item.no-hover:hover{
      background-color: var(--beige40)!important;
    }
    .item:hover{
      background-color: var(--beige40)!important;
    }
}

.programname {
    font-weight: bold;
    width: 100%;
    margin: 0 2%;
    max-height: 60px;
    border-bottom: 2px solid var(--themered);
}
.no-fav-message-list{
  padding:0;
}