@charset "UTF-8";
  html{font-size: 62.5%;}
  body{
    font-size: 1.6rem;
    font-family: 'FOT-SeuratPro-M', sans-serif;
    min-width: 390px;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%!important;
  }
  *{
    list-style: none;
    color: #333333;
  }
  img {max-width: 100%;}
  .flex {display: flex;}
  .absolute{position: absolute;}
  .bold{font-family: 'FOT-SeuratPro-DB', sans-serif;}

  main {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
  }

  .wrapper_box {
    position: relative;
    -webkit-box-align: start;
	  -ms-flex-align: start;
	  align-items: flex-start;
  }

  .fixed-area{
    position: fixed;
    top: 0;
    width: calc(50% - 195px);
  }
  .left.fixed-area{left: 0;}
  .right.fixed-area{right: 0;}
  .left_navi {
    height: 480px;
    /* width: 415px; */
    width: 250px;
    background-color: rgb(255, 255, 255, .8);
    padding: 20px;
    border-radius: 15px;

    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .left_navi .navi-box{
    position: relative;
    margin-top: 140px;
  }
  .main_logo{
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    /* width: 100%; */
  }

  .btn_area {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .btn_area img {
    height: 30px;
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
  }

  .button_txt {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    font-family: 'FOT-SeuratPro-DB', sans-serif;
  }

  .txt_red {
    color: #E85377;
  }
  .left_navi .btn{
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 50px;
    max-width: 330px;
    text-align: center;
    margin: 0 auto;
    /* padding: 10px 15px; */
    border-radius: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .btn_red {border: solid 2px #E85377;}

  .left_navi .btn:hover {
    opacity: 0.8;
  }

  .txt_yellow {
    color: #ECA320;
    line-height: 30px;
  }

  .btn_yellow {border: solid 2px #ECA320;}
  .txt_green {color: #83BD3F;}
  .btn_green {border: solid 2px #83BD3F;}
  .txt_blue {
    color: #4DBDFD;
    line-height: 30px;
  }
  .btn_blue {border: solid 2px #4DBDFD;}
  .txt_search {
    color: #1d67bd;
    line-height: 30px;
  }

  .btn_search {
    background-color: #fff;
    position: relative;
    display: block;
    width: auto;
    height: 30px;
    max-width: 100px;
    text-align: center;
    margin: 0 auto;
    padding: 5px 15px;
    border-radius: 30px;
    border: solid 2px #1d67bd;
    margin-bottom: 15px;
  }

  .sns_incon {
    display: flex;
    gap: 20px;
    justify-content:center;
  }

  .right_navi {
    background-color: rgb(255, 255, 255, .8);
    padding: 20px;
    border-radius: 15px;
    height: 90vh;
    /* width: 415px; */
    width: 250px;

    position: absolute;
    top: 30px;
    right: 50%;
    transform: translateX(50%);
    overflow: scroll;
  }

  .search_title{  text-align: center;}
  .search_title p {
    font-size: 2rem;
    font-weight: bold;
  }

  .search_title small {
    font-size: 1.2rem;
  }

  .search_sabu{text-align: center;}
  .search_sabu_title {
    margin-top: 15px;
    align-items: center;
    justify-content: center;
  }

  .search_sabu_title img {
    width: 25px;
  }
  .search_sabu_title p {
   margin-left: 10px;
   line-height: normal;
   font-weight: bold;
   font-size: 1.6rem;
  }
  .trend_box {
    margin: 5px 5px 5px 0;
    padding: 2px 10px;
    border: solid 2px #1d67bd;
    border-radius: 500px;
    background-color: var(--hugmug-primary-color);
    color: #1d67bd;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 20px;
    background: #fff;
    display: inline-block;
  }

  .trend {
    flex-wrap: wrap;
    margin-top: 10px;
  }

aside {
	width: calc(30% - 26px);
	display: inline-block;
	margin-left: 20px;
	box-sizing: border-box;
	border: solid 1px;
}

/* ラジオボタン */
.container {
  display: block;
  position: relative;
  /* margin-bottom: 15px; */
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 10px;
  line-height: 20px;
  font-size: 1.2rem;
  text-align: left;
}

/* デフォルトのラジオボタンデザインを無効化 */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* カスタムラジオボタンの作成 */
.checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 1px #E85377;
}

.event_area_field li:nth-child(2) .checkmark {
  border: solid 1px #ECA320!important;
}
.event_area_field li:nth-child(3) .checkmark{
  border: solid 1px #83BD3F!important;
}
.event_area_field li:nth-child(4) .checkmark {
  border: solid 1px #1d67bd!important;
}
.event_area_field li:nth-child(5) .checkmark {
  border: solid 1px #8176b5!important;
}

.checkmark:hover {
  background-color: #ccc;
}

/* チェックした時のカラーリング */
.container input:checked ~ .checkmark {
  background-color: #fff;
  border: solid 1px #E85377;
}
.event_area_field li:nth-child(2) input:checked ~ .checkmark{
  border: solid 1px #ECA320!important;
}
.event_area_field li:nth-child(3) input:checked ~ .checkmark {
  border: solid 1px #83BD3F!important;
}
.event_area_field li:nth-child(4) input:checked ~ .checkmark {
  border: solid 1px #1d67bd!important;
}
.event_area_field li:nth-child(5) input:checked ~ .checkmark{
  border: solid 1px #8176b5!important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  /* top: 5px;
  left: 5px; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #E85377;
}

.event_area_field li:nth-child(2) .checkmark:after {
  background: #ECA320!important;
}
.event_area_field li:nth-child(3) .checkmark:after{
  background: #83BD3F!important;
}
.event_area_field li:nth-child(4) .checkmark:after{
  background: #1d67bd!important;
}
.event_area_field li:nth-child(5) .checkmark:after{
  background: #8176b5!important;
}

.selectbox-003 {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-align: center;
}

.selectbox-003::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
  margin-top: 15px;
}

.selectbox-003 select {
  appearance: none;
    min-width: 170px;
    height: 45px;
    padding: 10px;
    padding-left: 20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1.5rem;
    cursor: pointer;
    margin-top: 15px;
}

/* <--- main ---> */
.mv{
  position: relative;
  width: 100%;
  height: 100dvh;
}
.mv .logo{display: none;}
.mv .logo-copy{
  width: 500px;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}
.mv .scroll{
  width: 100px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.mv .scroll{
  width: 100px;
  left: 50%;
  bottom: -130px;
  transform: translateX(-50%);
  animation-name: sagappyUp;
  animation-duration: .5s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes sagappyUp {
  0% {bottom: -130px;}
  100% {bottom: -20px;}
}

.main_content {
  width: 445px;
  min-height: 2500px;
  margin: 0 auto;
  /* margin: 0px 45px 0 45px; */
  /* width: 100%; */
}
.main_content.top .copy{
  position: relative;
  padding: 80px 30px;
}
.main_content.top .copy .img{
  top: 40px;
  right: 10px;
  width: 80px;
}
.mv .img{
  width: 450px;
  bottom: 0;
  left: -20px;
}
.main_content_2 {
  width: 445px;
  margin: 0 auto;
  /* margin: 0px 45px 0 45px; */
  /* width: 100%; */
}
.main_content_2.top .copy{
  position: relative;
  padding: 80px 30px;
}
.main_content_2.top .copy .img{
  top: 40px;
  right: 10px;
  width: 80px;
}
section{
  position: relative;
  padding: 45px 20px 80px 20px;
}
section:nth-of-type(-n+3){
  padding:40px 20px 130px 20px;
}
section:last-of-type{padding: 60px 20px 80px 20px;}
.main_content.top .w-bg{background: #fff;}
.main_content.top h1{
  font-size: 1.8rem;
  text-align: center;
}
.main_content.top h1 span{
  display: block;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: solid 1px #dbdcdc;
}

.main_content section .icon{
  width: 40px;
  margin: 0 auto;
  padding-bottom: 10px;
}
.main_content_2.top .w-bg{background: #fff;}
.main_content_2.top h1{
  font-size: 1.8rem;
  text-align: center;
}
.main_content_2.top h1 span{
  display: block;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: solid 1px #dbdcdc;
}

.main_content_2 section .icon{
  width: 40px;
  margin: 0 auto;
  padding-bottom: 10px;
  margin-top: 70px;
}

.radiobox {
  font-size: 1.5rem;
  margin: 0 auto;
  width: 83%;
  margin-bottom: 60px;
}


.radiobutton {
  display: none;
}

.evnt_label {
  background-color: #fff;
  padding: 10px 13px;
  border-radius: 30px;
  border: solid 2px #E85377;
  cursor: pointer;
}
.evnt_label.btn_check {
  background-color: #E85377;
  color: #fff;
  border: solid 2px #fff;
}

/*ラジオボタンを全て消す*/
input[name="hoge"] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#radio1:checked ~ #radio1,
#radio2:checked ~ #radio2,
#radio3:checked ~ #radio3 {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.radiobutton + label {
  display: inline-block;
}
.radiobutton:checked + label {
  display: inline-block;
  background-color: #E85377;
  color: #fff;
  border-radius: 30px;
  border: solid 2px #fff;
  font-weight: bold;
}

.event_title{
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  font-weight: bold;
}
.top .event p{
  margin-bottom: 30px;
  line-height: 25px;
}

.theme_box_text {
  margin-bottom: 0px !important;
}

.top h2{
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  font-weight: bold;
}

.underlayer_title p {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 30px;
}

.top .event h3{
  margin-bottom: 50px;
  font-size: 11px;
  color: #5e5e5e;
}
.event.r-bg{background: #f09891;}
.event_top ul{
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.event_top ul li{
  position: relative;
  width: 310px;
  background: #fff;
  margin-bottom: 50px;
  padding: 20px;
}
.event_top ul li:last-of-type{margin-bottom: 0;}
.event_top ul li .thum{
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  margin-bottom: 10px;
}
.event_top ul li .thum img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.event_item_day, .event_item_txt{text-align: start;}
.event_item_day{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 2rem;
}
.event_item_txt{line-height: 1.4;}
.event .bottom{
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  pointer-events: none;
}

.event_item_day_1, .event_item_txt{text-align: start;}
.event_item_day_1{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.event .tape{
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  z-index: 2;
  color: #fff;
}
.event .tape::after{
  content: "";
  display: block;
  width: 140px;
  height: 40px;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.event .tape.blue::after{
  background-image: url(../images/tape_blue.png);
}
.event .tape.yellow::after{
  background-image: url(../images/tape_yellow.png);
}
.event .sagappy{
  top: 0px;
  right: -70px;
  width: 70px;
}
.event .sagappy.is_show{
  animation-name: EVEsaga-anm;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}
.event_item{
  position: relative;
  background: #fff;
  padding: 20px 20px;
  margin: 0 10px;
  border-radius: 5px;
  margin-bottom: 50px;
  padding-bottom: 5px;
}
.event_item a{
  padding: 20px;
}

.event_item img{
  width: 100%;
  height: 345px;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.event_item ul.slick-dots {
  margin-bottom: 55px;
}

.event_content_theme {
  background-color: #E85377 ;
  position: relative;
  padding: 20px;
  border-radius: 20px 20px 0px 0px;
 }

 .event_content_title {
   font-size: 2rem;
   text-align: left;
   margin-bottom: 8px;
   color: #fff;
   font-weight: bold;
   line-height: 25px;
   font-family: 'FOT-SeuratPro-DB', sans-serif;
 }

 .event_content small {
  font-size: 1.3rem;
  text-align: left;
  color: #fff;
}

.event_content .theme_box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
  margin-bottom: 50px;
 }
 .event_content .theme_box .bear{bottom: 0;}
 .event_content .theme_box .bear.left{
   left: -10px;
   width: 65px;
 }
 .event_content .theme_box .bear.right{
   right: -10px;
   width: 75px;
 }
 .event_content .theme_box .pink {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 5px;
  text-align: left;
  color: #E85377;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}
 .event_content .theme_box p{
   font-size: 1.5rem;
   line-height: 1.6;
   text-align: left;
   font-feature-settings: "palt";
   margin-bottom: 0px!important;
   word-break: break-all;
 }

 .event_content_detail .title{
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #000;
}

.event_content_detail .box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 50px;
  display: flex;
}

.event_content_detail .title_nenrei {
  background-color: #E85377;
  padding: 10px;
  width: 30%;
  height: 20px;
  border-radius: 6px;
  position: relative;
  margin-top: 0px;
  margin-right: 30px;
}

.event_content_detail .title_nenrei p {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.event_content_detail .box .contents li {
  margin: 2px 0px 5px 23px;
  text-indent: -2.3em;
}

.event_content_detail .box .contents .nenrei_pink_1 {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin: 5px 10px 0 0;
  border-radius: 50%;
  background-color: #E85377;
  box-sizing: border-box;
  vertical-align: -7px;
}

.event_content_detail .box .contents .nenrei_pink_2 {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin: 5px 10px 0 0;
  border-radius: 50%;
  background-color: #fff;
  border: solid 2px #E85377;
  box-sizing: border-box;
  vertical-align: -7px;
}

.contents_detail_txt {
  font-size: 1.4rem;
  display: contents;
}

.top h2{
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}
.top .event h2{
  margin-bottom: 40px;
}

.top .event h3{
  margin-bottom: 50px;
  font-size: 11px;
  color: #5e5e5e;
}
.event.r-bg{background: #f09891;}
.event_archive ul{
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.event_archive ul li{
  position: relative;
  margin-bottom: 10px;
}
.event_archive ul li:last-of-type{margin-bottom: 0;}
.event_archive ul li .thum{
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  margin-bottom: 5px;
}
.event_archive ul li .thum img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.event_archive ul li .day, .event_archive ul li .txt{text-align: start;}
.event_archive ul li .day{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.event_archive ul li .txt{line-height: 1.4;}
.event .bottom{
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
}
.event .tape{
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  z-index: 2;
  color: #fff;
}
.event .tape::after{
  content: "";
  display: block;
  width: 140px;
  height: 40px;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.event .tape.blue::after{
  background-image: url(../images/tape_blue.png);
}
.event .tape.yellow::after{
  background-image: url(../images/tape_yellow.png);
}



.event_content_detail table {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

.event_content_detail table tbody {
  border-bottom: 2px dashed #f09891;
}

.event_content_detail table tbody:last-child {
  border-bottom: none;
}

.event_content_detail th {
  text-align: left;
  width: 80px;
  border-collapse: collapse;
  border-spacing: 0;
  padding-bottom: 15px;
  padding-top: 15px;
  line-height: 2rem;
  font-weight: bold;
  font-size: 1.4rem;
  color: #E85377;
}

.event_content_detail td {
  padding: 2%;
  font-size: 1.4rem;
  color: #000;
  background-color: #fff;
  line-height: 2rem;
  text-align: left;
  padding-bottom: 15px;
  padding-top: 15px;
  line-break: anywhere;
  word-break: keep-all;
}

.event_detail_blue{
  color: #01b3ff;
  border-bottom: 1.5px solid #01b3ff;
  padding-bottom: 3px;
}

.event_trend {
  font-variant: proportional-width;
}

.event_trend_box {
  padding: 5px 10px;
  border: solid 1.5px #1d67bd;
  border-radius: 500px;
  color: #1d67bd;
  font-size: 1.4rem;
  background: #fff;
  font-weight: bold;
  margin-right: 5px;
  line-break: auto;
  display: inline-block;
  margin-bottom: 5px;
}

.event_trend_box:hover{
  color: #fff;
  background: #1d67bd;
}

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

.share_wrap_sns a {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 10px 10px 15px;
  border-radius: 50px;
  margin: 7px;
  border: solid 2px #1d67bd;
}

.share_wrap_sns a:hover {
  opacity: 0.8;
}

.share_wrap_sns_copy{
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 10px 10px 15px;
  border-radius: 50px;
  margin: 7px;
  border: solid 2px #1d67bd;
}

.share_wrap_sns_copy:hover{
  opacity: 0.8;
}

.btn-container {
  text-align: center;
}


.share_wrap_sns_copy img{
  width: 30px;
}

input[type="button"] {
  color: #1d67bd;
  font-weight: bold;
  font-size: 1.5rem;
}


.share_wrap_sns span {
  display: block;
}

.share_wrap_sns_icon {
  width: 40px;
}

.share_wrap_sns_txt {
  width: 100% ;
  color: #1d67bd;
  font-size: 1.5rem;
  padding-left: 10px;
  font-weight: bold;
  line-height: 20px;
}

input.btn_search:hover{
  opacity: 0.8;
}

.example4 {
  margin: 0 auto;
  width: 60%;
}

.example4 li {
  display: inline-block;
  height:35px;line-height:35px;
  width:35px;text-align:center;
  border-radius: 20px / 20px;}
  .example4 .pre {background-color:#ccc;color:#333;}
  .example4 .this {background-color:#fff;color:#f09891;font-weight: bold;}
  .example4 li a{display:block;text-decoration: none;}
  .example4 li a:hover {color: #fff;text-decoration: none;
  background-color: #E85377; border-radius: 20px / 20px; font-weight: bold; }


.bunner.o-bg{background: #f49b0c;}
.bunner .img{
  width: 100%;
  margin-bottom: 20px;
}
.bunner .img:last-of-type{margin-bottom: 0;}

@keyframes EVEsaga-anm {
  0% {right: -70px;}
  100% {right: 5px;}
}
.sagappy-container{
  position: absolute;
  width: 100%;
  height: 120px;
  overflow: hidden;
}
.event .sagappy-container{
  top: 115px;
  right: 0;
}

.report.y-bg{background: #fcd13e;}
.report .slide .item{
  position: relative;
  background: #fff;
  padding: 20px;
  margin: 0 10px;
  border-radius: 5px;
  margin-bottom: 50px;
}
.report .slide .item .thum{
  position: relative;
  padding-top: 80%;
  margin-bottom: 20px;
}
.report .slide .item .thum img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}
.report .slide .item span{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.report .slide .item p{line-height: 1.4;}

.report .slide .item .vol{
  top: 10px;
  left: 10px;
  width: 80px;
}
.report .slide .item .vol span{
  font-size: 3.5rem;
  font-weight: bold;
  color: #f08d38;
}
.report .bottom{
  bottom: 60px;
  right: -30px;
  width: 110px;
  z-index: 2;
}
.report .sagappy-container{
  top: 55px;
  right: 0;
}
.report .sagappy{
  top: 0px;
  left: -70px;
  width: 70px;
}
.report .sagappy.is_show{
  animation-name: REPOsaga-anm;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}

@keyframes REPOsaga-anm {
  0% {left: -70px;}
  100% {left: 5px;}
}

.important.g-bg{
  background: #83BD3F;
}
.important .box {
 position: relative;
 background: #fff;
 padding: 20px;
 border-radius: 20px;
 margin-bottom: 50px;
}
.important .box .bear{bottom: 0;}
.important .box .bear.left{
  left: -10px;
  width: 65px;
}
.important .box .bear.right{
  right: -10px;
  width: 75px;
}
.important .box p{
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}

.important .sagappy-container{
  top: 55px;
  right: 0;
}
.important .sagappy{
  top: 120px;
  right: 30px;
  width: 70px;
}
.important .sagappy.is_show{
  animation-name: Inpsaga-anm;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}
@keyframes Inpsaga-anm {
  0% {top: 120px;}
  100% {top: 10px;}
}

.publish.b-bg{background: #4dbdfd;}
.publish .box{
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 10px 10px 0 10px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 50px;
  z-index: 2;
}
.publish .box::before{
  content: "";
  position: absolute;
  border-top: solid 20px #f08d38;
  border-right: solid 20px transparent;
  bottom: 0;
  right: 0;
  border-radius: 5px 0 0 0 ;
}
.publish .box::after{
  content: "";
  position: absolute;
  border-bottom: solid 20px #4dbdfd;
  border-left: solid 20px transparent;
  bottom: 0;
  right: 0;
}
.publish .btn{
  position: relative;
  z-index: 2;
}
.publish .box p{
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
}
.publish .back{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    z-index: 0;
}
.publish .sagappy-container{
  top: 25px;
  right: 0;
}
.publish .sagappy{
  top: 0px;
  left: -70px;
  width: 70px;
}
.publish .sagappy.is_show{
  animation-name: REPOsaga-anm;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}

@keyframes REPOsaga-anm {
  0% {left: -70px;}
  100% {left: 5px;}
}

.example4 {
  margin: 0 auto;
  width: 60%;
  margin-bottom: 40px;
}

.example4 span {
  display: inline-block;
  height:35px;line-height:35px;
  width:35px;text-align:center;
  border-radius: 20px / 20px;}
  .example4 .pre {background-color:#ccc;color:#333;}
  .example4 .this {background-color:#fff;color:#f09891;font-weight: bold;}
  .example4 span a{display:block;text-decoration: none;}
  .example4 span a:hover {color: #fff;text-decoration: none;
  background-color: #E85377; border-radius: 20px / 20px; font-weight: bold; }

.top .report h2{
  margin-bottom: 30px;
}
.top .report h3{
  margin-bottom: 50px;
  font-size: 11px;
  color: #5e5e5e;
}
.report.y-bg{background: #fcd13e;}
.report ul{
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.report.y-bg{background: #fcd13e;}
.report_item{
  position: relative;
  background: #fff;
  padding: 20px;
  margin: 0 10px;
  border-radius: 5px;
  margin-top: -20px;
  margin-bottom: 50px;
}
.report_item img{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.report_item img:hover{
  opacity: 0.8;
}
.report_item span{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.report_item p{line-height: 1.4;}

.report_vol{
  top: 10px;
  left: 10px;
  width: 75px;
  margin-top: -50px;
  margin-bottom: -20px;
}
.report_transition{
  top: 10px;
  left: 10px;
  width: 30px;
  margin: 8px 0px -20px 260px;
}
.report  .bottom{
  bottom: 60px;
  right: -30px;
  width: 110px;
  z-index: 2;
}

.example5 {
    margin: 0 auto;
    width: 60%;
    margin-bottom: 40px;
}
.example5 span {
    display: inline-block;
    height:35px;line-height:35px;
    width:35px;text-align:center;
    border-radius: 20px / 20px;}
    .example5 .pre {background-color:#ccc;color:#333;}
    .example5 .this {background-color:#fff;color:#fcd13e;font-weight: bold;}
    .example5 span a{display:block;text-decoration: none;}
    .example5 span a:hover {color: #fff;text-decoration: none;
    background-color: #ECA320; border-radius: 20px / 20px; font-weight: bold;}

.example5 li {
  display: inline-block;
  height:35px;line-height:35px;
  width:35px;text-align:center;
  border-radius: 20px / 20px;
}
.example5 li a{display:block;text-decoration: none;}
.example5 li a:hover {color: #fff;text-decoration: none;
background-color: #ECA320; border-radius: 20px / 20px; font-weight: bold;}

.top .report h2{
  margin-bottom: 30px;
}
.top .report h3{
  margin-bottom: 50px;
  font-size: 11px;
  color: #5e5e5e;
}
.report.y-bg{background: #fcd13e;}
.report ul{
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.report.y-bg{background: #fcd13e;}

.report_item_box{
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  margin-top: -20px;
  margin-bottom: 50px;
}
.report_item_box img{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.report_item_box span{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.report_item_box p{line-height: 1.4;}

/* .report_item_txt_box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.report_item_txt_box p {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: left;
} */

.report_item_txt_box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: left;
  white-space: normal;
  font-feature-settings: "palt";
}

.report_item_txt_box img {
  border-radius: 20px;
  margin-bottom: 15px;
  width: 100%;
  height: 100%;
}

.report_item_txt_box p {
  font-size: 1.5rem!important;
  text-align: left!important;
  margin-top: 5px!important;
  color:#000;
  line-height: 25px;
  word-break: break-all;
}

.report_item_txt_box h1 {
  font-size: 2rem!important;
  text-align: left!important;
  margin-bottom: 5px;
  margin-top: 5px!important;
  color:#ECA320;
  font-weight: bold;
  line-height: 25px;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.report_item_txt_box h2 {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 5px!important;
  margin-top: 5px!important;
  color:#ECA320;
  font-weight: bold;
  line-height: 25px;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.report_item_txt_box h3 {
  font-size: 1.5rem!important;
  text-align: left!important;
  margin-bottom: 5px!important;
  margin-top: 5px!important;
  color:#ECA320!important;
  font-weight: bold;
  line-height: 25px;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.report_item_txt_box h4 {
  font-size: 1.4rem!important;
  text-align: left!important;
  margin-bottom: 5px!important;
  margin-top: 5px!important;
  color:#ECA320!important;
  font-weight: bold;
  line-height: 25px;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.report_item_txt_box h5 {
  font-size: 1.2rem!important;
  text-align: left!important;
  margin-bottom: 5px!important;
  margin-top: 5px!important;
  color:#ECA320!important;
  font-weight: bold;
  line-height: 25px;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.report_item_txt_box h6 {
  font-size: 1rem!important;
  text-align: left!important;
  margin-bottom: 5px!important;
  margin-top: 5px!important;
  color:#ECA320!important;
  font-weight: bold;
  line-height: 25px;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.report_item_txt_box strong {
  font-size: 1.6rem;
  font-weight: bold;
}

.report_item_img img {
  border-radius: 20px;
  margin-bottom: 30px;
}

.taiken_content_detail .title{
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #000;
}

.taiken_content_detail .box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 50px;
  display: flex;
}

.taiken_content_detail .title_nenrei {
  background-color: #E85377;
  padding: 10px;
  width: 30%;
  height: 20%;
  border-radius: 6px;
  position: relative;
  margin-top: 73px;
}

.taiken_content_detail .title_nenrei p {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.taiken_content_detail .box .contents li {
  margin: 2px 0px 5px 23px;
}

.taiken_content_detail .box .contents .nenrei_pink_1 {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin: 5px 10px 0 0;
  border-radius: 50%;
  background-color: #E85377;
  box-sizing: border-box;
  vertical-align: -7px;
}

.taiken_content_detail .box .contents .nenrei_pink_2 {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin: 5px 10px 0 0;
  border-radius: 50%;
  background-color: #fff;
  border: solid 2px #E85377;
  box-sizing: border-box;
  vertical-align: -7px;
}

.contents_detail_txt {
  font-size: 1.4rem;
  display: contents;
}

.taiken_content_detail table {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

.taiken_content_detail table tbody {
  border-bottom: 2px dashed #fcd13e;
}

.taiken_content_detail table tbody:last-child {
  border-bottom: none;
}


.taiken_content_detail th {
  text-align: left;
  width: 100px;
  border-collapse: collapse;
  border-spacing: 0;
  padding-top: 10px;
  line-height: 2rem;
  font-weight: bold;
  font-size: 1.4rem;
  color: #ECA320;
}

.taiken_content_detail td {
  padding: 2%;
  font-size: 1.4rem;
  color: #000;
  background-color: #fff;
  line-height: 2rem;
  text-align: left;
  padding-bottom: 15px;
  padding-top: 15px;
  word-break: keep-all;
  vertical-align: top;
  line-break: anywhere;
}

.taiken_detail_blue{
  color: #01b3ff;
  border-bottom: 1.5px solid #01b3ff;
  padding-bottom: 3px;
}

.taiken_content_detail img {
  border-collapse: collapse;
  max-width: 100%;
}

.detail_archives_img {
  width: 70%;
  margin-left: 10px;
  max-width: 100%;
  max-height:20% ;
}

.bunner.o-bg{background: #f49b0c;}
.bunner .img{
  width: 100%;
  margin-bottom: 20px;
}
.bunner .img:last-of-type{margin-bottom: 0;}

.top .form h2{
  margin-bottom: 30px;
}
.top .form h3{
  margin-bottom: 30px;
  font-size: 11px;
  color: #5e5e5e;
}

.form_input_textbox{
  font-size: 1.2rem;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

/* 体験ってこんなに大切 */
.event.green-bg{background: #C1D071;}
.important_text {
  margin-top: -10px;
}
.important_text p {
  font-size: 1.6rem;
  line-height: 1.5;
}

.important_box {
  background-color: #fff;
  width: 100%;
  border: darkred;
  margin-bottom: 25px;
}

.important_box_img {
  margin: 8px;
  width: 95%;
}

.important_box_txt {
  font-size: 1rem;
  padding: 0px 10px 10px 10px;
  line-height: 17px !important;
}

/* アニメーション */
@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
  }

  @keyframes updown1 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes updown2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  


.important_illust_6 {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
  width: 20%;
  position: absolute;
  top: 975px;
  left: 299px;
}

.important_illust_1 {
  animation-name:updown1;   /* アニメーション名の指定 */
  animation-delay:0s;   /* アニメーションの開始時間指定 */
  animation-duration: 3s;   /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  width: 13%;
  position: absolute;
  top: 1236px;
  left: 302px;
}

.important_illust_2 {
  animation-name:updown2;   /* アニメーション名の指定 */
  animation-delay:0s;   /* アニメーションの開始時間指定 */
  animation-duration: 3s;   /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  width: 10%;
  position: absolute;
  top: 1262px;
  left: 360px;
}

.important_illust_3 {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
  width: 10%;
  position: absolute;
  top: 1918px;
  left: 323px;
}

.important_illust_4 {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
  width: 8%;
  position: absolute;
  top: 1933px;
  left: 363px;
}

.important_illust_9 {
  width: 18%;
  position: absolute;
  top: 1971px;
  left: 257px;
}

.important_illust_7 {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
  width: 15%;
  position: absolute;
  top: 2188px;
  left: 59px;
}

.important_illust_8 {
  animation-name:updown1;   /* アニメーション名の指定 */
  animation-delay:0s;   /* アニメーションの開始時間指定 */
  animation-duration: 3s;   /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  width: 25%;
  position: absolute;
  top: 2852px;
  left: 170px;
}



/* フォーム */
.form_top {
  text-align: center;
  margin-top: 75px;
  margin-left: 15%;
  display: flex;
  margin-bottom: -20px;
}

.form_top_icon{
  width: 40px;
  margin-left: 10px;
}

.form_top_sabu {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
  margin-top: 0px;
  margin-bottom: 30px;
}

.form.r-bg{background: #4dbdfd;}
.form ul{
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.form ul li{
  position: relative;
  background: #fff;
  margin-bottom: 50px;
  padding: 20px;
}
.form ul li:last-of-type{margin-bottom: 0;}
.form ul li .thum{
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  margin-bottom: 10px;
}
.form ul li .thum img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.form ul li .day, .form ul li .txt{text-align: start;}
.form ul li .day{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.form ul li .txt{line-height: 1.4;}
.form .bottom{
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
}
.form .tape{
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  z-index: 2;
  color: #fff;
}
.publish.b-bg{background: #4dbdfd;}
.publish .box{
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 10px 10px 0 10px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 50px;
  z-index: 2;
}
.publish .box::before{
  content: "";
  position: absolute;
  border-top: solid 20px #f08d38;
  border-right: solid 20px transparent;
  bottom: 0;
  right: 0;
  border-radius: 5px 0 0 0 ;
}
.publish .box::after{
  content: "";
  position: absolute;
  border-bottom: solid 20px #4dbdfd;
  border-left: solid 20px transparent;
  bottom: 0;
  right: 0;
}
.publish .btn{
  position: relative;
  z-index: 2;
}
.publish .box p{
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: justify;
  font-weight: bold;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}
.publish .back{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    z-index: 0;
}

.form_detail_box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 10px;
  margin-top: -20px;
}

.form {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.form_sample {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
  white-space: nowrap;
  justify-content: space-between;
}

.form_sample div{
  font-size: 1.2rem;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
  word-wrap: break-word;
  width: 80%;
  white-space: pre-wrap;
  line-height: 1.5rem;
}

.form_sample div .br{
  margin-bottom: -14px;
}

.mwform-file-delete {
  display: none;
}

.form_sample_2 {
  width: 100%;
  align-items: center;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
  white-space: nowrap;
  justify-content: space-between;
}



.form_label {
  width: 70%;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.form_label.last {
  margin-top: 10px;
  margin-bottom: auto;
}

.form_require {
  text-align: center;
  color: rgb(255, 0, 0);
  font-size: 11px;
  margin-left: 10px;
}

.form_input {
  padding-left: 10px;
    height: 30px;
    width: 155px;
    font-size: 1.2rem;
    border: 2px solid #f08d38 !important;
    border-radius: 5px !important;
}

.form_textarea {
  border: 2px solid #f08d38;
  border-radius: 6px;
  padding-left: 10px;
  padding-top: 5px;
  height: 125px;
  flex: 1;
  width: 155px;
  font-size: 1.2rem;
}

.form_textarea:focus {
  border: 2px solid #f08d38;
}


.form_upload {
  padding: 5px 5px;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 8px;
  font-size: 1.2rem;
  border: solid 1px #000;
}

.form_upload p {
  margin: 10px 0 0 0;
}

.form_upload_btn{
  padding: 10px 10px;
  color: #ffffff;
  background-color: #f08d38;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 15px;
}

.form_btn {
  display: block;
  margin-top: 10px;
  margin-bottom: -3px;
  font-size: 0.8rem;
}

.form_btn_submit {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.form_btn_return {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.mw_wp_form_confirm .form_check_box {
  display: none;
}

.mw_wp_form_confirm .disabled {
  display: none;
}

input[type="submit"]{
  width: 240px !important;
  padding: 15px !important;
  background: #fff !important;
  border-radius: 30px !important;
  border: solid 2px #0075c1 !important;
  font-size: 1.4rem !important;
  color: #0075c1 !important;
  margin: 30px 0 0px 0;
  cursor: pointer !important; /* ポインターカーソルを表示 */
  font-weight: bold;
}

.form_btn_send{
  width: 240px !important;
  padding: 15px !important;
  background: #fff !important;
  border-radius: 30px !important;
  border: solid 2px #0075c1 !important;
  font-size: 1.4rem !important;
  color: #0075c1 !important;
  margin: 30px 0 55px 0 !important;
  cursor: pointer !important; /* ポインターカーソルを表示 */
  font-weight: bold;
}

.disabled {
  /* ここに無効なボタンのスタイルを指定します */
  background-color: #ccc !important; /* 例: 透明度を下げて無効に見せる */
  cursor: not-allowed!important; /* マウスカーソルを変更 */
  /* 他のスタイルも必要に応じて設定できます */
}

span.error {
  font-size: 1.3rem;
  display: block;
  color: rgb(255, 0, 0);
  margin-top: 5px;
}

.form_check_box {
  margin-left: 15%;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'FOT-SeuratPro-DB', sans-serif;
}

.form_check_box a{
  border-bottom:1px solid #000;
  padding-bottom: 3px;
}

.form_check_box span :hover {
  color: #fff;
  border-bottom:1px solid #fff;
}

.thanks_icon {
  text-align: center;
  margin: auto;
  margin-bottom: 115px;
  margin-top: -15px;
}

.thanks_icon img {
  width: 20%;
}

/* pp 231010 */
section.pp .star {top: 20px;}
.pp.r-bg{background: #FFFEEA;}
.top .pp h2 {
  color: #5e5e5e;
  padding-top: 75px
}
.top .pp h3 {
  margin-bottom: 50px;
  font-size: 11px;
  color: #5e5e5e;
}
.pp h4{
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-top: 20px;
  color: #355576;
}
.pp .box{
  padding-bottom: 20px;
  border-bottom: solid 2px #FF7A00;
}
.pp ul li{
  margin-bottom: 30px;
}
.pp h5{
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #FF7A00;
}
.pp p{
  font-size: 1.4rem;
  line-height: 1.4;
}

/* sitemap 231010 */
section.sitemap .star {top: 20px;}
.sitemap.r-bg{background: #FFFEEA;}
.top .sitemap h3 {
  margin-bottom: 40px;
  font-size: 11px;
  color: #5e5e5e;
}
.top .sitemap h2 {
  color: #5e5e5e;
  padding-top: 75px;
}
.sitemap .box ul li{
  margin-bottom: 20px;
}
.sitemap .box ul li > div{
  position: relative;
  width: 90%;
  height: 40px;
  border: solid 1px #AEAEAE;
  background: #fff;
  border-radius: 3px;
  margin: 0 auto;
}
.sitemap .box ul li > div::before{
  content: "";
  width: 17px;
  height: 100%;
  background: #333333;
  position: absolute;
  left: 0;
}
.sitemap .box ul li > div.red::before{background: #E41C24;}
.sitemap .box ul li > div.pink::before{background: #E85377;}
.sitemap .box ul li > div.yellow::before{background: #FBC700;}
.sitemap .box ul li > div.green::before{background: #83BD3F;}
.sitemap .box ul li > div.blue::before{background: #4DBDFD;}
.sitemap .box ul li > div.beige::before{background: #F7C285;}

.sitemap .box ul li > div::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/site-map_arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: repeat;
  pointer-events: none;
}

.sitemap .box ul li > div a{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 22px;
  box-sizing: border-box;
}

.sitemap .box ul li > div a:hover{
  opacity: 0.8;
}

/* search 231012 */
.event.re-bg{background: #F0DBE5;}
.search .search-ttl{
  color: #000;
  padding-top: 30px;
  text-align: start;
  margin-top: 65px;
}
.search ul li{
  background: transparent;
  padding: 0;
}
.search ul li .box{
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 50px;
}
.search ul li .box img{
  border-radius: 5px;
}
.search ul li .box .arrow{
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  background: #E94A4F;
  border-radius: 50%;
  margin-right: 0;
  margin-left: auto;
}
.search ul li .box .arrow::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  border-right: 0;
}
.search ul li .box .arrow:hover{
  opacity: 0.8;
}

.search ul li .s-category{
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.search ul li .s-category.event{background: #E85377;}
.search ul li .s-category.report{background: #ECA320;}

.search ul li .box .day{
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.tag_txt + span:before {
  content: "・";
  display: inline-block;
}

/* ページネーション */
.pagination .nav-links {
  text-align: center;
}
.pagination .nav-links a.prev,
.pagination .nav-links a.next {
  font-size: 1.3rem;
}
.pagination .nav-links span.current {
  background-color: #fff;
  color: #000;
  font-weight: bold;
}
.pagination .nav-links span,
.pagination .nav-links a {
  display: inline-block;
  height: 35px;
  line-height: 35px;
  width: 35px;
  text-align: center;
  border-radius: 20px / 20px;
}
.pagination .nav-links a {
  display: inline-block;
  text-decoration: none;
}
.pagination .nav-links a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #999;
  border-radius: 20px / 20px;
  font-weight: bold;
}
.event .pagination .nav-links span.current {
  color: #f09891;
}
.event .pagination .nav-links a:hover {
  background-color: #E85377;
}
.report .pagination .nav-links span.current {
  color: #fcd13e;
}
.report .pagination .nav-links a:hover {
  background-color: #fcd13e;
}
.search .pagination .nav-links span.current {
  color: #E94A4F;
}
.search .pagination .nav-links a:hover {
  background-color: #E94A4F;
}
#copy-btn {
  cursor: pointer;
}
#copy-btn span {
  color: #1d67bd;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 8px;
}
.success-msg {
  display: none;
  position: fixed;
  width: 300px;
  height: 40px;
  line-height: 40px;
  background-color: #1d67bd;
  color: #fff;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  z-index: 9999;
  transform: translateY(-50%);
}
.success-msg-bg {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: .9;
  top: 0;
  left: 0;
  z-index: 9998;
}

footer{
  position: relative;
  font-size: 1.2rem;
  padding: 50px 20px 40px 20px;;
}
footer .box{
  position: relative;
  width: 300px;
  margin: 0 auto;
}
footer .box p{
  margin-bottom: 10px;
}
footer.sky-bg{
  background: #acddf7;
}
footer .f-logo a{
  display: block;
  width: 120px;
  margin-bottom: 20px;
}
.f-sagappy-container{
  position: absolute;
  width: 100%;
  height: 150px;
  overflow: hidden;
  top: 100px;
}
footer .sagappy{
   top: -100px;
    right: -10px;
    width: 175px;
    z-index: 2;
}
footer .sagappy.is_show{
  animation-name: footer-anm;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}
@keyframes footer-anm {
  0% {top: -100px;}
  100% {top: -120px;}
}
footer .info{margin-bottom: 30px;}
footer .f-navi ul{
  flex-wrap: wrap;
  justify-content: center;
}
footer .f-navi ul li{
  margin: 5px 5px;
}

footer .f-navi ul li a:hover{
  color: darkgray;
}

footer .f-navi ul li:nth-of-type(2){width: 45%;}
footer .f-navi ul li:nth-of-type(4){width: 42%;}
footer .f-navi ul li:nth-of-type(5){width: 42%;}

section .btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  background: #fff;
  border-radius: 30px;
  border: solid 2px #0075c1;
  font-size: 1.4rem;
  color: #0075c1;
  margin: 0 auto;
}

section .btn a:hover{
  opacity: 0.8;
}

section .separator{
  left: 0;
  width: 100%;
}
section .separator.red{top: -45px;}
section .separator.yellow{top: -55px;}
section .separator.green{top: -55px;}
section .separator.blue{top: -55px;}
section .separator.orange{top: -55px;}
footer .separator.sky{top: -55px; left: 0;}
.red_2{top: 0px;}
.absolute.separator.pink{top: 0px;}
section .separator.yell{top: 0px;}
section .separator.light_blue{top: 0px;}
section .separator.beige{top: 0px;}

section .star{
  left: 50%;
  transform: translate(-50%);
  width: 320px;
}
section.event .star{top: 0px;}
section.report .star{top: -20px;}
section.important .star{top: -20px;}
section.publish .star{top: -20px;}
section.bunner .star{top: -20px; left: 10px; transform: inherit;}

section.event .pink_star{top: 25px;}
section.event .yellow_star{top: 25px;}
section.form .star{top: 22px;}
section .red_star{
  top: 25px;
  left: 50%;
  transform: translate(-50%);
  width: 320px;
}

section .pink_star{
  left: 50%;
  transform: translate(-50%);
  width: 320px;
}

section .yellow_star{
  left: 50%;
  transform: translate(-50%);
  width: 320px;
  top:25px ;
}

section .section .separator.pink{top: 0px;}_star{
  left: 50%;
  transform: translate(-50%);
  width: 320px;
}

section .section .separator.yell{top: 0px;}_star{
  left: 50%;
  transform: translate(-50%);
  width: 320px;
}

.open_btn{display: none;}

/* fonts */
@font-face {
  font-family: 'FOT-SeuratPro-M';
  src: url('../css/fonts/FOT-SeuratPro-M.otf') format('opentype');
  font-family: 'FOT-SeuratPro-DB';
  src: url('../css/fonts/FOT-SeuratPro-DB.otf') format('opentype');
  }

  /* <---- loop----> */
/* @media screen and (min-width: 395px){ */
.loop_wrap {
  display: flex;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.loop_wrap.bg-filter::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255, 0);
  width: 100%;
  height: 100%;
  z-index: 1;
  animation-name: rebgfilter-anm;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}
.loop_wrap.bg-filter.is_show::after{
  animation-name: bgfilter-anm;
  animation-duration: .8s;
  animation-fill-mode: forwards;
}
@keyframes bgfilter-anm {
  0% {background: rgb(255, 255, 255, 0);}
  100% { background: rgb(255, 255, 255, 0.5);}
}
@keyframes rebgfilter-anm {
  0% { background: rgb(255, 255, 255, 0.5);}
  100% {background: rgb(255, 255, 255, 0);}
}
.loop_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes loop {
  0% {transform: translateX(100%);}
  100% {transform: translateX(-100%);}
}

@keyframes loop2 {
  0% {transform: translateX(0);}
  100% {transform: translateX(-200%);}
}
.loop_wrap img:first-child {animation: loop 80s -40s linear infinite;}
.loop_wrap img:last-child {animation: loop2 80s linear infinite;}

/* fonts */
@font-face {
  font-family: 'FOT-SeuratPro-M';
  src: url('../css/fonts/FOT-SeuratPro-M.otf') format('opentype');
  font-family: 'FOT-SeuratPro-DB';
  src: url('../css/fonts/FOT-SeuratPro-DB.otf') format('opentype');
  }
