.m_campaign__inner{ margin-top: 30px;}
.m_campaign__inner--2col{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap:60px;
}
.m_campaign__item{}
.m_campaign__inner--2col .m_campaign__item{
  width: calc(50% - 30px);
  margin-top: 0;
}
.m_campaign__inner--2col .m_photoAward__imgWrap{
  height: 224px;
  background-color: #000;
}
.m_photoAward__img{
  margin:auto; 
  width:600px;
}
.m_campaign__inner--2col .m_photoAward__img{
  max-height: 100%;
  width: auto;
}
.m_photoAward__titleBlockWrap{
  margin-top: 10px;
}
.m_photoAward__titleBlock{
  text-align: center;
}
.m_photoAward__commentWrap{
  margin-top: 10px;
}
.m_photoAward__comment{}
.m_photoAward__reviewWrap{
  margin-top: 10px;
  padding:8px 1em; 
  border: 1px solid rgb(51, 51, 51);
}
.m_photoAward__review{}
@media screen and (max-width:768px){
  .m_campaign__inner--2col .m_campaign__item{
    width: calc(100%);
  }
  .m_campaign__inner--2col .m_photoAward__imgWrap{
    background-color: unset;
  }
}
/* モーダル
____________________*/
.modal {
  all: unset;
  position: fixed !important;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.modal__box {
  position: relative;
  background: white;          
  padding: 10px;               
  border: none;               
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  width: fit-content;         /* 中身に合わせて幅を決める */
  max-width: 90vw;            /* 最大でも画面の90% */
  max-height: 80vh;
  overflow: visible;
  border-radius: 0;
  margin: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__content {
  max-width: 100%;
  max-height: 60vh;
  height: auto;
  object-fit: contain;
  display: block;
}

.modal__close {
  position: absolute;
  top: -40px;
  right: -40px;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  user-select: none;
  z-index: 100000;
}

.photo-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #999;
  text-align: center;
}
@media screen and (max-width:768px){
  .modal__close {
    right: 0px;
  }
}