html,body{
    padding: 0;
    margin: 0;
    font-family: "Noto Sans JP","Noto SansJP", sans-serif;
    
}
  
 /* メインコンテンツのスタイル */
main {
    width:100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .flex{
    display: flex;
    flex-wrap: wrap;    
    width: 100%;
  }
  .flex-between{
    justify-content: space-between;
  }
  .main__wrapper {
    width:100%;
    overflow: hidden;
  }
  .main__inner {
    width: 100%;
    max-width: 1340px;
    margin: auto;
    padding-top: 3%;
  }
  body .main__inner.main__inner--feature{
    padding-top: 0;
  }
  @media (max-width: 1340px) {
    .main__inner {
      padding-left: 3%;
      padding-right: 3%;
      box-sizing: border-box;
    }  
  }
  @media (max-width: 768px) {
    .main__inner {
      padding-top: 5%;
    }  

    .main__inner--feature {
      padding-left: 0;
      padding-right: 0;
    }  
  }
  

  
  
  /* 特集プロジェクト */
  
  .featured-project-and-grid {
      display: flex;
      justify-content: space-between;
      width: 100%;
  }
  .featured-project {
    flex: 0 0 49%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 2%;
  }
  
  @media (max-width: 768px) {
    .featured-project {
      width: 100%;
      flex: none;
      margin-right: 0;
      border-radius: 0;
      margin-bottom: 8%;
    }
  }

  .featured-project__link {
    display: block;
    transition: opacity 0.3s ease;
  }

  .featured-project__link:hover {
    opacity: 0.8;
  }

  .featured-project__image-container {
    position: relative;
    width: 100%;
    padding-top: 66.25%; /* 16:9のアスペクト比 (9/16 = 0.5625 = 56.25%) */
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 4%;
  }

  @media (max-width: 768px) {
    .featured-project__image-container {
        border-radius: 0;
    }
  }

  .featured-project__image-container .featured-project__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 0;
  }

  .featured-project__image-container.loaded .featured-project__image {
    opacity: 1;
  }

  .featured-project__link:hover .featured-project__image {
    transform: scale(1.03);
  }

  .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--colorLightBase);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  /* home */
  .featured-project__image-container.loaded .loading-spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .featured-project__image {
    margin-bottom: 3%;
    border-radius: 10px;
  }

  .featured-project__info {
    
  }
  
  @media (max-width: 768px) {

    .featured-project__image {
      border-radius: 0;
    }
  
    .featured-project__info {
      padding: 3%;
    }
  }

  .featured-project__location-category {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }

  .featured-project__location {
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
    white-space: nowrap;
  }

  .featured-project__category {
    /* text-align: right; */
    font-size: 14px;
    color: var(--colorLightBase);
    text-decoration: underline;
    margin-right: 0.8em;
    /* background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px; */
  }
  .featured-project__category:hover {
    text-decoration: none;
  }

  .featured-project__title {
    font-weight: bold;
    font-size: 24px;
    line-height:1.6;
    margin-bottom: 3%;
  }
  .featured-project__title--link {
    font-weight: bold;
    font-size: clamp(16px,2.6vw, 24px);
    line-height:1.6;
    flex-grow: 1;
  }
  
  @media (max-width: 768px) {
    .featured-project__title {
      line-height: 1.2;
      padding:0 14px;
      margin-bottom: 20px;
    }
    .featured-project__title--link {
      line-height:1.4;
    }  
  }

  .featured-project__desc{
    background: var(--colorLightGray);
    padding:3%;
    border-radius:10px;
    margin-bottom: 4%;
    font-size: clamp(14px, 2.5vw, 16px);
  }

  .featured-project__stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
  }

  .featured-project__donation-amount .featured-project__label,
  .featured-project__donation-total-num .featured-project__label {
      font-weight: bold;  
      font-size: clamp(14px, 2.6vw, 20px);
  }

  .featured-project__donation-amount .featured-project__value,
  .featured-project__donation-total-num .featured-project__value {
    font-weight: bold;
    font-size: clamp(16px, 2.8vw, 30px);
  }

  .featured-project__donation-amount .featured-project__currency{
    font-size: clamp(14px, 2.6vw, 20px);
    font-weight: bold;
  }
  .featured-project__donation-total-num .featured-project__value em{
    font-size: clamp(14px, 2.6vw, 20px);
    font-weight: bold;
  }

  .featured-project__progress-bar {
    background-color: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    margin-top: 5px;
  }

  .featured-project__progress {
    background-color: #ff6600;
    height: 100%;
    border-radius: 4px;
  }
  
/* プロジェクトグリッド */
  .project-grid.type-feature{
    flex: 0 0 49%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px 15px;
    align-content: start; /* グリッドを上揃えにする */
  }
  
  @media (max-width: 768px) {
    .project-grid.type-feature {
      flex: 0 0 100%;
      grid-template-columns: 1fr;
      padding: 3%;
      box-sizing: border-box;
    }
  }


  .project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;
    align-content: start; /* グリッドを上揃えにする */
  }
  
  @media (max-width: 768px) {
    .project-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .project-card__rank{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3%;
  }

  .project-card__rank--sp-adjust{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3%;
  }
  @media (max-width: 768px) {
    .project-card__rank--sp-adjust{
      display: flex;
    }  
  }


  .project-card__rank-image {
    width:36px;
    margin-right: 10px;
  }
  .project-card__rank-image.type-rank4 {
    width:18px;
    margin-right: 10px;
  }
  .project-card__rank-number {
    font-weight: bold;
    font-size: clamp(16px, 2.5vw, 28px);
  }
  .project-card__rank-number.rank1 {
    color:#DEBD44;
  }
  .project-card__rank-number.rank2 {
    color:#BBC5CF;
  }
  .project-card__rank-number.rank3 {
    color:#C89177;
  }
  .project-card__rank-number.rank4 {
    /* color:#e8b39a; */
    color:#C89177;
    font-size: clamp(16px, 2.5vw, 24px);
  }

  .project-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 768px) {
    .project-grid.type-feature .project-card{
      flex-direction: row;
    }    
  }    


  .project-card__link {
    display: block;
    width: 100%;
    position: relative;
    transition: opacity 0.3s ease;
    border-radius: 6px;
  }
  .project-card__link:hover {
    opacity: 0.8;
  }
  @media (max-width: 768px) {
    .project-grid.type-feature .project-card__link {
      margin-right: 3%;
      width: 37%;
    }
  }
  @media (max-width: 600px) {
    .project-grid.type-feature .project-card__link {
      width: 30%;
    }
  }

  

  .project-card__link__btn-play{
    position: absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    margin: auto;
    width:60px;
  }
  .project-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }
  
  .project-card__link:hover .project-card__image {
    transform: scale(1.03);
  }
  
  .project-card img::before {
    content: "";
    display: block;
    padding-top: 66.67%; /* アスペクト比 3:2 */
  }
  .project-card__content {
    margin-top: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 768px) {
    .project-grid.type-feature .project-card__content {
      margin-top: 0;
      width:60%;
    }
  }


  .project-card__location-category {
    display: flex;
    justify-content: flex-start;
    align-items: top;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }
  .location--link,
  .project-card__location--link {
    font-weight: bold;
    font-size: 12px;
    margin-right: 10px;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
  }
  .featured-project__info .project-card__location--link {
    font-size: clamp(14px, 2vw, 16px);
    padding: 4px 10px;
  }


  .project-card__category {
    text-align: right;
    font-size: 12px;
    text-decoration: underline;
    color: var(--colorLightBase);
    margin-right: 10px;
    word-break: break-word;  /* 単語の途中でも改行を許可 */
    overflow-wrap: break-word;  /* より広いブラウザサポートのため */
  }
  .project-card__category:hover {
    text-decoration: none;
  }
  
  /* .project-card__link */

  .project-card__title {
    flex-grow: 1;
    margin-bottom: 15px;
    line-height: 1.7;
  }
  @media (max-width: 768px) {
    .project-grid.type-feature .project-card__title {
      flex-grow:initial;
    }
  }

  .project-card__title-link {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    flex-grow: 1;
    margin-bottom: 15px;
    line-height: 1.7;
  }

  .project-card__min-title {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 15px;
    line-height: 1.7;
  }




  .project-card__stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
  }
  @media (max-width: 1120px) {
    .project-card__stats {
      flex-wrap:wrap;
    }
  }  
  @media (max-width: 768px) {
    .project-card__stats {
      display: none;
    }
  }


  .project-card__donation-amount .project-card__label,
  .project-card__donation-total .project-card__label {
    font-size: 12px;
  }

  .project-card__value .project-card__value__num{
    font-weight:bold;
    font-size: 15px;
  }

  /* ランキングのみ */
  .project-card:nth-child(-n+3).project-card--type-rank  .project-card__value .project-card__value__num{
    font-weight:bold;
    font-size: clamp(18px, 2.3cqi, 22px);
  }

  .project-card__donation-total .project-card__value__subtext,
  .project-card__donation-amount .project-card__value__subtext{
    font-size:12px;
  }

  .project-card__progress-bar {
    background-color: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    margin-top: 5px;
  }

  .project-card__progress {
    background-color: #ff6600;
    height: 100%;
    border-radius: 4px;
  }


  .background-stripe {
    width: 100%;
    height: 350px;
    /* background-color: #4a8da3; */
    background-color: var(--colorLightBase);
    margin-top: -285px;
    position: relative;
    z-index: -1;
    opacity:0.9;
}

.donation-summary {
    position: relative;
    z-index: 1;
}

.donation-summary-container {
  background-color: #4a8da3;
  padding: 50px 0;
  width: 100%;
}

.donation-summary {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 0 auto;
  max-width: 1000px;
}

.summary-header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.powered-by {
  color: #8dc63f;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

.summary-title {
  font-size: 24px;
  color: #0066a4;
  margin: 15px 0;
}

.summary-description {
  font-size: 14px;
  color: #333;
  max-width: 80%;
  margin: 0 auto 20px;
}

.summary-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.total-donation {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon-container {
  background-color: #f8e8e8;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.icon-heart {
  color: #e85656;
  font-size: 30px;
}

.icon-pen {
  width:18px;
}
.reporter-icon__pen{
  position:relative;
  top:6px;
  margin-right:4px;
}
.donation-info {
  text-align: left;
}

.donation-label {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.donation-sublabel {
  font-size: 12px;
  color: #666;
  margin: 5px 0;
}

.donation-amount {
  font-size: 32px;
  color: #e85656;
  font-weight: bold;
  margin: 0;
  background-color: #ffeeee;
  padding: 5px 10px;
  border-radius: 5px;
}

.statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: right;
}

.stat-label {
  font-size: 14px;
  color: #333;
  display: block;
}

.stat-value {
  font-size: 24px;
  color: #e85656;
  font-weight: bold;
}

.cta-container {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  background-color: white;
  color: #0066a4;
  border: 2px solid #0066a4;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #0066a4;
  color: white;
}

@media (max-width: 768px) {
  .summary-content {
    flex-direction: column;
  }
  
  .statistics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
}

  
  .main__wrapper .donation-summary {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    margin: 1% auto 0px;
    max-width: 1200px;
    box-sizing:border-box;
    @media (max-width: 600px) {
      padding: 20px 20px 20px 20px;
      margin-top: 0;
    }
  }

  
  .summary-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .logo {
    height: 40px;
    margin-right: 10px;
  }
  
  .powered-by {
    color: #8dc63f;
    font-size: 14px;
    display: block;
    margin-top: 5px;
  }
  
  .summary-title {
    font-size: 24px;
    color: #0066a4;
    margin: 15px 0;
  }
  
  .summary-description {
    font-size: 14px;
    color: #333;
    max-width: 80%;
    margin: 0 auto 20px;
  }
  
  .summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .total-donation {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .icon-container {
    background-color: #f8e8e8;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .icon-information-jisseki.tooltip-trigger {
    position: absolute;
    right: 7px;
    bottom: 46px;
    width: 15px;
    height: 15px;
    z-index: 10;
    @media (max-width: 900px) {
      right: 3px;
      bottom: 40px;
    }
  }

  .icon-information-jisseki.tooltip-trigger .tooltip {
    bottom: 20px;
    right: -10px;
    left: auto;
    transform: none;
    z-index: 11;
    line-height: 1.6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: clamp(12px, 2vw, 14px);
  }

  /* 吹き出しの三角形部分の位置調整 */
  .icon-information-jisseki.tooltip-trigger .tooltip::after {
    left: auto;
    right: 10px;
    transform: none;
  }

  /* クリック可能な領域を広げる */
  .icon-information-jisseki.tooltip-trigger img {
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .donation-info {
    text-align: left;
  }
  
  .donation-label {
    font-size: 18px;
    color: #333;
    margin: 0;
  }
  
  .donation-sublabel {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
  }
  
  .donation-amount {
    font-size: 32px;
    color: #e85656;
    font-weight: bold;
    margin: 0;
    background-color: #ffeeee;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    text-align: right;
  }
  
  .stat-label {
    font-size: 14px;
    color: #333;
    display: block;
  }
  
  .stat-value {
    font-size: 24px;
    color: #e85656;
    font-weight: bold;
  }
  
  .cta-container {
    text-align: center;
    margin-top: 30px;
  }
  
  .cta-button {
    background-color: white;
    color: #0066a4;
    border: 2px solid #0066a4;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0066a4;
    color: white;
  }
  
  @media (max-width: 768px) {
    .summary-content {
      flex-direction: column;
    }
    
    .statistics {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 20px;
    }
  }

/* アイコン固有のスタイル */
.icon-information-jisseki {
  position: absolute;
  right: 7px;
  bottom: 46px;
  width: 15px;
  height: 15px;
  z-index: 10;
  overflow: visible;
}


/* ベースのツールチップスタイル */
.tooltip-trigger {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.tooltip {
  display: none;
  position: absolute;
  padding: 12px 16px;
  background: var(--colorLightBase);
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  z-index: 1000;
  min-width: max-content;
  text-align: center; /* テキストを中央揃えに */
}

/* brタグがある場合の改行を維持 */
.tooltip br {
  display: block;
}

/* 吹き出しの三角形部分も同じ透過度に合わせる */
.tooltip::after {
  content: '';
  position: absolute;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--colorLightBase);
}

/* アイコンのツールチップ位置調整 */
.icon-information-jisseki.tooltip-trigger .tooltip {
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

/* アイコンの吹き出し三角形調整 */
.icon-information-jisseki.tooltip-trigger .tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

/* 1400px以下での位置調整 */
@media (max-width: 1400px) {
  .icon-information-jisseki.tooltip-trigger .tooltip {
    left: auto;
    right: -30px;
    transform: none;
  }

  .icon-information-jisseki.tooltip-trigger .tooltip::after {
    left: auto;
    right: 30px;
    transform: none;
  }
}


/* 600px以下での位置調整 */
@media (max-width: 600px) {
  .icon-information-jisseki.tooltip-trigger {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
  }

  /* ツールチップの位置も調整 */
  .icon-information-jisseki.tooltip-trigger .tooltip {
    right:-60px;
    /* bottom: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%); */
  }

  /* 吹き出しの三角形も中央に */
  .icon-information-jisseki.tooltip-trigger .tooltip::after {
    right:60px;
    /* left: 50%;
    right: auto;
    transform: translateX(-50%); */
  }
}



/* ホバー時とアクティブ時のツールチップ表示 */
.tooltip-trigger:hover .tooltip,
.tooltip-trigger.active .tooltip {
  display: block;
}

/* アイコン画像のスタイル */
.icon-information-jisseki img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* ヘッダーのログインボタン用ツールチップ */
.header__login-button.tooltip-trigger {
  position: relative;
  overflow: visible;
}

.header__login-button.tooltip-trigger .tooltip {
  display: none;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--colorLightBase);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  width: max-content;
  text-align: center;
  line-height: 1.4;
}

.header__login-button.tooltip-trigger .tooltip::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 6px solid var(--colorLightBase);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.header__login-button.tooltip-trigger:hover .tooltip {
  display: block;
}

/* スマートフォン向けの調整 */
@media (max-width: 768px) {
  .header__login-button.tooltip-trigger .tooltip {
    top: -35px;
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* 災害支援バナーのスタイル */
.disaster-support {
  width: 100%;
  margin: 20px auto 30px;
  overflow: hidden;
  border: 2px solid var(--colorAccent);
  display: flex;
  background-color: #fff;
}

.disaster-support__title {
  background-color: var(--colorAccent);
  color: white;
  padding: 1% 3%;
  font-weight: bold;
  font-size: clamp(14px, 1.5vw, 16px);
  display: inline-block;
  min-width: 10em;
  text-align: center;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
}
/* spのみ */
.disaster-support__title__sub{
  display: none;
  @media screen and (max-width: 600px) {
    display: block;
    width: 3em;
    margin: 3px auto;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
  }
}
.disaster-support__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
}
.disaster-support__content__ref {
  font-size:12px;
  padding-left: 20px;
  position: relative;
  top:-2px;
}
.disaster-support__text {
  padding: 0 20px;
  font-size: clamp(14px, 1.5vw, 16px);
  flex-grow: 1;
  text-decoration: underline;
  white-space: normal;
  font-weight: bold;
}
.disaster-support__text:hover {
  text-decoration: none;
}

.disaster-support__status {
  background-color: var(--colorAccent);
  color: white;
  padding: 6px 30px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1000px) {
  .disaster-support__title{
   min-width: inherit; 
   flex-direction:column;
  }
}
@media (max-width: 768px) {
  .disaster-support__content {
    flex-direction: row;
    align-items: center;
  }
  
  .disaster-support__text {
    padding: 10px;
  }
  
  .disaster-support__status {
    margin: 0 10px;
    padding: 10px;
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .disaster-support__status {
    display: none;
  }
}