@charset "UTF-8";
/*
*
* product_module_addition.css
* 商品ページ共通モジュールを個別に上書き・追加するCSS
* 初期値はデフォルトのスタイルを当てていますので、値を変更してご使用下さい
*
*/
:root {
    --base-color: #c02;
    --hover-color: #333;
    --bg-color: #f2f2f2;
    --heading-color: #000;
}
/* --------------------------------
配下ページのメインビジュアル
-------------------------------- */
.hs-main-visual {
    background-image: url("/sbom/asset/images/common/kv_img_lower_sm.jpg");
}

@media (min-width: 768px) {
    .hs-main-visual {
        background-image: url("/sbom/asset/images/common/kv_img_lower_lg.jpg");
    }
}

/* --------------------------------
  ブランドカラーを使用
　使用するときはコメント削除してください
-------------------------------- */
/*
.hs-c-overview{
 // とは
    background-color: var(--bg-color) !important;
}
//３つのポイント、他商品と組み合わせ
.hs-pointcard__image,
.hs-alignment-box__icon{
    background-color: var(--base-color);
}
*/

/*ローカルナビにメガメニューを設置する場合
    /asset/css/localheader.html 内のクラスhs-navigation-mega--default 削除
    <div id="hs-navigation-nav01" class="hs-navigation-mega hs-navigation-mega--default" aria-hidden="true">
    →<div id="hs-navigation-nav01" class="hs-navigation-mega"  aria-hidden="true">
*/

/* --------------------------------
もっと知る　基本は--bg-color
-------------------------------- */
/*
.hs-content-footer {
    background-color: var(--base-color);
}
*/

/* --------------------------------
  背景の指定がある場所でベースの背景カラーを使用したい場合は
  .u-background--type-brand（ブランドカラー）
　.u-background--type-brand-bg（ブランド背景カラー）
　クラスを使用
-------------------------------- */




/* ======================================================
 * 追加パーツ
 * ------------------------------------------------------
 * Override
 * @media print, screen and (min-width: 768px)
 * - Override
 * - Parts
 * PC Media Queries
 * @media only screen and (max-width: 767px)
 * - Override
 * - Parts
 * SP Media Queries
 * Print
====================================================== */
/* ------------------------------------------------------
 * Override
------------------------------------------------------ */
@media (min-width: 768px) {
  .hs-c-button-media__imgwrap {
    width: 96px;
    height: 96px;
  }
}
.sbom-detail-news .hs-c-button-media .hs-c-button-media__imgwrap > img {
	width: 100%;
}
/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
    /* ------------------------------------------------------
    * Override
    ------------------------------------------------------ */

    /* ------------------------------------------------------
    * Parts
    ------------------------------------------------------ */
    /* ----- sbom-cmn-card-wrap ----- */
    .sbom-cmn-card-wrap {
        display: flex;
        flex-flow: row wrap;
    }
    /* ----- sbom-cmn-card ----- */
    .sbom-cmn-card {
        width: calc((100% - 24px * 2) / 3);
        margin: 32px 0 0 24px;
    }
    .sbom-cmn-card:nth-of-type(-n+3) {
        margin-top: 0;
    }
    .sbom-cmn-card:nth-of-type(3n+1) {
        margin-left: 0;
    }
    .sbom-cmn-card .sbom-cmn-card__link {
        display: block;
        height: 100%;
        border: 1px solid #bbb;
        text-decoration: none;
        transition: color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .sbom-cmn-card .sbom-cmn-card__link:hover {
        color: #b1000e;
    }
    .sbom-cmn-card .sbom-cmn-card__link:hover .sbom-cmn-card__image::after {
        opacity: 1;
    }
    .sbom-cmn-card .sbom-cmn-card__link:hover .sbom-cmn-card__title,
    .sbom-cmn-card .sbom-cmn-card__link:hover .sbom-cmn-card__date {
        color: #c02;
    }
    .sbom-cmn-card .sbom-cmn-card__head > :first-child,
    .sbom-cmn-card .sbom-cmn-card__body > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-card .sbom-cmn-card__body {
        padding: 16px;
    }
    .sbom-cmn-card .sbom-cmn-card__image {
        position: relative;
        aspect-ratio: 343 / 187.5;
        width: 100%;
    }
    .sbom-cmn-card .sbom-cmn-card__image > img {
        position: relative;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .sbom-cmn-card .sbom-cmn-card__image::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
        z-index: 2;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        gap: 12px 12px;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > [class^="sbom-cmn-card__tag"] {
        display: inline-block;
        padding: 0.3125em 0.9375em 0.25em;
        border-radius: 999px;
        border: 1px solid #bbb;
        background-color: transparent;
        color: #333;
        font-size: .75em;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > .sbom-cmn-card__tag--category {
        border-color: #f4511e;
        background-color: #fffbfa;
        color: #f4511e;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > .sbom-cmn-card__tag--keyword {
        border-color: #10b166;
        background-color: #f4fcf8;
        color: #10b166;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > .sbom-cmn-card__tag--author {
        border-color: #039be5;
        background-color: #f5fbfd;
        color: #039be5;
    }
    .sbom-cmn-card .sbom-cmn-card__title {
        margin-top: 16px;
        font-size: 1rem;
        font-weight: bold;
        line-height: 1.5;
        color: #000;
        transition: color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .sbom-cmn-card .sbom-cmn-card__date {
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid #bbb;
        font-size: .875rem;
        line-height: 1.6875;
        color: #000;
        transition: color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    /* ----- sbom-blog-list ----- */
    .sbom-blog-list > :first-child {
        margin-top: 0!important;
    }

    /* ----- sbom-cmn-tag-list ----- */
    .sbom-cmn-tag-list {
        padding: 32px;
        background: #f2f2f2;
    }
    .sbom-cmn-tag-list > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__head > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__title {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.3;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__body {
        margin-top: 24px;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__body > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item {
        margin-top: 24px;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item__head {
        font-size: 1rem;
        font-weight: bold;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item__body {
        margin-top: 5px;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item__body > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags {
        display: flex;
        flex-flow: row wrap;
        gap: 10px 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li {
        position: relative;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > input {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        font-size: 0;
        opacity: 0;
        pointer-events: none;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > a {
        position: relative;
        display: inline-block;
        border-radius: 999px;
        border: 1px solid #bbb;
        background-color: transparent;
        color: #333;
        font-size: .75em;
        text-decoration: none;
        cursor: pointer;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > label {
        padding: 5px 13px 4px 34px;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > a {
        padding: 5px 13px 4px;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > label:hover,
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > a:hover {
        opacity: 0.7;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > label::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 12px;
        bottom: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 1px solid #bbbbbb;
        background-color: #f4f4f4;
        transform: translateY(-50%);
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background: #333 url(/r23res/image/common/icon_check_white.svg) no-repeat center center / 9px auto;
        border-color: #333;
    }
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > a {
        color: #f4511e;
        background-color: #fffbfa;
    }
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > input:checked + label,
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > a {
        border-color: #f4511e;
    }
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background-color: #f4511e;
        border-color: #f4511e;
    }
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > a {
        color: #10b166;
        background-color: #f4fcf8;
    }
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > input:checked + label,
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > a {
        border-color: #10b166;
    }
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background-color: #10b166;
        border-color: #10b166;
    }
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > a {
        color: #039be5;
        background-color: #f5fbfd;
    }
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > input:checked + label,
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > a {
        border-color: #039be5;
    }
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background-color: #039be5;
        border-color: #039be5;
    }

    /* ----- sbom-blog-detail-heading ----- */
    .sbom-blog-detail-heading > *:first-child {
        margin-top: 0!important;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        gap: 12px 12px;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > [class^="sbom-blog-detail-heading__tag"] {
        display: inline-block;
        padding: 0.3125em 0.9375em 0.25em;
        border-radius: 999px;
        border: 1px solid #bbb;
        background-color: transparent;
        color: #333;
        font-size: .75em;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > .sbom-blog-detail-heading__tag--category {
        border-color: #f4511e;
        background-color: #fffbfa;
        color: #f4511e;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > .sbom-blog-detail-heading__tag--keyword {
        border-color: #10b166;
        background-color: #f4fcf8;
        color: #10b166;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > .sbom-blog-detail-heading__tag--author {
        border-color: #039be5;
        background-color: #f5fbfd;
        color: #039be5;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__title {
        margin: 24px 0 0;
        font-size: 2.25rem;
        font-weight: bold;
        line-height: 1.4;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__date {
        display: flex;
        flex-flow: row wrap;
        gap: 0 2em;
        margin: 24px 0 0;
    }
}



/* ======================================================
 * PC Media Queries
====================================================== */
/*@media screen and (min-width: 1921px) {
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
}
@media screen and (min-width: 768px) and (max-width: 812px) {
}*/

/* ======================================================
 * SP
====================================================== */
@media (max-width: 767.98px) {
    /* ------------------------------------------------------
    * Override
    ------------------------------------------------------ */

    /* ------------------------------------------------------
    * Parts
    ------------------------------------------------------ */
    /* ----- sbom-cmn-card-wrap ----- */
    .sbom-cmn-card-wrap {
        display: block;
    }

    /* ----- sbom-cmn-card ----- */
    .sbom-cmn-card {
        width: 100%;
        margin: 8.5333333333vw 0 0;
    }
    .sbom-cmn-card:first-child {
        margin-top: 0;
    }
    .sbom-cmn-card .sbom-cmn-card__link {
        display: block;
        height: 100%;
        border: 1px solid #bbb;
        text-decoration: none;
    }
    .sbom-cmn-card .sbom-cmn-card__head > :first-child,
    .sbom-cmn-card .sbom-cmn-card__body > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-card .sbom-cmn-card__body {
        padding: 4.2666666667vw;
    }
    .sbom-cmn-card .sbom-cmn-card__image {
        aspect-ratio: 343 / 187.5;
        width: 100%;
    }
    .sbom-cmn-card .sbom-cmn-card__image > img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        gap: 3.2vw 3.2vw;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > [class^="sbom-cmn-card__tag"] {
        display: inline-block;
        padding: 1.0666666667vw 2.6666666667vw 0.8vw;
        border-radius: 999px;
        border: 1px solid #bbb;
        background-color: transparent;
        color: #333;
        font-size: 2.6666666667vw;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > .sbom-cmn-card__tag--category {
        border-color: #f4511e;
        background-color: #fffbfa;
        color: #f4511e;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > .sbom-cmn-card__tag--keyword {
        border-color: #10b166;
        background-color: #f4fcf8;
        color: #10b166;
    }
    .sbom-cmn-card .sbom-cmn-card__tag-list > .sbom-cmn-card__tag--author {
        border-color: #039be5;
        background-color: #f5fbfd;
        color: #039be5;
    }
    .sbom-cmn-card .sbom-cmn-card__title {
        margin-top: 4.2666666667vw;
        font-size: 4.2666666667vw;
        font-weight: bold;
        line-height: 1.5;
        color: #000;
    }
    .sbom-cmn-card .sbom-cmn-card__date {
        margin-top: 2.1333333333vw;
        padding-top: 4.2666666667vw;
        border-top: 1px solid #bbb;
        font-size: 3.7333333333vw;
        line-height: 1.6875;
        color: #000;
    }

    /* ----- sbom-blog-list ----- */
    .sbom-blog-list > :first-child {
        margin-top: 0!important;
    }

    /* ----- sbom-cmn-tag-list ----- */
    .sbom-cmn-tag-list {
        padding: 8.5333333333vw 5.3333333333vw;
        background: #f2f2f2;
    }
    .sbom-cmn-tag-list > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__head > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__title {
        font-size: 6.4vw;
        font-weight: bold;
        line-height: 1.3;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__body {
        margin-top: 6.4vw;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__body > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item {
        margin-top: 6.4vw;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item__head {
        font-size: 4.2666666667vw;
        font-weight: bold;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item__body {
        margin-top: 1.3333vw;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__item__body > :first-child {
        margin-top: 0!important;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags {
        display: flex;
        flex-flow: row wrap;
        gap: 1.8666666667vw 2.4vw;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li {
        position: relative;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > input {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        font-size: 0;
        opacity: 0;
        pointer-events: none;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > a {
        position: relative;
        display: inline-block;
        padding: 1.0666666667vw 3.4666666667vw 1.0666666667vw 9.0666666667vw;
        border-radius: 999px;
        border: 1px solid #bbb;
        background-color: transparent;
        color: #333;
        font-size: 3.2vw;
        text-decoration: none;
        cursor: pointer;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > label {
        padding: 1.0666666667vw 3.4666666667vw 1.0666666667vw 9.0666666667vw;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > a {
        padding: 1.0666666667vw 3.4666666667vw;
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > label::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 3.2vw;
        bottom: 0;
        width: 4.8vw;
        height: 4.8vw;
        border-radius: 50%;
        border: 1px solid #bbbbbb;
        background-color: #f4f4f4;
        transform: translateY(-50%);
    }
    .sbom-cmn-tag-list .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background: #333 url(/r23res/image/common/icon_check_white.svg) no-repeat center center / 9px auto;
        border-color: #333;
    }
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > a {
        color: #f4511e;
        background-color: #fffbfa;
    }
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > input:checked + label,
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > a {
        border-color: #f4511e;
    }
    .sbom-cmn-tag-list [data-tag-type="category"] .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background-color: #f4511e;
        border-color: #f4511e;
    }
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > a {
        color: #10b166;
        background-color: #f4fcf8;
    }
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > input:checked + label,
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > a {
        border-color: #10b166;
    }
    .sbom-cmn-tag-list [data-tag-type="keyword"] .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background-color: #10b166;
        border-color: #10b166;
    }
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > label,
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > a {
        color: #039be5;
        background-color: #f5fbfd;
    }
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > input:checked + label,
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > a {
        border-color: #039be5;
    }
    .sbom-cmn-tag-list [data-tag-type="author"] .sbom-cmn-tag-list__tags > li > input:checked + label::before {
        background-color: #039be5;
        border-color: #039be5;
    }

    /* ----- sbom-blog-detail-heading ----- */
    .sbom-blog-detail-heading > *:first-child {
        margin-top: 0!important;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list {
        display: flex;
        flex-flow: row wrap;
        align-items: flex-start;
        gap: 3.2vw 3.2vw;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > [class^="sbom-blog-detail-heading__tag"] {
        display: inline-block;
        padding: 1.0666666667vw 2.6666666667vw 0.8vw;
        border-radius: 999px;
        border: 1px solid #bbb;
        background-color: transparent;
        color: #333;
        font-size: 2.6666666667vw;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > .sbom-blog-detail-heading__tag--category {
        border-color: #f4511e;
        background-color: #fffbfa;
        color: #f4511e;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > .sbom-blog-detail-heading__tag--keyword {
        border-color: #10b166;
        background-color: #f4fcf8;
        color: #10b166;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__tag-list > .sbom-blog-detail-heading__tag--author {
        border-color: #039be5;
        background-color: #f5fbfd;
        color: #039be5;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__title {
        margin: 6.4vw 0 0;
        font-size: 8vw;
        font-weight: bold;
        line-height: 1.4;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__date {
        margin: 6.4vw 0 0;
    }
    .sbom-blog-detail-heading .sbom-blog-detail-heading__date > *:first-child {
        margin-top: 0!important;
    }

}


/* ======================================================
 * SP Media Queries
====================================================== */
/*@media only screen and (max-width: 736px) {
}
@media only screen and (max-width: 667px) {
}
@media only screen and (max-width: 640px) {
}
@media only screen and (max-width: 568px) {
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 414px) {
}
@media only screen and (max-width: 375px) {
}
@media only screen and (max-width: 360px) {
}
@media only screen and (max-width: 320px) {
}*/


/* ======================================================
 * Print
====================================================== */
@media print {
}