.flex {
    display: flex;
    flex-wrap: wrap;
}

.antivirus-page ul {
    list-style: none;
}

.antivirus-page .content,
.antivirus-page .bg-content {
    max-width: 1064px;
    padding: 0 20px;
    margin: 0 auto 80px;
}

.text-blue {
    color: #6294cc;
}

.content-title.text-blue {
    font-size: 26px;
}

.content-title {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 700;
}

.content-p {
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}

.bg-gray {
    background: #f8f8f8;
    padding: 48px 32px;
}

/*PC非表示,スマホ表示*/
.displaynone-pc {
    display: none;
}

/* リンクボタン-共通 */
.link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
}

/* リンクボタン-商品一覧を見る */
.link-btn-products {
    border: 3px solid #94b7df;
    border-radius: 8px;
    background: #eaf1f9;
    color: #4c4c4c;
    width: 240px;
    height: 46px;
    font-size: 20px;
    margin: 30px auto;
}

/* リンクボタン-お問い合わせリンク */
.antivirus-page .contact-section {
    margin-bottom: 120px;
}
.contact-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 20px;
}
.contact-btn-single {
    margin-bottom: 32px;
}
.contact-btn {
    color: #6294CC;
    border: 3px solid #6294CC;
    border-radius: 50px;
    font-size: 16px;
    height: 60px;
    width: 330px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.contact-btn:hover {
    opacity: 0.6;
}

/* リンクボタン-SIAA */
.link-text-siaa {
    font-size: 14px;
    color: #222;
}
.link-btn-siaa {
    border-radius: 0 8px 0 0;
    color: #222;
    width: 180px;
    height: 35px;
    font-size: 14px;
}
.link-btn-siaa::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background: url(/assets/img/common/open.svg) no-repeat center center;
    background-size: contain;
    margin-left: .3em;
}
.link-btn-siaa.antivirus {
    border: 3px solid #e81146;
    background: #fde6eb;
}
.link-btn-siaa.antibiotic {
    border: 3px solid #86c9c7;
    background: #e1f2f1;
}
.link-btn-siaa:hover {
    color: #222;
    opacity: 0.6;
}

/* ぱんくずリスト */
nav.pankuzu {
    max-width: 1064px;
    margin: 0 auto;
    padding: 120px 20px 24px;
    height: auto;
}

nav.pankuzu ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  line-height: 2;
}

nav.pankuzu li {
  font-size: 12px;
}

nav.pankuzu li:not(:last-child)::after {
  content: '/';
  padding: 0 0.5em;
}

nav.pankuzu a {
  color: #426599;
  text-decoration: underline;
}

nav.pankuzu a:hover {
  color: #222;
  text-decoration: none;
  opacity: 1;
}

/* キービジュアル */
.antivirus-kv {
    margin-bottom: 48px;
}
.antivirus-kv img {
    width: 100%;
    height: auto;
}

/* 抗ウイルス試験 */
.evidence-list img {
    align-self: flex-start;
}
.evidence-list > li:not(:last-child)::after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    border-bottom: dotted 3px #ddd;
    margin: 48px 0;
}
.evidence-method-list {
    font-size: 13px;
    line-height: 1.5;
    margin: 1.2em 0;
    font-weight: 500;
}
.evidence-note-list {
    font-size: 12px;
    line-height: 1.5;
    padding-left: 3em;
    text-indent: -2.5em;
}
.evidence-note-list li {
    margin-bottom: .5em;
}
.evidence-caution-list {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: .5em;
    padding-left: 1em;
    text-indent: -1em;
}
.evidence-list .content-p span {
    display: block;
    font-size: 13px;
    margin-bottom: 1em;
}

/*メディアクエリ 1024px以下*/
@media (max-width:1024px) {
    /* ぱんくずリスト */
    nav.pankuzu {
        padding: 80px 15px 16px;
    }
}

/*メディアクエリ 768px以下*/
@media (max-width:768px) {
    .displaynone-pc {
        display: block;
    }
    .displaynone-sm {
        display: none;
    }
    .antivirus-page .content {
        margin-bottom: 60px;
    }
    .antivirus-page .bg-content {
        margin-bottom: 60px;
        padding: 0;
    }
    .bg-gray {
        padding: 32px 30px;
    }

    /* 抗ウイルス試験 */
    .evidence-list > li:not(:last-child)::after {
        margin: 32px 0;
    }
    .evidence-note-list {
        padding-left: 2.5em;
    }

    /* お問い合わせリンク */
    .antivirus-page .contact-section {
        margin-bottom: 80px;
    }
    .contact-btn-wrap {
        gap: 16px 20px;
    }
    .contact-btn-single {
        margin-bottom: 16px;
    }
}