@charset "UTF-8";
:root {
  --text-color: #2c438a;
  --bg: #f4f6f9;
  --bg2: #f2f2f2;
}
body {
  font-weight: bold;
}
.content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}
@media (width < 751px) {
  .content-block {
    max-width: 90%;
  }
}
@media (width < 751px) {
  .mv-area {
    max-width: 100%;
    width: 100%;
  }
}
.lead-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lead-area {
  display: flex;
  justify-content: space-between;
  max-width: 1054px;
  width: 100%;
  padding: 100px 0 90px;
}
@media (width < 920px) {
  .lead-area {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 100%;
  }
}
.heading01 {
  font-size: 54px;
  color: var(--text-color);
  line-height: 1.5;
}
@media (width < 751px) {
  .heading01 {
    font-size: 48px;
  }
}
.heading01_sub p {
  margin-bottom: 0.5em;
  font-size: 20px;
  line-height: 1.8;
}
.graph-area {
  background: var(--bg);
  padding: 122px 0 118px;
}
@media (width < 751px) {
  .graph-area {
    max-width: 100%;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 54px;
  }
}
.area-title {
  color: var(--text-color);
  font-size: 34px;
  width: 1054px;
  max-width: 100%;
}
@media (width < 751px) {
  .area-title {
    font-size: 21px;
  }
}
.graph-block {
  margin-top: 48px;
}
.graph-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--text-color);
}
.caption-text {
  width: 375px;
  font-size: 17px;
}
@media (width < 751px) {
  .caption-text {
    width: 100%;
  }
}
.caption-date {
  width: 375px;
  text-align: right;
  font-size: 15px;
  margin-left: auto;
}
@media (width < 751px) {
  .caption-date {
    width: 100%;
  }
}
.graph-img {
  width: 980px;
}
@media (width < 751px) {
  .graph-img {
    width: 100%;
  }
}
.graph-note {
  max-width: 980px;
  margin-top: 56px;
  font-size: 15px;
  word-break: break-all;
}
@media (width < 751px) {
  .graph-note {
    margin-top: 20px;
  }
}
.graph-note li:not(:first-child) {
  margin-top: 1em;
}
.note-link {
  display: inline;
}
.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}
.flow-area {
  padding-top: 122px;
  padding-bottom: 118px;
}
@media (width < 751px) {
  .flow-area {
    padding-top: 60px;
    padding-bottom: 54px;
  }
}
.flow-list {
  display: grid;
  grid-template-columns: 344px 325px 325px;
  margin-top: 85px;
  margin-right: -36px;
}
@media (width < 994px) {
  .flow-list {
    grid-template-columns: unset;
    max-width: 241px;
    margin-top: 40px;
    margin-right: unset;
  }
}
.flow-list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 994px) {
  .flow-list li {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.flow-list li::after {
  content: "";
  display: block;
  background: url(/influenzavaccine/img/arrow_right.svg) center/contain no-repeat;
  width: 36px;
  height: 42px;
  transform: translateY(-210%);
  margin-left: 7%;
}
@media (width < 994px) {
  .flow-list li::after {
    margin-top: 20px;
    margin-left: unset;
    transform: rotate(90deg);
  }
}
.flow-list li:last-child:after {
  background: none;
}
.flow-list figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flow-list figcaption {
  margin-top: 21px;
  font-size: 16px;
}
@media (width < 994px) {
  .flow-list figcaption {
    font-size: 16px;
  }
}
.flow-list figure img {
  width: 241px;
}
.flow-list li:not(:first-child) figure img {
  width: 210px;
}
/* モーダル全体の非表示用クラス */
.modal-area {
  display: none;
  /* 最初は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
}
/* モーダルが開いた時に付与されるクラス */
.modal-area.is-active {
  display: block;
}
/* 背景の黒半透明 */
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}
/* モーダルの中身 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 8px;
  max-width: 980px;
  width: 90vw;
  aspect-ratio: 560/315;
}
.btn-modal-open {
  cursor: pointer;
}
.btn-modal-close {
  position: absolute;
  top: -32px;
  right: 0;
  width: 32px;
  height: 32px;
  background: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center center;
  background-size: 24px 24px;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (width < 751px) {
  .modal-content {
    max-width: 98vw;
  }
  .btn-modal-close {
    width: 28px;
    height: 28px;
    top: 6px;
    right: 6px;
    background-size: 20px 20px;
  }
}
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  cursor: pointer;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
}
.footer {
  padding: 50px;
  background: var(--bg2);
  font-weight: initial;
}
.ftr_bnr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (width < 751px) {
  .ftr_bnr {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box-item {
  max-width: 403px;
  line-height: 1.8;
}
.link-arw {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  padding-left: 16px;
}
.link-arw::before {
  content: "";
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
  position: absolute;
  top: 0.8em;
  left: 0;
  transform: translate(-40%, -50%) rotate(45deg);
}
/* imgIcon */
img.imgIcon {
  display: inline-block;
  background: url(/shared/img/parts_spr.png) no-repeat 0 0/auto 100px;
  vertical-align: -4px;
  width: 19px;
  height: 21px;
  margin: 0 4px;
}
img.imgIcon.blank {
  vertical-align: -1px;
  width: 13px;
  height: 13px;
}
#ftr-copyright {
  margin-top: 120px;
}
@media (width < 751px) {
  #ftr-copyright {
    margin-top: 60px;
    font-size: 14px;
  }
}