@charset "UTF-8";
/*　------ 変数を先に定義　　---------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #EA2913;
  color: #333;
  font-size: 2.2rem;
  position: relative;
  z-index: -100;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
 .none480px{
  display: none;
 }
}


.fv-wrap {
  height: 52.0416666667vw;
  width: 100%;
  background: url("../img/fv/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv-wrap {
    height: 176.9230769231vw;
    background: url("../img/fv/sp/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.fv-wrap .riru {
  position: absolute;
  bottom: 3.125vw;
  right: 1.125vw;
  width: 33vw;
}
@media screen and (max-width: 767px) {
  .fv-wrap .riru {
    display: none;
  }
}
.fv-wrap .akuto {
  position: absolute;
  bottom: 1.5625vw;
  left: 3.125vw;
  width: 25vw;
}
@media screen and (max-width: 767px) {
  .fv-wrap .akuto {
    display: none;
  }
}
.fv-wrap .akuri-man {
  position: absolute;
  bottom: -3.125vw;
  right: 20.8333333333vw;
  width: 18.2291666667vw;
}
@media screen and (max-width: 767px) {
  .fv-wrap .akuri-man {
    display: none;
  }
}
.fv-wrap .riru-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv-wrap .riru-sp {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100Vw;
  }
}
.fv-wrap .akuto-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv-wrap .akuto-sp {
    display: block;
    position: absolute;
    top: 0vw;
    left: 55vw;
    width: 50vw;
    transform: rotate(40deg);
  }
}

.fv-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fv-inner {
    align-items: normal;
  }
}

.fv-title {
  width: min(40vw, 850px);
  position: relative;
  z-index: 10;
  animation: scale 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fv-title {
    width: 90vw;
    margin-top: 30.1362467866vw;
  }
}
.fv-title .main-title {
  display: block;
  margin: 0 auto;
}
.fv-title .date {
  margin-top: 8%;
}
@media screen and (max-width: 1149px) {
  .fv-title .date {
    width: 90%;
  }
}

@keyframes scale {
  from {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fv-chara__wrapper {
  display: block;
  width: 33%;
  margin-left: 2rem;
  margin-top: 10rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.fv-chara__wrapper .sp.akuri-man {
  display: none;
}
@media screen and (max-width: 1149px) {
  .fv-chara__wrapper .sp.akuri-man {
    display: block;
    width: 30%;
    position: absolute;
    bottom: -20%;
    right: 5%;
  }
}
@media screen and (max-width: 1149px) {
  .fv-chara__wrapper {
    margin: 0;
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 1149px) {
  .fv-chara__wrapper .chara {
    width: 90%;
  }
}

.about {
  background: #fff;
  overflow: hidden;
  padding-bottom: 8.4rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 9.6vw;
  }
}

.loop {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-inline: auto;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .loop {
    margin-top: 8.5333333333vw;
  }
}
.loop img {
  max-width: none;
  height: 16rem;
}
@media screen and (max-width: 767px) {
  .loop img {
    height: 8rem;
  }
}

.loop-1 {
  animation: loop 60s linear infinite;
}

.loop-2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: loop 60s -30s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.about-inner {
  width: 83%;
  margin: 9.6rem auto 0;
  display: flex;
  justify-content: center;
  gap: 8%;
}
@media screen and (max-width: 1149px) {
  .about-inner {
    width: 90%;
    margin-top: 4.8rem;
    justify-content: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .about-inner {
    margin-top: 8.5333333333vw;
  }
}
.about-inner h2 {
  width: 56rem;
}
@media screen and (max-width: 1149px) {
  .about-inner h2 {
    width: 48rem;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .about-inner h2 {
    width: 32rem;
  }
}
@media screen and (max-width: 1149px) {
  .about-inner .about-txt {
    padding-left: 3.2rem;
    margin-top: 3.2rem;
    margin-left: auto;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-inner .about-txt {
    font-size: 1.7rem;
    margin-top: 0;
  }
}
.about-inner .about-txt span {
  letter-spacing: 0.05em;
  line-height: 2.4em;
  padding-bottom: 0.7rem;
  border-bottom: 2px dashed #F9BDB7;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about-inner .about-txt span {
    line-height: 2.3em;
    padding-bottom: 0.5rem;
    border-bottom: 2px dashed #fadddb;
  }
}

.loop-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.loop-wrap {
  display: flex;
  overflow: hidden;
}

.loop-list {
  display: flex;
  list-style: none;
  animation-timing-function: linear; /* タイミング関数をlinearに設定 */
}

.loop-list--left {
  animation: infinity-scroll-left 23s infinite 0.5s linear; /* アニメーションを修正 */
}

.loop-list--right {
  animation: infinity-scroll-right 23s infinite 0.5s linear; /* アニメーションを修正 */
}

.loop-item {
  width: 19.2307692308vw;
}
@media screen and (max-width: 1149px) {
  .loop-item {
    width: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .loop-item {
    width: 41.6666666667vw;
  }
}

.loop-item > img {
  width: 100%;
}

@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.event-container {
  padding-top: 180px;
  position: relative;
  background-color: #e61b00;
  background-image: radial-gradient(#ec1f00 35%, transparent 10%), radial-gradient(#ec1f00 35%, transparent 10%);
  background-size: 15px 15px;
  background-position: 0 0, 7.5px 7.5px;
  z-index: -2;
}
@media screen and (max-width: 1149px) {
  .event-container {
    padding-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .event-container {
    padding-top: 6.4rem;
    overflow-x: hidden;
  }
}
.event-container::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%; 
  height: 100%;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 150px, rgb(224, 33, 9) 150px, rgb(224, 33, 9) 300px);
}
.event-container .event-inner h2 {
  width: 72rem;
  margin: 0 auto;
}
@media screen and (max-width: 1149px) {
  .event-container .event-inner h2 {
    width: 45rem;
  }
}
@media screen and (max-width: 767px) {
  .event-container .event-inner h2 {
    width: 85%;
  }
}

.event-list {
  margin-top: 5.6rem;
}
@media screen and (max-width: 1149px) {
  .event-list {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .event-list {
    margin-top: 9.8360655738vw;
  }
}

.event-item:nth-child(odd):not(:first-child) {
  margin-top: 16.5vw;
}
@media screen and (max-width: 767px) {
  .event-item:nth-child(odd):not(:first-child) {
    margin-top: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .event-item:nth-child(odd):not(:first-child) .event-item__inner {
    padding-top: 54vw;
  }
}
.event-item:nth-child(odd) .event-item__txt a {
  color: #FFED21;
  text-decoration: underline;
}
.event-item:nth-child(even) {
  margin-top: 14.5833333333vw;
}
@media screen and (max-width: 767px) {
  .event-item:nth-child(even) {
    margin-top: 13rem;
  }
}
.event-item:nth-child(even) .event-item__txt p {
  color: #333;
}
.event-item:nth-child(even) .event-item__txt a {
  color: #E9292C;
  text-decoration: underline;
}

.event-item__inner {
  display: flex;  
  position: relative;
  justify-content: center;
}

.event-item__content {
  align-items: center;
  gap: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 1149px) {
  .event-item__content {
    gap: 0;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .event-item__content {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}

.event-item__txt {
  width: 40%;
  line-height: 1.6em;
}
@media screen and (max-width: 1149px) {
  .event-item__txt {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .event-item__txt {
    width: 100%;
  }
}
@media screen and (max-width: 1149px) {
  .event-item__txt h3 {
    width: 90%;
    position: relative;
    z-index: 1;
  }
}
.event-item__txt p {
  font-size: 2.2rem;
  margin-top: 4.8rem;
  color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1281px) {
  .event-item__txt p {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 1149px) {
  .event-item__txt p {
    margin-top: 2.4rem;
    font-size: 1.6rem;
  }
}
.event-item__txt p span {
  font-size: 1.6rem;
}
@media screen and (max-width: 1149px) {
  .event-item__txt p span {
    font-size: 1.3rem;
  }
}
.event-item__txt .mini-txt {
  font-size: 1.6rem;
  margin-top: 2.4rem;
  padding-left: 1em;
  text-indent: -1em;
  color: #fff;
}
@media screen and (max-width: 1149px) {
  .event-item__txt .mini-txt {
    font-size: 1.2rem;
    margin-top: 1.6rem;
  }
}
.event-item__txt .mini-txt li {
  line-height: 1.6em;
}
.event-item__txt .mini-txt li:last-child {
  margin-top: 0rem;
}

.event-item__img {
  width: 50%;
  display: flex;
  justify-content: center; /* 水平方向（左右）を中央揃えに */
  align-items: center; /* 垂直方向（上下）を中央揃えに */
}

.img80 {
  width: 80%;
}

.event-item__img img {
  width: 100%;
}

.event-detail-img{
  margin-top: 50px;
  display: flex;
  justify-content: center;
  padding:0 5%;
}

@media screen and (max-width: 1149px) {
  .event-item__img {
    display: none;
  }
}

.event-item__img-sp {
  display: none;
}
@media screen and (max-width: 1149px) {
  .event-item__img-sp {
    display: block;
    width: 50%;
    padding-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .event-item__img-sp {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 32rem;
    padding-top: 0;
    z-index: -1;
  }
}

@media screen and (max-width: 767px) {
  .event01 .event-item__inner {
    padding-top: 52.5vw;
  }
}
.event01 .event-item__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .event01 .event-item__content {
    position: static;
  }
}
.event01 .event-item__content::before {
  content: "";
  display: block;
  width: 30%;
  height: 40%;
  background: url(../img/event/01/deco_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -7%;
  left: 25%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .event01 .event-item__content::before {
    width: 60%;
    height: 70%;
    top: 80%;
    right: 5%;
    left: auto;
  }
}
.event01 .event-item__txt {
  padding-top: 4rem;
}
@media screen and (max-width: 1600px) {
  .event01 .event-item__txt {
    padding-top: 0;
  }
}

/* .event01 .event-item__img img {
} */

@media screen and (max-width: 1400px) {
  .event01 .event-item__img img {
    margin-left: -12rem;
  }
}
@media screen and (max-width: 767px) {
  .event01 .event-item__img-sp {
    width: 85.3333333333vw;
    right: 0rem;
  }
}

.event02.event-item {
  margin-top: 8.3333333333vw;
}
@media screen and (max-width: 900px) {
  .event02.event-item {
    margin-top: 12.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .event02.event-item {
    margin-top: 13rem;
  }
}

.event02,
.event04 {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.event02 .event-item__inner,
.event04 .event-item__inner {
  position: relative;
  padding: 1.6rem 0;
}
@media screen and (max-width: 767px) {
  .event02 .event-item__inner,
  .event04 .event-item__inner {
    padding-top: 40.4494382022vw;
  }
}
.event02 .event-item__inner::before,
.event04 .event-item__inner::before {
  content: "";
  display: block;
  width: 94%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .event02 .event-item__inner::before,
  .event04 .event-item__inner::before {
    width: 100%;
  }
}
.event02 .event-item__inner::after,
.event04 .event-item__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 120%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../img/event/02/bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .event02 .event-item__inner::after,
  .event04 .event-item__inner::after {
    width: 50%;
    height: 100%;
    top: 60%;
  }
}
.event02 .event-item__inner-bg,
.event04 .event-item__inner-bg {
  padding: 3.75vw 0;
}
@media screen and (max-width: 767px) {
  .event02 .event-item__inner-bg,
  .event04 .event-item__inner-bg {
    padding-bottom: 3.2rem;
  }
}
.event02 .event-item__inner-bg::before,
.event04 .event-item__inner-bg::before {
  content: "";
  display: block;
  width: 94%;
  height: 6.6666666667vw;
  position: absolute;
  top: -6.1458333333vw;
  right: 0;
  background: url(../img/event/02/bg01.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .event02 .event-item__inner-bg::before,
  .event04 .event-item__inner-bg::before {
    width: 100%;
    height: 6.4rem;
    top: -5.4rem;
  }
}
.event02 .event-item__inner-bg::after,
.event04 .event-item__inner-bg::after {
  content: "";
  display: block;
  width: 94%;
  height: 12.8rem;
  position: absolute;
  bottom: -11.8rem;
  right: 0;
  transform: scaleY(-1);
  background: url(../img/event/02/bg01.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .event02 .event-item__inner-bg::after,
  .event04 .event-item__inner-bg::after {
    width: 100%;
    height: 6.4rem;
    bottom: -5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .event02 .event-item__inner-bg::after,
  .event04 .event-item__inner-bg::after {
    width: 100%;
    height: 6.4rem;
    bottom: -6.2rem;
  }
}
.event02 .event-item__content,
.event04 .event-item__content {
  margin-left: 0;
  margin-right: auto;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .event02 .event-item__content,
  .event04 .event-item__content {
    width: 90%;
    margin: 0 auto;
  }
}
.event02 .event-item__img-sp,
.event04 .event-item__img-sp {
  top: 0;
  left: 0rem;
  width: 36rem;
}
@media screen and (max-width: 1149px) {
  .event02 .event-item__img-sp,
  .event04 .event-item__img-sp {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .event02 .event-item__img-sp,
  .event04 .event-item__img-sp {
    width: 85vw;
  }
}
.event02 .event-item__img-sp img,
.event04 .event-item__img-sp img {
  width: 100%;
}
.event02 .event-item__txt .mini-txt,
.event04 .event-item__txt .mini-txt {
  color: #333;
}
.event02 .event-item__txt h3,
.event04 .event-item__txt h3 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .event02 .event-item__txt h3,
  .event04 .event-item__txt h3 {
    text-align: right;
  }
}

.event02 .apng {
  max-width: 750px;
}

.event03 .event-item__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .event03 .event-item__content {
    position: static;
  }
}
.event03 .event-item__content::before {
  content: "";
  display: block;
  width: 60%;
  height: 180%;
  background: url(../img/event/03/deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -17%;
  left: -3%;
  z-index: -1;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .event03 .event-item__content::before {
    width: 100%;
    height: 100%;
    top: 45%;
  }
}
@media screen and (max-width: 1149px) {
  .event03 .event-item__img-sp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .event03 .event-item__img-sp {
    width: 85.3333333333vw;
  }
}
.event03 .event-item__img-sp img {
  text-align: right;
}

.event04 .event-item__inner-bg::before {
  transform: scaleX(-1);
}
.event04 .event-item__inner-bg::after {
  transform: scaleY(-1) scaleX(-1); /* 上下左右に反転 */
}
@media screen and (max-width: 767px) {
  .event04 .event-item__inner {
    padding-top: 54.9411764706vw;
  }
}
.event04 .event-item__img-sp {
  width: 36rem;
}
@media screen and (max-width: 1149px) {
  .event04 .event-item__img-sp {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1149px) {
  .event04 .event-item__img-sp img {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .event04 .event-item__img-sp {
    width: 84.7058823529vw;
    top: 7.2941176471vw;
  }
}

@media screen and (max-width: 767px) {
  .event05.event-item {
    margin-top: 9rem !important;
  }
}
.event05 .event-item__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .event05 .event-item__content {
    position: static;
  }
}
.event05 .event-item__content::before {
  content: "";
  display: block;
  width: 80%;
  height: 130%;
  background: url(../img/event/05/deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  position: absolute;
  top: -17%;
  right: 0px;
  z-index: -1;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .event05 .event-item__content::before {
    height: 40%;
    top: -3.5%;
  }
}
.event05 .event-item__inner {
  padding-bottom: 15.6rem;
}
@media screen and (max-width: 767px) {
  .event05 .event-item__inner {
    padding-bottom: 14.4665461121vw;
  }
}
.event05 .event-item__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .event05 .event-item__img-sp {
    width: 93.023255814vw;
    right: 0;
  }
}

.detail-box {
  position: relative;
  width: 80rem;
  margin: 6.4rem auto 0;
  background: #fff;
  border: 1px solid #E9292C;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1149px) {
  .detail-box {
    width: 75%;
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .detail-box {
    width: 90%;
    margin-top: 4rem;
    border-radius: 0.6rem;
  }
}
.detail-box h4 {
  text-align: center;
  padding: 1.6rem 0;
  background: #E9292C;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1149px) {
  .detail-box h4 {
    font-size: 2rem;
    padding: 1.2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .detail-box h4 {
    font-size: 1.8rem;
    border-radius: 0.6rem 0.6rem 0 0;
    padding: 1.4rem 0;
  }
}

.oshista-list {
  display: flex;
  gap: 1%;
  padding: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .oshista-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0.8rem 0.8rem 0.8rem;
  }
}
.oshista-list li {
  width: 26%;
}
@media screen and (max-width: 767px) {
  .oshista-list li {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .oshista-list li:last-child {
    margin-top: 0;
  }
}

.riru-comment {
  width: 32%;
  position: absolute;
  bottom: -2rem;
  right: -2.4rem;
}
@media screen and (max-width: 767px) {
  .riru-comment {
    display: none;
  }
}

.btn {
  position: relative;
  width: 580px;
  margin: 8rem auto 0;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 1149px) {
  .btn {
    margin-top: 9.6rem;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    width: 36rem;
    margin-top: 12.4666666667vw;
    max-width: 90%;
  }
}
.btn::before {
  content: "";
  display: block;
  width: 13rem;
  height: 13rem;
  background: url("../img/event/02/akuri-man.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
}
@media screen and (max-width: 767px) {
  .btn::before {
    width: 9rem;
    height: 9rem;
    right: -1.6rem;
  }
}
.btn .btn-txt {
  position: absolute;
  top: -3.2rem;
  right: 0;
  left: 0;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .btn .btn-txt {
    font-size: 1.5rem;
    top: -2.5rem;
  }
}
.btn .btn-txt::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.4rem;
  background: url("../img/event/02/btn-comment.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 9.6rem;
  top: 0.32rem;
}
@media screen and (max-width: 767px) {
  .btn .btn-txt::before {
    height: 2rem;
    left: 10.6145251397vw;
    top: 0;
  }
}
.btn .btn-txt::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2.4rem;
  background: url("../img/event/02/btn-comment2.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 9.6rem;
  top: 0.32rem;
}
@media screen and (max-width: 767px) {
  .btn .btn-txt::after {
    height: 2rem;
    right: 10.6145251397vw;
    top: 0;
  }
}
.btn a {
  display: inline-block;
  font-weight: bold;
  background: #e02109;
  color: #fff;
  font-size: 34px;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: 0.5rem solid #fff;
  box-shadow: 0px 3.97983px 3.97983px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  padding: 26px;
}
@media screen and (max-width: 767px) {
  .btn a {
    padding: 2.2rem;
    font-size: 2rem;
    border: 0.45rem solid #fff;
  }
}

.btn.twitter {
  margin-top: 16rem;
  margin-bottom: 22rem;
}
@media screen and (max-width: 1149px) {
  .btn.twitter {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .btn.twitter {
    margin-top: 10.4rem;
    margin-bottom: 0;
  }
}
.btn.twitter .btn-txt {
  color: #fff;
  top: -7rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .btn.twitter .btn-txt {
    top: -5rem;
    line-height: 1.4em;
  }
}
.btn.twitter .btn-txt::before {
  background: url(../img/event/03/btn-comment.png);
  top: 50%;
  left: 12rem;
}
@media screen and (max-width: 767px) {
  .btn.twitter .btn-txt::before {
    left: 7.2rem;
  }
}
.btn.twitter .btn-txt::after {
  background: url(../img/event/03/btn-comment2.png);
  top: 50%;
  right: 12rem;
}
@media screen and (max-width: 767px) {
  .btn.twitter .btn-txt::after {
    right: 7.2rem;
  }
}
.btn.twitter a {
  background: #1E1E1E;
}

.event04 .detail-box {
  width: 70rem;
}
@media screen and (max-width: 1149px) {
  .event04 .detail-box {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .event04 .detail-box {
    width: 90%;
  }
}
.event04 .detail-box__txt {
  padding: 2rem;
  font-size: 1.8rem;
  line-height: 1.6em;
  background: #FFFDEA;
  border-radius: 1rem;
}
@media screen and (max-width: 1149px) {
  .event04 .detail-box__txt {
    padding: 1.3rem 1.3rem 1.3rem 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .event04 .detail-box__txt {
    font-size: 1.4rem;
    padding: 1.3rem 1.3rem 1.6rem;
  }
}
@media screen and (max-width: 1149px) {
  .event04 .detail-box__txt p {
    font-size: 1.6rem;
  }
}
.event04 .akuto-comment {
  width: 25rem;
  position: absolute;
  bottom: 0;
  right: -3rem;
}
@media screen and (max-width: 767px) {
  .event04 .akuto-comment {
    display: none;
  }
}

.point-box {
  width: 80rem;
  margin: 8rem auto 0;
  background: #fff;
  padding: 4rem 3.2rem 2rem;
  border-radius: 0.8rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1149px) {
  .point-box {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .point-box {
    width: 90%;
    padding: 3.2rem 1.6rem 2.4rem;
    margin-top: 3.2rem;
  }
}
.point-box h4 {
  color: #FF4548;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1149px) {
  .point-box h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box h4 {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.point-box .point-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .point-box .point-list {
    margin-top: 0.8rem;
  }
}
.point-box .point-list li {
  width: 48%;
  position: relative;
  padding: 2rem 0rem 1.6rem 7.2rem;
  font-size: 2rem;
  font-weight: bold;
  margin: 0.8rem 0;
}
@media screen and (max-width: 1149px) {
  .point-box .point-list li {
    width: 100%;
    font-size: 2.2rem;
    padding: 2rem 0rem 1.6rem 8.4rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box .point-list li {
    width: 100%;
    font-size: 1.6rem;
    padding: 2rem 0rem 1.6rem 6.4rem;
  }
}
.point-box .point-list li span {
  color: #FF4548;
}
.point-box .point-list li:first-child::before {
  content: "";
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  background: url("../img/event/05/01.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1149px) {
  .point-box .point-list li:first-child::before {
    width: 7.2rem;
    height: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box .point-list li:first-child::before {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.point-box .point-list li:nth-child(2)::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  background: url("../img/event/05/02.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.32rem;
  z-index: 1;
}
@media screen and (max-width: 1149px) {
  .point-box .point-list li:nth-child(2)::before {
    width: 6.2rem;
    height: 6.2rem;
    left: 0.32rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box .point-list li:nth-child(2)::before {
    width: 4.2rem;
    height: 4.2rem;
    left: 0.3rem;
  }
}
.point-box .point-list li:nth-child(3)::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  background: url("../img/event/05/03.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.32rem;
  z-index: 1;
}
@media screen and (max-width: 1149px) {
  .point-box .point-list li:nth-child(3)::before {
    width: 6.2rem;
    height: 6.2rem;
    left: 0.32rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box .point-list li:nth-child(3)::before {
    width: 4.2rem;
    height: 4.2rem;
    left: 0.3rem;
  }
}
.point-box .point-list li:nth-child(4)::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  background: url("../img/event/05/04.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.32rem;
  z-index: 1;
}
@media screen and (max-width: 1149px) {
  .point-box .point-list li:nth-child(4)::before {
    width: 6.2rem;
    height: 6.2rem;
    left: 0.32rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box .point-list li:nth-child(4)::before {
    width: 4.2rem;
    height: 4.2rem;
    left: 0.3rem;
  }
}
.point-box .point-list li:nth-child(5)::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  background: url("../img/event/05/05.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.32rem;
  z-index: 1;
}
@media screen and (max-width: 1149px) {
  .point-box .point-list li:nth-child(5)::before {
    width: 6.2rem;
    height: 6.2rem;
    left: 0.32rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box .point-list li:nth-child(5)::before {
    width: 4.2rem;
    height: 4.2rem;
    left: 0.3rem;
  }
}
.point-box .point-list li:nth-child(6)::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  background: url("../img/event/05/06.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.32rem;
  z-index: 1;
}
@media screen and (max-width: 1149px) {
  .point-box .point-list li:nth-child(6)::before {
    width: 6.2rem;
    height: 6.2rem;
    left: 0.32rem;
  }
}
@media screen and (max-width: 767px) {
  .point-box .point-list li:nth-child(6)::before {
    width: 4.2rem;
    height: 4.2rem;
    left: 0.3rem;
  }
}
.point-box .point-list li::after {
  content: "";
  display: block;
  width: 90%;
  height: 0.2rem;
  border-bottom: 1px dashed #929292;
  position: absolute;
  right: 0;
  bottom: 0.32rem;
}

.point-box__txt {
  margin-top: 1.5rem;
}
.point-box__txt li {
  text-align: right;
  font-size: 1.3rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .point-box__txt li {
    text-align: left;
    line-height: 1.4em;
  }
}
.point-box__txt li:first-child {
  margin-bottom: 0.4rem;
}

.caution {
  background: url("../img/caution/bg.png");
  background-size: cover;
  padding: 11.6rem;
}
@media screen and (max-width: 1149px) {
  .caution {
    padding: 6.4rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .caution {
    padding: 16.368286445vw 6.1381074169vw;
  }
}

.caution-inner {
  width: 104rem;
  margin: 0 auto;
}
@media screen and (max-width: 1149px) {
  .caution-inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .caution-inner h3 {
    width: 13rem;
  }
}
.caution-inner ul {
  margin-top: 7.2rem;
  max-width: 100%;
}
@media screen and (max-width: 1149px) {
  .caution-inner ul {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .caution-inner ul {
    margin-top: 2.4rem;
  }
}
.caution-inner ul li {
  line-height: 1.6em;
  padding-left: 1em;
  text-indent: -1em;
  white-space: normal;
}
.caution-inner ul li:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .caution-inner ul li:not(:first-child) {
    margin-top: 3.5805626598vw;
  }
}

.info-title {
  text-align: right;
  padding-right: 8.8rem;
  position: relative;
}
@media screen and (max-width: 1149px) {
  .info-title {
    padding-right: 0;
  }
}

.info {
  width: 100rem;
  margin: 0 auto 12rem;
}
@media screen and (max-width: 1149px) {
  .info {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .info {
    width: 100%;
    margin-bottom: 6rem;
  }
}
.info p {
  background: #fff;
  padding: 3.2rem 4rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .info p {
    padding: 2.4rem 2.4rem;
    font-size: 1.6rem;
  }
}

.info-come {
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .info-come {
    padding-bottom: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .info-riru {
    width: 40%;
  }
}

.message {
  padding: 10rem 0 5rem;
  background-color: #e02109;
  background-image: radial-gradient(#ec1f00 35%, transparent 10%), radial-gradient(#ec1f00 35%, transparent 10%);
  background-size: 15px 15px;
  background-position: 0 0, 7.5px 7.5px;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 6rem 0;
  }
}
.message::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%; /* 要素の幅を設定 */
  height: 100%; /* 要素の高さを設定 */
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 150px, rgb(224, 33, 9) 150px, rgb(224, 33, 9) 300px);
}

.message-inner {
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 1149px) {
  .message-inner {
    width: 90%;
  }
}

.message-img img {
  max-width: 100%;
}
.message-img .pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .message-img .pc {
    display: none;
  }
}
.message-img .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .message-img .sp {
    display: block;
  }
}

.btn.btn-message {
  margin-top: 3.2rem;
  width: 49rem;
}
@media screen and (max-width: 767px) {
  .btn.btn-message {
    max-width: 100%;
  }
}
.btn.btn-message a {
  background: #fff;
  color: #E9292C;
  border: none;
}

footer {
  background: url("img/pc/back/back_2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.footer {
  width: 980px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.comment {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.footer-riru {
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
}

.footer-akuto {
  width: 15%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn3 {
  width: 650px;
  margin: 0 auto;
  margin-top: 50px;
}

.footer-btm {
  background: #1a1a1a;
  padding: 50px 0;
}

.footer-btm-logp {
  margin: 20px auto 0;
  width: 100%;
  max-width: 160px;
}

.copyright {
  background: #000;
  color: #fff;
  text-align: center;
  border-top: 1px solid #000;
  padding: 10px;
  line-height: 160%;
}

@media screen and (max-width: 1100px) {
  .footer {
    width: 85%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .comment {
    width: 100%;
  }
}
@media screen and (max-width: 880px) {
  .footer {
    width: 75%;
  }
  .comment {
    width: 100%;
  }
  .btn3 {
    width: 100%;
    margin-top: 25px;
  }
  .footer-btm-logp {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    width: 90%;
    padding-top: 30px;
  }
  .comment {
    width: 100%;
  }
  .btn3 {
    width: 100%;
    margin-top: 25px;
  }
  .footer-riru {
    width: 23%;
    top: 100px;
  }
}
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.fv-title .slideAnimeLeftRight {
  animation-delay: 1s;
}
.fv-title .slideAnimeRightLeft {
  animation-delay: 1s;
}

/* 初期状態 */
.fv-chara__wrapper.initial {
  opacity: 0; /* 初期状態では透明にする */
  transform: translateY(20px); /* 初期位置を下に配置 */
  transition: opacity 1s ease, transform 1s ease; /* アニメーションの設定 */
}

/* アニメーション後の状態 */
.fv-chara__wrapper.show {
  opacity: 1; /* 透明度を1に変更して表示 */
  transform: translateY(0); /* 位置を元に戻す */
}

.btn:hover {
  animation: bounce 0.35s alternate infinite;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
.event-item__img.riru-apng {
  justify-content: right;
}

.event04 .event-item__content {
  justify-content: flex-start;
}

.present-sub__title {
  text-align: center;
  margin-top: 120px;
}
@media screen and (max-width: 1200px) {
  .present-sub__title {
    width: 320px;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .present-sub__title {
    width: 220px;
    margin-top: 40px;
  }
}

.present-container {
  display: flex;
  justify-content: center;
  gap: 56px;
  max-width: 90%;
  width: 920px;
  margin: 40px auto 0;
}
@media screen and (max-width: 1200px) {
  .present-container {
    width: 700px;
  }
}
@media screen and (max-width: 900px) {
  .present-container {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .present-container {
    flex-wrap: wrap;
    margin-top: 24px;
  }
}

.present-item {
  border: 2px solid #333;
  border-radius: 8px;
  width: 430px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .present-item {
    max-width: 430px;
    width: 90%;
  }
}

.present-img {
  border-radius: 8px 8px 0 0;
}

.present-item__txt {
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  height: 90px;
  background: #C81B02;
  border-radius: 0px 0px 6px 6px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .present-item__txt {
    height: 76px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .present-item__txt {
    height: 60px;
    font-size: 16px;
    gap: 8px;
  }
}
.present-item__txt p {
  font-size: 20px;
}
@media screen and (max-width: 1149px) {
  .present-item__txt p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .present-item__txt p {
    font-size: 15px;
  }
}

.present-number {
  height: 40px;
}
@media screen and (max-width: 1149px) {
  .present-number {
    height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .present-number {
    height: 26px;
  }
}

.hint-container {
  max-width: 90%;
  width: 880px;
  margin: 88px auto 0;
  border: 2px solid #e02109;
  border-radius: 16px;
  background: #FFF8DB;
  position: relative;
  padding: 56px 32px 32px;
}
@media screen and (max-width: 1200px) {
  .hint-container {
    width: 700px;
  }
}
@media screen and (max-width: 1149px) {
  .hint-container {
    padding: 48px 24px 32px;
  }
}
@media screen and (max-width: 767px) {
  .hint-container {
    padding: 40px 18px 28px;
  }
}

.hint-title {
  background: #e02109;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 16px;
  width: 130px;
  position: absolute;
  top: -28px;
  left: 36px;
}
@media screen and (max-width: 1149px) {
  .hint-title {
    font-size: 20px;
    padding: 12px;
    top: -22px;
    left: 28px;
  }
}

.hint-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hint-list li {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}
.hint-list li p {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hint-list li p {
    font-size: 15px;
  }
}
.hint-list li:nth-child(1)::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url("../img/event/04/no01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1149px) {
  .hint-list li:nth-child(1)::before {
    width: 32px;
    height: 32px;
  }
}
.hint-list li:nth-child(2)::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url("../img/event/04/no02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1149px) {
  .hint-list li:nth-child(2)::before {
    width: 32px;
    height: 32px;
  }
}
.hint-list li:nth-child(3)::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url("../img/event/04/no03.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1149px) {
  .hint-list li:nth-child(3)::before {
    width: 32px;
    height: 32px;
  }
}
.hint-list li:nth-child(4)::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url("../img/event/04/no04.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1149px) {
  .hint-list li:nth-child(4)::before {
    width: 32px;
    height: 32px;
  }
}
.hint-list li:nth-child(5)::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url("../img/event/04/no05.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 1149px) {
  .hint-list li:nth-child(5)::before {
    width: 32px;
    height: 32px;
  }
}

.hint-link {
  text-align: right;
  margin-top: 24px;
}
@media screen and (max-width: 1149px) {
  .hint-link {
    margin-top: 16px;
  }
}
.hint-link a {
  border-bottom: 2px solid #e02109;
  color: #e02109;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding: 0 32px 0 0;
}
@media screen and (max-width: 1149px) {
  .hint-link a {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hint-link a {
    font-size: 16px;
    padding: 0 24px 0 0;
  }
}
.hint-link a::after {
  content: "";
  display: block;
  height: 24px;
  width: 12px;
  background: url("../img/event/04/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .hint-link a::after {
    height: 20px;
    width: 8px;
  }
}

@media screen and (max-width: 1149px) {
  .event04 .event-item__txt h3 {
    width: 100%;
  }
}
@media screen and (max-width: 1149px) {
  .event04 .event-item__content {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .event03 .event-item__txt h3 {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .event02 .event-item__txt h3 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .event02 .event-item__txt h3 img {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .event02 .text-right {
    text-align: right;
    width: 100%;
  }
}
.event02 .text-right p {
  text-align: left;
}
.event02 .text-right ul {
  -moz-text-align-last: left;
       text-align-last: left;
}

@media screen and (max-width: 767px) {
  .event04 .event-item__txt h3 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .event04 .event-item__txt h3 img {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .event04 .text-right {
    text-align: right;
    width: 100%;
  }
}
.event04 .text-right p {
  text-align: left;
}
.event04 .text-right ul {
  -moz-text-align-last: left;
       text-align-last: left;
}

@media screen and (max-width: 767px) {
  .event05 .event-item__inner {
    padding-top: 66.976744186vw !important;
  }
}
@media screen and (max-width: 767px) {
  .event05 .event-item__txt h3 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .event05 .event-item__txt h3 img {
    width: 95%;
  }
}

.bright-container li {
  position: absolute;
}
.bright-container li:nth-child(1) {
  width: 3.6458333333vw;
  top: 2.6041666667vw;
  left: 16.6666666667vw;
  animation: flashing 1.8s infinite;
  animation-delay: 0.3s;
}
.bright-container li:nth-child(2) {
  width: 3.6458333333vw;
  top: 13.0208333333vw;
  left: 3.125vw;
  transform: rotate(30deg);
  animation: flashing 1.8s infinite;
  animation-delay: 0.9s;
}
.bright-container li:nth-child(3) {
  width: 3.6458333333vw;
  top: 6.25vw;
  left: 40.625vw;
  transform: rotate(30deg);
  animation: flashing 1.8s infinite;
  animation-delay: 0.9s;
}
.bright-container li:nth-child(4) {
  width: 3.6458333333vw;
  top: 3.125vw;
  right: 17.7083333333vw;
  transform: rotate(30deg);
  animation: flashing 1.8s infinite;
  animation-delay: 0.6s;
}
.bright-container li:nth-child(5) {
  width: 3.6458333333vw;
  bottom: 3.125vw;
  left: 23.9583333333vw;
  animation: flashing 1.8s infinite;
  animation-delay: 0.3s;
}
.bright-container li:nth-child(6) {
  width: 3.6458333333vw;
  bottom: 6.25vw;
  right: 4.6875vw;
  animation: flashing 1.8s infinite;
  animation-delay: 0.9s;
}

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

.share-btn {
  margin: 7% auto 0;
  text-align: center;
  max-width: 270px;
}

.share-btn a:hover {
opacity: 0.7;
}

.share-btn img {
filter: drop-shadow(0 0 3px white) drop-shadow(0 0 10px white);
}


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

	.share-btn img {
		width: 80%;
	}
}

@media screen and (max-width: 770px) {
	
	.share-btn {
		margin-top: 20%;
	}

}

@media screen and (max-width: 480px) {
	
	.share-btn {
		margin-top: 20%;
	}
	
	.share-btn img {
		width: 80%;
	}


}