@charset "UTF-8";
/*
vaccine用の独自cssです。
1. パンクズ周りの余白調整
vaccineはPCサイドバーにバナーを置かないため、.breadcrumbs の幅・margin と .wrap .main の gap をここで無効化している。
サイドバーにバナーを設置する場合は、このファイルの該当ルールを削除・調整すること。
2. アイコンのフォントサイズを大きく
3. ボタンの色を追加
4. モーダル用のcssを追加
*/

@media (min-width: 1000px) {
  .breadcrumbs {
    width: 71rem;
    margin: 0 auto 1.2rem auto;
  }
}

.wrap .main {
  gap: normal;
}
@media (min-width: 1000px) {
  .wrap .main {
    gap: normal;
  }
}

.icon {
  font-size: 1.8rem;
}

.buttonOutline.buttonOutline-color {
  color: #441506;
  background: #FFEED4;
}

/* モーダル表示 */
.vaccine-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vaccine-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.vaccine-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 2rem;
  width: 80%;
  max-width: 60rem;
  border-radius: .5rem;
  z-index: 10000;
}
.vaccine-modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 2.8rem;
  font-weight: bold;
  cursor: pointer;
}
.vaccine-modal-close:hover {
  color: #999;
}
.vaccine-modal-title {
  margin: 0 0 1.5rem 0;
  padding-right: 3rem;
}
.vaccine-modal-body {
  margin-top: 1rem;
}
