.preaf__wrapper{
  width: 92%;
  max-width: 750px;
  background: #fff;
  padding:0 0 12px 0;
  /* 2024/06/24/absolute→fixedに変更 */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 15px;
  display: none;
  /* 2024/06/20/z-indexの追加及びCSHTML内の指定削除 */
  z-index: 10000;
}

.preaf__wrapper img,
.preaf__wrapper video{
  width: 100%;
  vertical-align: bottom;
}

.preaf__back-title{
  text-align: center;
}

.preaf__wrapper-video{
  width: 100%;
position: relative;
}

.preaf__wrapper-video img{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width:65%;
}

.preaf__wrapper-video video{
border-radius: 15px 15px 0 0;
}

ul.preaf__inner{
  width: 92%;
  overflow: scroll;
  list-style: none;
  margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    line-height: 1.5;
    margin: 0 auto;
    height: 320px;
    padding-top: 20px;
}

.preaf__wrapper p{
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.preaf__item-box{
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid #dddcdc;
  justify-content: space-between;
}

h4.preaf__back-title{
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

.preaf__back-title{
  padding: 8px 0;
}

.preaf__item-icon{
  width: 17%;
  margin-right: 10px;
}

.preaf__item-detail{
  width: 66%;
}
.preaf__item-title{
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  background-image: linear-gradient(135deg, rgba(252, 0, 206, 1.0) 0%, rgba(255, 0, 4, 1.0) 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

.preaf__detail-title{
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  color: red;
  background-color: #FF9A8B;
  background-image: linear-gradient(to bottom, #ff0844 0%, #ffb199 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  border-bottom:2px solid;
  border-image:  linear-gradient(to top, #ff0844 0%, #ffb199 100%);
  border-image-slice: 1; 
  white-space: nowrap;
  margin-bottom: 2px;
}

.preaf__detail-description{
  font-size: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

}

.preaf__detail-tag{
  font-size: 10px;
  margin-top: 4px;
}

.preaf__detail-tag span{
margin-right: 4px;
padding:4px;
border-radius: 10px;
font-weight: bold;
background-color: #FF9A8B;
background-image: linear-gradient(0deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
color: #fff;
text-align: center;
display: inline-block;
} 

.preaf__btn{
  width: 16%;
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
  padding: 6px 8px;
  background-image: linear-gradient(to right, #ed6ea0 0%, #ec8c69 100%);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);
}

.preaf__btn a{
  text-decoration: none;
  color: #fff;
}

/* ボタン */
@keyframes shiny {
  0% { left: -20%; }
  10% { left: 120%; }
  100% { left: 120%; }
}

.preaf__btn::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* 電光 */
.intro_inner {
  background: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro_inner img {
  width: 10%;
}

.arrow {
  font-size: 12px;
  text-align: center;
  position: relative;
  width: 60px;
  height: 30px;
  background: #f94848;
  font-weight: bold;
  color: #fff;
  top: 0;
}
.arrow p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

marquee {
  font-size: 10px;
  overflow: hidden;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

/* 2024/06/20/透過背景用CSSの追加 */
.cover-eml {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}