/* ==================================================
    768～1279pxの表示崩れ修正
================================================== */

@media screen and (max-width: 479px) {
    .productSupplierHead__inner {
        width: 100%;
    }
    .productSupplierHead__thumb {
        width: 60px;
    }
    .productSupplierHead__text {
        width: calc(100% - 60px);
    }
    .productSupplierHead__text__innerText br {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    body {
        min-width: auto;
    }
    .productSupplierHead__inner {
        width: calc(100% - 30px);
        padding-left: 0;
        padding-right: 0;
    }
    .productSupplierHead__thumb {
        width: 120px;
    }
    .productSupplierHead__text {
        width: calc(100% - 120px);
        padding: 15px 0 15px 15px;
    }
    .productSupplierHead__text__innerText {
        font-size: 30px;
    }
    .singleProductPageHeader {
        overflow: hidden;
    }
    .singleProductPageHeader__inner {
        width: calc(100% - 30px);
    }
    .singleProductPageContentSec__inner {
        width: calc(100% - 30px);
        padding-left: 0;
        padding-right: 0;
    }
    .siteFooter__inner {
        width: calc(100% - 30px);
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .siteFooter__inner {
        display: block;
    }
    .siteFooter__bottomTextWrap {
        margin-top: 55px;
        align-items: center;
    }
}





/* ==================================================
    siteContent
================================================== */

@media screen and (max-width: 1279px) {
    .siteContent {
        overflow-x: clip;
    }
}





/* ==================================================
    singleProductPageContentSec
================================================== */

.singleProductPageContentSec {
    margin-bottom: 65px;
}

@media screen and (max-width: 767px) {
    .singleProductPageContentSec {
        margin-bottom: 30px;
    }
}





/* ==================================================
    productSupplierDetailArea
================================================== */

.productSupplierDetailArea {
    display: block;
}





/* ==================================================
    color
================================================== */

:root {
    --key-color: #0066cc;
}





/* ==================================================
    common
================================================== */

/* ----------------------------------------
	contentWrap
---------------------------------------- */

.contentWrap {
    padding: 90px 0;
}
.contentWrap * {
    font-family: 'Noto Sans', sans-serif;
}
.contentWrap p {
    margin-top: 1.5em;
    font-size: 15px;
    line-height: 1.7;
}

@media screen and (max-width: 767px) {
    .contentWrap {
        padding: 40px 0;
    }
    .contentWrap p {
        font-size: 12px;
    }
}



/* ----------------------------------------
    subContentWrap
---------------------------------------- */

.subContentWrap {
    padding: 75px 0;
}
.subContentWrap:last-child {
    padding-bottom: 0;
}

@media screen and (max-width: 767px) {
    .subContentWrap {
        padding: 40px 0;
    }
}



/* ----------------------------------------
    title
---------------------------------------- */

.title {
    display: flex;
    align-items: center;
    padding-top: calc(72px + 95px);
    margin-top: calc(-72px + -95px);
    font-size: 30px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
}
.title::before,
.title::after {
    background: var(--key-color);
    content: "";
    flex-grow: 1;
    height: 2px;
}
.title::before {
    margin-right: .5em;
}
.title::after {
    margin-left: .5em;
}

@media screen and (max-width: 767px) {
    .title {
        padding-top: calc(40px + 75px);
        margin-top: calc(-40px + -75px);
        font-size: 20px;
    }
}



/* ----------------------------------------
    subtitle
---------------------------------------- */

.subtitle {
    position: relative;
    padding-bottom: 20px;
    color: var(--key-color);
    font-size: 27px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.subtitle::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--key-color);
}
* + .subtitle {
    margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
    .subtitle {
        font-size: 18px;
    }
}



/* ----------------------------------------
    subtitle2
---------------------------------------- */

.subtitle2 {
    position: relative;
    color: var(--key-color);
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    padding-bottom: .8em;
    margin-bottom: 45px;
}
.subtitle2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: var(--key-color);
}
* + .subtitle2 {
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .subtitle2 {
        margin-bottom: 20px;
        font-size: 16px;
    }
    * + .subtitle2 {
        margin-top: 40px;
    }
}



/* ----------------------------------------
    text-align
---------------------------------------- */

.tleft { text-align: left !important;}
.tcenter { text-align: center !important;}
.tright { text-align: right !important;}



/* ----------------------------------------
    notes
---------------------------------------- */

p.notes {
	padding-left: 1em;
	font-size: 13px;
	line-height: 1.33;
	text-indent: -1em;
}
* + p.notes {
    margin-top: .5em;
}



/* ----------------------------------------
    button
---------------------------------------- */

.buttonWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-top: 75px;
}
.button {
    display: inline-block;
    transition: .6s;
    width: 400px;
    max-width: 100%;
    padding: 18px 20px;
    font-weight: bold;
    text-align: center;
    background: var(--key-color);
    border: 1px solid var(--key-color);
}
.button span {
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.2em;
}
.button:hover {
    background: #fff;
}
.button:hover span {
    color: var(--key-color);
}

@media screen and (max-width: 767px) {
    .buttonWrap {
        margin-top: 35px;
    }
    .button span {
        font-size: 16px;
    }
}





/* ==================================================
    navi
================================================== */

.naviWrap {
    position: sticky;
    top: 72px;
    z-index: 1;
    margin-top: 50px;
    background: rgb(255 255 255 / .8);
}
.naviWrap * {
    font-family: 'Noto Sans', sans-serif;
}
.navi_list {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}
.navi_list li {
    width: 400px;
    max-width: 100%;
    min-height: 65px;
}
.navi_list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 4px;
}
.navi_list a span {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
    .naviWrap {
        top: 40px;
    }
    .navi_list {
        gap: 10px;
        padding: 10px 0;
    }
    .navi_list li {
        min-height: 55px;
    }
    .navi_list a span {
        font-size: 12px;
    }
}





/* ==================================================
    case_list
================================================== */

.case_list {
    display: flex;
    justify-content: center;
    margin: 0 -20px;
}
.case_list > li {
    width: 50%;
    max-width: 450px;
}
.case_list a {
    display: flex;
    flex-direction: column;
    transition: .6s;
    height: 100%;
    margin: 0 20px;
    background: #fff;
    box-shadow: 2px 3px 14px 4px rgba(51, 51, 51, 0.2);
}
.case_list .media {
    overflow: hidden;
    height: 240px;
}
.case_list .media img {
    transition: .6s;
    object-fit: cover;
    height: 100%;
}
.case_list .cont {
    padding: 25px;
}
.case_list .cont h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

/* hover */
.case_list a:hover {
    color: var(--key-color);
}
.case_list .media img:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .case_list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .case_list > li {
        width: 100%;
    }
}





/* ==================================================
    WindowsEmbedded_merit
================================================== */

.WindowsEmbedded_merit {
    max-width: 940px;
    margin: 65px auto 0;
}
.WindowsEmbedded_merit > h3 {
    padding-top: 112px;
    margin-bottom: 30px;
    color: #1861ad;
    font-size: 35px;
    text-align: center;
    background: url(images/icon_windows_embedded_merit_title.png) no-repeat center top;
}
.WindowsEmbedded_merit_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.WindowsEmbedded_merit_list > li {
    padding: 20px;
    background: #f5f5f5;
}
.WindowsEmbedded_merit_list h4 {
    padding-top: 80px;
    margin-bottom: 18px;
    color: #1861ad;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center top;
}
.WindowsEmbedded_merit_list > li:nth-child(1) h4 {
    background-image: url(images/icon_windows_embedded_merit1.png);
}
.WindowsEmbedded_merit_list > li:nth-child(2) h4 {
    background-image: url(images/icon_windows_embedded_merit2.png);
}
.WindowsEmbedded_merit_list > li:nth-child(3) h4 {
    background-image: url(images/icon_windows_embedded_merit3.png);
}

@media screen and (max-width: 767px) {
    .WindowsEmbedded_merit {
        margin-top: 35px;
    }
    .WindowsEmbedded_merit > h3 {
        padding-top: 62px;
        margin-bottom: 31px;
        font-size: 18px;
        line-height: 1.4;
        background-size: 46px auto;
    }
    .WindowsEmbedded_merit_list {
        grid-template-columns: 1fr;
    }
}





/* ==================================================
    support
================================================== */

.support {
    max-width: 940px;
    padding-top: 30px;
    margin: 65px auto 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.support > h3 {
    padding: 8px 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    letter-spacing: .05em;
    background: #175ca2;
}
.support_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 20px;
    text-align: center;
}
.support_list img {
    width: 120px;
    max-width: 80%;
}
.support_list p {
    font-size: 14px;
    line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .support {
        margin-top: 35px;
    }
    .support > h3 {
        font-size: 16px;
    }
    .support_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .support_list p {
        font-size: 12px;
    }
}





/* ==================================================
    kitting
================================================== */

.kittingwrap {
    max-width: 940px;
    margin: 65px auto 0;
}
.kittingBox {
    padding: 30px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 6px rgba(0,0,0,.05);
}
.kittingBox > h3 {
    padding: 8px 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    letter-spacing: .05em;
}
.kittingBox.issue > h3 {
    background: #00a8ea;
}
.kittingBox.feature > h3 {
    background: #e6aa00;
}
.kittingBox.issue ul {
    padding: 20px 60px 10px;
}
.kittingBox.issue ul li {
    padding: .8em 0;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #00a8ea;
}
.kittingBox.issue ul li span {
    color: #175ca1;
}
.kittingArrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
    width: 370px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 70px;
    background: #00a8ea;
}
.kittingArrow::after {
    content: "";
    width: 100%;
    height: 54px;
    background: linear-gradient(to top left, #fff 50%, #00a8ea 50.5%) no-repeat top right / 50% 100%, linear-gradient(to top right, #fff 50%, #00a8ea 50.5%) no-repeat top left / 50% 100%;
}
.kittingSupportWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    padding: 30px 70px 0;
}
.kittingSupportWrap dt {
    display: flex;
    align-items: center;
    padding-left: 24px;
    margin-bottom: 6px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    height: 30px;
    background: #fffde5;
    border: 1px solid #e6aa00;
    border-radius: 15px;
}
.kittingSupportWrap dd {
    margin-left: 24px;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
}

@media screen and (max-width: 1023px) {
    .kittingBox.issue ul,
    .kittingSupportWrap {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media screen and (max-width: 767px) {
    .kittingwrap {
        margin-top: 35px;
    }
    .kittingBox > h3 {
        font-size: 16px;
    }
    .kittingBox.issue ul {
        padding: 20px 20px 0;
    }
    .kittingBox.issue ul li {
        font-size: calc(22 / 750 * 100vw);
    }
    .kittingArrow {
        width: calc( 550 / 750 * 100vw);
        font-size: calc( 24 / 750 * 100vw);
        line-height: calc( 100 / 750 * 100vw);
    }
    .kittingArrow::after {
        height: calc( 82 / 750 * 100vw);
    }
    .kittingSupportWrap {
        grid-template-columns: 1fr;
        padding: 20px 20px 0;
    }
    .kittingSupportWrap dt {
        height: calc(42 / 750 * 100vw);
        padding-left: calc(30 / 750 * 100vw);
        margin-bottom: calc(10 / 750 * 100vw);
        font-size: calc(24 / 750 * 100vw);
        border-radius: calc(21 / 750 * 100vw);
    }
    .kittingSupportWrap dd {
        margin-left: calc(30 / 750 * 100vw);
        font-size: calc(22 / 750 * 100vw);
    }
}





/* ==================================================
    product
================================================== */

.prod_list {
    display: grid;
    gap: 65px;
    margin-top: 65px;
}
.prod_list .row {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 20px 40px;
}
.prodTitleWrap {
    align-items: center;
    margin-bottom: 30px;
}
.prodTitleWrap h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}
.prodContWrap .media {
    align-self: center;
    text-align: center;
}
.prodContWrap .media img {
    width: auto;
    max-width: 100%;
}
.prodChara_list {
    display: grid;
    gap: 20px;
}
.prodChara_list > li {
    display: grid;
    grid-template-columns: 1fr 180px;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f5f5f5;
}
.prodChara_list > li .cont p {
    margin-top: 0;
}

@media screen and (max-width: 1023px) {
    .prod_list .row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .prod_list {
        gap: 35px;
        margin-top: 35px;
    }
    .prodTitleWrap h4 {
        font-size: 18px;
    }
    .prodChara_list > li {
        grid-template-columns: 1fr;
    }
    .prodChara_list > li .cont {
        order: 2;
    }
}





/* ==================================================
    xxxxx
================================================== */

