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

リセットcss

-------------------*/
html, body, div, img {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
}
body {
    background-color: #cccccc;
}
img {
  display: block; /* ブロック要素として扱う */
  border: none;
  outline: none;
}
p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.contents {
  position: relative;
}
.pc_background{
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  margin: 0 auto;
}
.fixed_left {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 13%;
  min-width: 200px;
  -webkit-transform: translate3d(-250.31674%, -50%, 0);
  transform: translate3d(-250.31674%, -50%, 0);
}
.fixed_right {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 13%;
  min-width: 200px;
  -webkit-transform: translate3d(250.31674%, -50%, 0);
  transform: translate3d(250.31674%, -50%, 0);
}
.fixed_right_2 {
  z-index: 20;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
  padding-left: 7px;
  width: 13%;
  min-width: 200px;
  -webkit-transform: translate3d(250.31674%, -50%, 0);
  transform: translate3d(250.31674%, -50%, 0);
}
.fixed_right_2 a {
  text-decoration: none;
  color: #FFFFFF;
}
.fixed_right_2 a img {
  width: 15%;
}
.fixed_left img, .fixed_right img {
  width: 50%; /* 画像を80%のサイズに縮小（希望のサイズに調整可能） */
  margin: 0 auto; /* 中央揃え */
  display: block; /* ブロック要素として表示 */
}
.Instagram_icon {
  display: block;
  width: 50%;
  display: flex;
  align-items: center;
}
.Instagram_icon span {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 590;
  color: #FFFFFF;
}
.online {
  display: block;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  width: 80%;
  padding: 5px 0;
  margin-top: 23px;
  text-align: center;
  font-size: 15px;
  font-weight: 590;
  color: #FFFFFF;
}
.main_area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 750px;
  width: 100%;
}
.main_area img {
  width: 100%;
}
.haikei_koineibi {
  background-color: #cccccc;
  width: 100%;
  padding: 0 3%;
  box-sizing: border-box;
  text-align: center;
}
img.ttl {
  width: 40%;
  margin: 90px auto 30px auto;
}
/*Instagramからの応募*/
.Instagram, .mail {
  background-color: #f0ece0;
  width: 100%;
  padding: 80px 5%;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 30px;
}
.qrcode {
  background-color: #ffffff;
  padding: 20px 5%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 30px;
}
.qrcode img {
  width: 40%;
}
.qrcode p {
  font-size: 24px;
  color: #4d667d;
}
/*メールからの応募*/
img.B-img {
  width: 97%;
  margin: 0 auto;
  padding: 80px 0 30px;
}
.adress {
  background-color: #ffffff;
  margin-bottom: 30px;
  padding: 20px 5%;
}
.adress p {
  text-align: center;
  font-size: 22px;
  margin: 0;
  color: #4d667d;
}
.adress p:first-child {
  padding-bottom: 10px;
}
.sponly {
  display: none;
}
.tyuui {
  background-color: #F3F4E6;
  padding: 50px 0;
}
.attention {
  padding: 0 4%;
  box-sizing: border-box;
}
/* 3つのアイコンを横並びにするためのスタイル修正 */
.btn {
  padding-top: 0px; 
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.btn a {
  width: 100%;
  max-width: 150px;
  text-align: center;
}
.btn img {
  width: 100%;
  margin: 0 auto;
}

/* 無限スクロールのアニメーション用CSS */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity {
  background-color: #ffffff;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item>img {
  width: 100%;
}

@media screen and (max-width: 768px){
  .sponly {
    display: block;
  }
  .pc_background {
    display: none;
  }
  .main_area {
    width: 100%;
  }
  .qrcode p,
  .adress p {
    font-size: 15px;
  }
  /* スマホ表示時のアイコンサイズ調整 */
  .btn img {
    width: 80%;
  }
  .scroll-infinity__item {
    width: calc(100vw / 2.5); /* スマホでは3枚表示に変更 */
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 40s infinite linear 0.5s both; /* スマホではアニメーション速度を速める */
  }
}