@charset "utf-8";
/* CSS Document */

#fundjoin {
  margin: 25px 0;
  padding: 25px 0;
}

.message-2607 {
  text-align: center;
  font-size: 3.2rem;
  padding: 2.2rem;
  border-radius: 20px;
  margin:0 auto;
  max-width: 1200px;
  position: relative;
}

.message-2607>p {
  width: 100%;
  margin-bottom: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-shadow: #fff 0 0 5px;
}
.message-2607::before,
.message-2607::after{
content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* 上下中央揃え */
  width: 100px;  /* SVGの表示幅 */
  height: 300px; /* SVGの表示高さ */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

.message-2607::before{
  background-image: url('../images/fundjoin01.svg');
  left: 10px;
}

.message-2607::after{
  background-image: url('../images/fundjoin02.svg');
  right: 10px;
}


.message-2607>span {
  display: flex;
}

.message-2607>span a.link.btn {
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
}

.message-2607>span a.link.btn::after {
    font-family: 'icon_type2018';
    content: '\e90f';
    line-height: 1.2;
    font-size: 2.4rem;
    vertical-align: middle;
    margin-left: 5px;
}

.message-2607 .main-color {
  color: #0ca26c;
  font-size: calc(3.2*1.5rem);
  font-weight: 800;
}

.NewIcon {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 30px;
  
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  
  /* 💡 V字の凹み分、下（bottom）の余白を少し広めに設定 */
  padding: 8px 8px 10px 8px;
  
  /* 角丸はV字カットと相性が悪いため削除 */
  /* border-radius: 0 0 10px 10px; */

  /* 💡 clip-pathで下側をV字（凹み）に切り抜く */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);

  /* 💡 ベース色（緑）と「キラリ光線」を一緒に背景指定 */
  background-color: #0ca26c;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: 150% 0;

  /* キラリと光るアニメーション */
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    background-position: 150% 0;
  }
  20% {
    background-position: -50% 0; /* 光が左から右へ走り抜ける */
  }
  100% {
    background-position: -50% 0; /* しばらく待機 */
  }
}

#listBlock .listArea dd .listItemList .item{
  position: relative;
}

p.lede{
  text-align: justify;
}

/*改修分*/
@media screen and (max-width: 767px) {
  .message-2607 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }


  .message-2607 .main-color {
    font-size: calc(2.2*1.5rem);
  }

  .message-2607>span {
    flex-direction: column;
  }

  .message-2607::before,
.message-2607::after{
  width: 67px;  /* SVGの表示幅 */
  height: 200px; /* SVGの表示高さ */
}


}
@media screen and (max-width: 540px) {

  .message-2607 {
    font-size: 2.0rem;
    margin-bottom: 0.5em;
  }

  .message-2607 .main-color {
    font-size: calc(2.4rem);
  }

    .message-2607>span a.link.btn {
    max-width: 350px;
  }


.message-2607::before,
.message-2607::after{
  top: 25%;
  width: 50px;  /* SVGの表示幅 */
  height: 150px; /* SVGの表示高さ */
}

.message-2607::before{
  left: 20px;
}

.message-2607::after{
  right: 20px;
}
}
