@charset "UTF-8";

.lp-buttonConversion {
    display: inline-block;
    max-width: 100%;
    background: #dc002f;
    color: #fff;
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition-duration: 0.2s;
    transition-property: background-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media only screen and (max-width: 640px) {
    .lp-buttonConversion {
        font-size: 1.6rem;
    }
}

@media (hover: hover) {
    .lp-buttonConversion:hover {
        background-color: #c6002a;
    }
}

.lp-buttonConversion-body {
    display: flex;
    align-items: center;
    padding: 12px 8px 12px 24px;
}

@media only screen and (max-width: 640px) {
    .lp-buttonConversion-body {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

.lp-buttonConversion-text {
    margin-right: 16px;
}

.lp-buttonConversion-image {
    margin: -22px 0;
    border: 1px solid #ccc;
}

.lp-buttonConversion-image > img {
    min-width: 42px;
    max-width: 60px;
}

.lp-buttonConversion.of-download .lp-buttonConversion-body, .lp-buttonConversion.of-anchor .lp-buttonConversion-body, .lp-buttonConversion.of-arrow .lp-buttonConversion-body, .lp-buttonConversion.of-inquiry .lp-buttonConversion-body {
    position: relative;
    padding-left: 53px;
}

.lp-buttonConversion.of-download .lp-buttonConversion-body::before, .lp-buttonConversion.of-anchor .lp-buttonConversion-body::before, .lp-buttonConversion.of-arrow .lp-buttonConversion-body::before, .lp-buttonConversion.of-inquiry .lp-buttonConversion-body::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 24px;
    width: 19px;
    height: 18px;
    transform: translateY(-50%);
    content: "";
}

.lp-buttonConversion.of-download .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_dl.png") no-repeat center center;
}

.lp-buttonConversion.of-anchor .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_anc_03.png") no-repeat center center;
}

.lp-buttonConversion.of-arrow .lp-buttonConversion-body::before {
    left: 26px;
    height: 12px;
    border-width: 7px 0 7px 13px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.lp-buttonConversion.of-inquiry .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_inquiry_01.png") no-repeat center center;
}

.lp-buttonConversion.of-priceIcon .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-jpy .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-gbp .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-krw .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-eur .lp-buttonConversion-body {
    position: relative;
    padding-left: 53px;
}

.lp-buttonConversion.of-priceIcon .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-jpy .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-gbp .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-krw .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-eur .lp-buttonConversion-body::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 24px;
    width: 19px;
    height: 18px;
    transform: translateY(-50%);
    content: "";
}

.lp-buttonConversion.of-priceIcon .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_price_usd.png") no-repeat center center;
}

.lp-buttonConversion.of-priceIcon-jpy .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_price_jpy.png") no-repeat center center;
}

.lp-buttonConversion.of-priceIcon-gbp .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_price_gbp.png") no-repeat center center;
}

.lp-buttonConversion.of-priceIcon-krw .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_price_krw.png") no-repeat center center;
}

.lp-buttonConversion.of-priceIcon-eur .lp-buttonConversion-body::before {
    background: url("../../img/landing_page/common/icon_btn_price_eur.png") no-repeat center center;
}

.lp-buttonConversion.of-primary {
    background: #13778f;
}

@media (hover: hover) {
    .lp-buttonConversion.of-primary:hover {
        background-color: #116b81;
    }
}

.lp-buttonConversion.of-secondary {
    background: #0065bb;
}

.lp-buttonConversion.of-download .lp-buttonConversion-body::before {
    background: url("../../../../../../img/landing_page/common/icon_btn_dl.png") no-repeat center center !important;
}

.lp-buttonConversion.of-anchor .lp-buttonConversion-body::before {
    background: url("../../../../../../img/landing_page/common/icon_btn_anc_03.png") no-repeat center center !important;
}

:root {
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    min-width: 320px;
    background: #fff;
    color: #333;
    font-family: source-han-sans-japanese, notosans, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
}

main {
    display: block;
}

p {
    margin-bottom: 16px;
}

ul,
ol {
    list-style: none;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    text-decoration: underline;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    border-bottom: 0;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bold;
}

em {
    font-style: normal;
    font-weight: bold;
}

dfn,
cite {
    font-style: normal;
}

code,
kbd,
samp {
    font-family: monospace;
    font-size: 1em;
}

small {
    font-size: 100%;
}

i {
    font-style: italic;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    max-width: 100%;
    border-style: none;
    vertical-align: bottom;
}

table {
    width: 100%;
    border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
    border-radius: 0;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    border: 0;
    background: none;
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: none;
}

legend {
    display: table;
    max-width: 100%;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

[data-script-enabled="true"] .lp-layout-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

@media only screen and (max-width: 1365px) {
    [data-script-enabled="true"] .lp-layout-container {
        display: block;
        height: auto;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    [data-script-enabled="true"] .lp-layout-container {
        display: inline;
        height: auto;
    }
}

[data-script-enabled="true"] .lp-layout-main {
    display: flex;
    position: relative;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
}

@media only screen and (max-width: 1365px) {
    [data-script-enabled="true"] .lp-layout-main {
        flex: none;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    [data-script-enabled="true"] .lp-layout-main {
        display: block;
        flex: none;
    }
}

.lp-navigation {
    display: none;
    z-index: 2;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    background: #484848;
}

.lp-navigation.is-show {
    display: block;
    animation: fadeIn 0.6s linear 0.3s both;
}

.lp-navigation-content {
    max-width: 1080px;
    margin: 0 auto;
}

.lp-navigation-list {
    display: flex;
    justify-content: center;
    height: 80px;
}

.lp-navigation-list > li {
    display: flex;
    position: relative;
}

.lp-navigation-list > li::before {
    display: block;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #707070;
    content: "";
}

.lp-navigation-list > li:first-child::before {
    content: none;
}

.lp-navigation-list > li:first-child .lp-navigation-button:not([data-category="top"]) {
    width: 100%;
    min-width: 350px;
    padding: 10px 24px;
}

.lp-navigation-list > li:first-child .lp-navigation-button:not([data-category="top"]).is-current {
    background: #14852b;
    color: #fff;
}

.lp-navigation-list > li:first-child .lp-navigation-button:not([data-category="top"]):hover {
    background: #14852b;
    color: #fff;
}

.lp-navigation-list > li:last-child .lp-navigation-button:not([data-category="top"]) {
    width: 100%;
    min-width: 350px;
    padding: 10px 24px;
}

.lp-navigation-list > li:last-child .lp-navigation-button:not([data-category="top"]).is-current {
    background: #4a579a;
    color: #fff;
}

.lp-navigation-list > li:last-child .lp-navigation-button:not([data-category="top"]):hover {
    background: #4a579a;
    color: #fff;
}

.lp-navigation-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 160px;
    padding: 10px 24px;
    background: #333;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.lp-navigation-button:hover {
    background: #fff;
    color: #333;
}

.lp-jumbotron {
    display: flex;
    flex: 1;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron {
        flex: none;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-jumbotron {
        display: inline;
        flex: none;
    }
}

.lp-jumbotron-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-content {
        flex-wrap: nowrap;
    }
}

@media only screen and (max-width: 767px) {
    .lp-jumbotron-content {
        flex-direction: column;
    }
}

.lp-jumbotron-body {
    display: flex;
    flex-direction: column;
    width: 50%;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-body {
        min-height: 0%;
        padding: 40px 24px;
        background: transparent linear-gradient(0deg, #f5f5f5 0%, #cecece 100%) 0% 0% no-repeat padding-box;
    }
}

@media only screen and (max-width: 767px) {
    .lp-jumbotron-body {
        width: 100%;
        padding: 32px 20px;
    }
    .lp-jumbotron-body > * {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-jumbotron-body {
        display: inline;
    }
}

.lp-jumbotron-body.is-spread .lp-mediaProduct {
    z-index: 100;
}

.lp-jumbotron-body.is-spread .lp-mediaProduct.of-primary {
    margin-right: -25px;
}

.lp-jumbotron-body.is-spread .lp-mediaProduct.of-secondary {
    margin-left: -25px;
}

.lp-jumbotron-body.is-spread .lp-mediaProduct-image {
    transform: scale(1.1);
}

.lp-jumbotron-body.is-shrink .lp-mediaProduct {
    z-index: 0;
}

.lp-jumbotron-body.is-shrink .lp-mediaProduct.of-primary {
    margin-right: 25px;
}

.lp-jumbotron-body.is-shrink .lp-mediaProduct.of-secondary {
    margin-left: 25px;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-body.of-primary {
        background: transparent linear-gradient(180deg, #e9e9e9 0%, #f8f8f8 100%) 0% 0% no-repeat padding-box;
        color: #fff;
    }
}

.lp-jumbotron-body.of-primary .lp-jumbotron-conversionGroup {
    justify-content: flex-start;
}

.lp-jumbotron-conversionGroup {
    display: flex;
    justify-content: flex-end;
    height: 110px;
    padding: 25px 56px;
}

[data-script-enabled="true"] .lp-jumbotron-conversionGroup {
    height: 130px;
}

@media only screen and (max-width: 1365px) {
    [data-script-enabled="true"] .lp-jumbotron-conversionGroup {
        height: auto;
    }
}

@media only screen and (max-width: 1919px) {
    .lp-jumbotron-conversionGroup {
        padding: 15px calc((80 * 100vw) / 1920);
    }
}

.lp-jumbotron-conversionGroup > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-conversionGroup {
        flex-direction: column;
        height: auto;
        margin-top: auto;
        padding: 0;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-jumbotron-conversionGroup {
        padding: 15px calc((40 * 100vh) / 655);
    }
}

.lp-jumbotron-series {
    max-width: 410px;
    margin-right: 40px;
}

@media only screen and (max-width: 1919px) {
    .lp-jumbotron-series {
        margin-right: calc((40 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-series {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto calc((24 * 100vw) / 1365);
        color: #333;
        text-align: center;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-jumbotron-series {
        max-width: 300px;
    }
}

.lp-jumbotron-series > b {
    display: block;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron .lp-headingLevel2 {
        text-align: center;
    }
}

.lp-section {
    -webkit-backface-visibility: hidden;
    display: flex;
    flex: 1;
    width: 100%;
    overflow: hidden;
    backface-visibility: hidden;
    background: #fff;
}

@media only screen and (max-width: 1365px) {
    .lp-section {
        flex: none;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-section {
        flex: none;
    }
}

.lp-section.of-secondary {
    background: transparent linear-gradient(112deg, #f5f5f5 0%, #cecece 100%) 0% 0% no-repeat padding-box;
}

[data-script-enabled="true"] .lp-section.of-secondary {
    display: none;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-bottom: 80px;
    opacity: 0;
}

[data-script-enabled="true"] .lp-section.of-secondary:not(.is-active) {
    left: -100%;
}

[data-script-enabled="true"] .lp-section.of-secondary.is-active.is-slide {
    animation: 0.4s linear 0.2s slideLeft both;
}

[data-script-enabled="true"] .lp-section.of-secondary.is-slide:not(.is-active) {
    left: 0;
    animation: 0.6s linear 0.2s slideReturnLeft both;
}

@media only screen and (max-width: 1365px) {
    [data-script-enabled="true"] .lp-section.of-secondary {
        display: block;
        z-index: 0;
        position: static;
        padding-bottom: 0;
        background: transparent linear-gradient(0deg, #f5f5f5 0%, #cecece 100%) 0% 0% no-repeat padding-box;
    }
    [data-script-enabled="true"] .lp-section.of-secondary:not(.is-active) {
        left: 0;
        opacity: 1;
    }
}

.lp-section.of-tertiary {
    background: transparent linear-gradient(68deg, #e9e9e9 0%, #f8f8f8 100%) 0% 0% no-repeat padding-box;
    color: #333;
}

[data-script-enabled="true"] .lp-section.of-tertiary {
    display: none;
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding-bottom: 80px;
}

[data-script-enabled="true"] .lp-section.of-tertiary:not(.is-active) {
    right: -100%;
}

[data-script-enabled="true"] .lp-section.of-tertiary.is-active.is-slide {
    animation: 0.4s linear 0.2s slideRight both;
}

[data-script-enabled="true"] .lp-section.of-tertiary.is-slide:not(.is-active) {
    right: 0;
    animation: 0.6s linear 0.2s slideReturnRight both;
    opacity: 1;
}

@media only screen and (max-width: 1365px) {
    [data-script-enabled="true"] .lp-section.of-tertiary {
        display: block;
        z-index: 0;
        position: static;
        padding-bottom: 0;
        background: transparent linear-gradient(180deg, #e9e9e9 0%, #f8f8f8 100%) 0% 0% no-repeat padding-box;
    }
    [data-script-enabled="true"] [data-script-enabled="true"] .lp-section.of-tertiary:not(.is-active) {
        right: 0;
        opacity: 1;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-section.of-tertiary .lp-layout-conversionGrid::before {
        border-top: 1px solid #b2b2b2;
    }
}

[data-script-enabled="true"] .lp-section.is-show {
    display: flex;
    z-index: 1;
    animation: fadeIn 0.6s linear 0.3s both;
}

[data-script-enabled="true"] .lp-section.is-hide {
    animation: fadeOut 0.6s linear both;
}

[data-script-enabled="true"] .lp-section.is-active {
    z-index: 2;
}

.lp-section-content {
    display: flex;
    flex: none;
    flex-direction: column;
    width: 100%;
    max-width: calc(1920px + 40px);
    margin: 0 auto;
    padding: 45px 80px;
}

.lp-section-content > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1919px) {
    .lp-section-content {
        padding: calc((45 * 100vw) / 1920) calc((80 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-section-content {
        padding: 40px calc((110 * 100vw) / 1365);
    }
}

@media only screen and (max-width: 767px) {
    .lp-section-content {
        padding: 32px 20px;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-section-content {
        padding: calc((32 * 100vh) / 655) calc((110 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-section-content {
        padding: 45px 80px;
    }
}

.lp-section.of-primary .lp-section-content {
    flex: 1;
    max-width: none;
    margin: 0 -20px;
    padding: 0 20px;
}

@media only screen and (max-width: 1365px) {
    .lp-section.of-primary .lp-section-content {
        padding: 8px 20px 24px;
    }
}

@media only screen and (max-width: 767px) {
    .lp-section.of-primary .lp-section-content {
        padding-bottom: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideLeft {
    0% {
        z-index: 2;
        left: -100%;
        opacity: 1;
    }
    100% {
        z-index: 2;
        left: 0;
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        z-index: 2;
        left: 100%;
        opacity: 1;
    }
    100% {
        z-index: 2;
        left: 0;
        opacity: 1;
    }
}

@keyframes slideReturnLeft {
    0% {
        z-index: 1;
        left: 0;
        opacity: 1;
    }
    100% {
        z-index: 1;
        left: -100%;
        opacity: 1;
    }
}

@keyframes slideReturnRight {
    0% {
        z-index: 1;
        right: 0;
        opacity: 1;
    }
    100% {
        z-index: 1;
        right: -100%;
        opacity: 1;
    }
}

.lp-layout-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -8px 0 8px -24px;
}

@media only screen and (max-width: 1919px) {
    .lp-layout-grid {
        margin: calc((-8 * 100vw) / 1920) 0 calc((8 * 100vw) / 1920) calc((-24 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-layout-grid {
        margin: -16px 0 22px calc((-24 * 100vw) / 1366);
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid {
        margin: -24px 0 46px 0;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-layout-grid {
        margin: calc((-24 * 100vh) / 655) 0 calc((46 * 100vh) / 655) calc((-24 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-layout-grid {
        margin: -8px 0 8px -24px;
    }
}

.lp-layout-grid-column {
    width: 100%;
    margin-top: 8px;
    padding-left: 24px;
}

@media only screen and (max-width: 1919px) {
    .lp-layout-grid-column {
        margin-top: calc((8 * 100vw) / 1920);
        padding-left: calc((24 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-layout-grid-column {
        margin-top: 16px;
        padding-left: calc((24 * 100vw) / 1366);
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column {
        margin-top: 24px;
        padding-left: 0;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-layout-grid-column {
        margin-top: calc((20 * 100vh) / 655);
        padding-left: calc((20 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-layout-grid-column {
        margin-top: 8px;
        padding-left: 24px;
    }
}

.lp-layout-grid-column.of-column-1 {
    width: 8.33333%;
}

.lp-layout-grid-column.of-column-2 {
    width: 16.66667%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-2 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-3 {
    width: 25%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-3 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-4 {
    width: 33.33333%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-4 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-5 {
    width: 41.66667%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-5 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-6 {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-6 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-7 {
    width: 58.33333%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-7 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-8 {
    width: 66.66667%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-8 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-9 {
    width: 75%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-9 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-10 {
    width: 83.33333%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-10 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-11 {
    width: 91.66667%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-11 {
        width: 100%;
    }
}

.lp-layout-grid-column.of-column-12 {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .lp-layout-grid-column.of-column-12 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 -16px;
}

.lp-layout-productDetailGrid > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid {
        flex: none;
        margin: 0 0 22px 0;
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-productDetailGrid {
        flex-direction: column;
    }
}

.lp-layout-productDetailGrid-column {
    width: 100%;
    padding-left: 16px;
}

.lp-layout-productDetailGrid-column > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1919px) {
    .lp-layout-productDetailGrid-column {
        padding-left: calc((16 * 100vw) / 1920);
    }
}

.lp-layout-productDetailGrid-column.of-column-1 {
    width: 8.33333%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-1 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-2 {
    width: 16.66667%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-2 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-3 {
    width: 25%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-3 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-4 {
    width: 33.33333%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-4 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-5 {
    width: 41.66667%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-5 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-6 {
    width: 50%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-6 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-7 {
    width: 58.33333%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-7 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-8 {
    width: 66.66667%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-8 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-9 {
    width: 75%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-9 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-10 {
    width: 83.33333%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-10 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-11 {
    width: 91.66667%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-11 {
        width: 100%;
    }
}

.lp-layout-productDetailGrid-column.of-column-12 {
    width: 100%;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column.of-column-12 {
        width: 100%;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid-column {
        margin-bottom: 24px;
        padding-left: 0;
    }
}

.lp-layout-productDetailGrid.of-row-reverse {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-productDetailGrid.lp-smallScreen-column {
        flex-direction: column;
    }
}

.lp-layout-conversionGrid > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-conversionGrid {
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: -24px;
        padding-top: 24px;
    }
    .lp-layout-conversionGrid::before {
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% - 24px);
        height: 1px;
        border-top: 1px solid #b2b2b2;
        content: "";
    }
}

@media only screen and (max-width: 1365px) and (max-width: 767px) {
    .lp-layout-conversionGrid::before {
        width: 100%;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-layout-conversionGrid.lp-smallScreen-align-center {
        align-items: center;
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-conversionGrid {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}

.lp-layout-conversionGrid-column {
    margin-bottom: 24px;
}

.lp-layout-conversionGrid-column > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-conversionGrid-column {
        margin-bottom: 24px;
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-conversionGrid-column {
        margin-bottom: 24px;
        padding-right: 0;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-layout-conversionGrid.of-asymmetry .lp-layout-conversionGrid-column.of-column-small {
        width: 100%;
        max-width: 270px;
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-conversionGrid.of-asymmetry .lp-layout-conversionGrid-column.of-column-small {
        max-width: 360px;
        margin-bottom: 24px;
        padding-right: 0;
    }
}

.lp-media {
    display: flex;
    margin-bottom: 32px;
}

@media only screen and (max-width: 1365px) {
    .lp-media {
        margin-bottom: calc((32 * 100vh) / 1365);
    }
}

@media only screen and (max-width: 767px) {
    .lp-media {
        max-width: 520px;
        margin: 0 auto 24px;
        margin-bottom: 24px;
    }
}

.lp-media-body {
    flex: 1;
}

@media only screen and (max-width: 767px) {
    .lp-media-body {
        flex: none;
        text-align: center;
    }
}

.lp-media-body > *:last-child {
    margin-bottom: 0;
}

.lp-media-body .lp-headingLevel2 {
    margin-bottom: 8px;
    line-height: 1.4;
}

@media only screen and (max-width: 1365px) {
    .lp-media-body .lp-headingLevel2 {
        text-align: left;
    }
}

@media only screen and (max-width: 767px) {
    .lp-media-body .lp-headingLevel2 {
        margin-bottom: 16px;
        text-align: center;
    }
}

.lp-media-body .lp-utility-textAlign-center {
    text-align: center;
}

.lp-media-icon {
    width: 90px;
    margin-right: 24px;
}

@media only screen and (max-width: 1919px) {
    .lp-media-icon {
        margin-right: calc((24 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 767px) {
    .lp-media-icon {
        margin: 0 auto 16px;
    }
}

.lp-media.of-row-reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .lp-media.lp-extraSmallScreen-column {
        flex-direction: column-reverse;
    }
}

.lp-mediaProduct {
    -webkit-backface-visibility: hidden;
    display: flex;
    position: relative;
    flex: 1;
    justify-content: flex-end;
    backface-visibility: hidden;
    background: transparent linear-gradient(59deg, #f5f5f5 0%, #cecece 100%) 0% 0% no-repeat padding-box;
    transition: margin 0.3s ease-out;
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct {
        flex: none;
        width: 100%;
        min-height: 0%;
        margin-bottom: calc((16 * 100vw) / 1365);
        background: transparent;
    }
}

@media only screen and (max-width: 767px) {
    .lp-mediaProduct {
        align-items: flex-start;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct {
        flex: 1 0 auto;
    }
}

.lp-mediaProduct-inner {
    display: flex;
    position: relative;
    flex: 1 0 auto;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 960px;
    padding: 72px 56px 72px 168px;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct-inner {
        padding: calc((40 * 100vw) / 1920) calc((56 * 100vw) / 1920) calc((40 * 100vw) / 1920) calc((168 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-inner {
        flex: none;
        flex-direction: column-reverse;
        width: 100%;
        margin-bottom: 16px;
        padding: 0;
        background: #ebebeb;
    }
}

@media only screen and (max-width: 767px) {
    .lp-mediaProduct-inner {
        align-items: flex-start;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct-inner {
        max-width: 900px;
        padding: 10px calc((56 * 100vh) / 840) 10px calc((168 * 100vh) / 840);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct-inner {
        flex: none;
        max-width: 730px;
        padding: 40px 40px 40px 32px;
    }
}

.lp-mediaProduct-inner::before {
    position: absolute;
    top: 0;
    right: -14px;
    width: 100%;
    height: 100%;
    background: url("../../../../../img/ss/products/measure-sys/two-choise-for-measurement-systems/instant_measurement_img_01_bg.png") no-repeat left center;
    content: "";
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct-inner::before {
        right: calc((696 * 100vw) / 1920);
        width: calc((240 * 100vw) / 1920);
        background-size: contain;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-inner::before {
        display: none;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct-inner::before {
        right: calc((560 * 100vh) / 840);
        left: calc((14 * 100vh) / 840);
        width: calc((170 * 100vh) / 840);
        background-size: contain;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct-inner::before {
        width: calc((140 * 100vh) / 840);
        min-width: 140px;
    }
}

.lp-mediaProduct-body {
    display: flex;
    z-index: 1;
    flex-direction: column;
    width: 340px;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct-body {
        width: calc((340 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-body {
        width: 100%;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct-body {
        width: calc((340 * 100vh) / 840);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct-body {
        display: inline;
        width: 300px;
    }
}

.lp-mediaProduct-body > *:last-child {
    margin-bottom: 0;
}

.lp-mediaProduct-image {
    z-index: 0;
    width: 380px;
    margin: 0;
    margin-right: 8px;
    transition: transform 0.3s ease-out;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct-image {
        width: calc((380 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-image {
        width: 200px;
        margin: 0 auto 7px;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct-image {
        width: calc((330 * 100vh) / 840);
        margin: 0;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct-image {
        width: 260px;
        margin: 0;
    }
}

.lp-mediaProduct.of-secondary {
    flex-direction: row-reverse;
    background: transparent linear-gradient(121deg, #e9e9e9 0%, #f8f8f8 100%) 0% 0% no-repeat padding-box;
    color: #333;
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-secondary {
        flex-direction: column-reverse;
        background: transparent;
    }
}

.lp-mediaProduct.of-secondary .lp-mediaProduct-body {
    display: flex;
    z-index: 1;
    flex-direction: column;
    width: 320px;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-body {
        width: calc((320 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-body {
        width: 100%;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-body {
        width: calc((320 * 100vh) / 840);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-body {
        display: inline;
        width: 280px;
    }
}

.lp-mediaProduct.of-secondary .lp-mediaProduct-inner {
    position: relative;
    justify-content: flex-start;
    padding: 75px 188px 75px 56px;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner {
        padding: calc((40 * 100vw) / 1920) calc((188 * 100vw) / 1920) calc((40 * 100vw) / 1920) calc((56 * 100vw) / 1920);
        background-size: contain;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner {
        flex-direction: column;
        padding: 0;
        background: transparent;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner {
        padding: 10px calc((178 * 100vh) / 840) 10px calc((56 * 100vh) / 840);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner {
        padding: 40px 32px 40px 40px;
    }
}

.lp-mediaProduct.of-secondary .lp-mediaProduct-inner::before {
    position: absolute;
    top: 0;
    right: 14px;
    left: auto;
    width: 100%;
    height: 100%;
    background: url("../../../../../img/ss/products/measure-sys/two-choise-for-measurement-systems/instant_measurement_img_03_bg.png") no-repeat right center;
    content: "";
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner::before {
        left: calc((724 * 100vw) / 1920);
        width: calc((195 * 100vw) / 1920);
        background-size: contain;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner::before {
        display: none;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner::before {
        right: calc((14 * 100vh) / 840);
        left: auto;
        width: calc((135 * 100vh) / 840);
        background-size: contain;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner::before {
        width: calc((105 * 100vh) / 840);
        min-width: 105px;
    }
}

.lp-mediaProduct.of-secondary .lp-mediaProduct-inner.of-row-reverse {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner.of-row-reverse {
        flex-direction: column-reverse;
    }
}

.lp-mediaProduct.of-secondary .lp-mediaProduct-inner.of-row-reverse .lp-mediaProduct-body {
    width: 410px;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner.of-row-reverse .lp-mediaProduct-body {
        width: calc((410 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner.of-row-reverse .lp-mediaProduct-body {
        width: 100%;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner.of-row-reverse .lp-mediaProduct-body {
        width: calc((270 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-inner.of-row-reverse .lp-mediaProduct-body {
        display: inline;
        width: 410px;
    }
}

.lp-mediaProduct.of-secondary .lp-mediaProduct-image {
    width: 380px;
    margin: 0;
    margin-left: 8px;
    transition: transform 0.3s ease-out;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-image {
        width: calc((380 * 100vw) / 1920);
        margin: 0 calc((30 * 100vw) / 1920) 0 0;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-image {
        width: 200px;
        margin: 0 auto 7px;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-image {
        width: calc((330 * 100vh) / 840);
        margin: 0;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct.of-secondary .lp-mediaProduct-image {
        width: 260px;
        margin: 0;
    }
}

.lp-mediaProduct-textGroup {
    margin-bottom: 24px;
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-textGroup {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        text-align: center;
    }
}

.lp-mediaProduct-textGroup > *:last-child {
    margin-bottom: 0;
}

.lp-mediaProduct .lp-link::before {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.lp-mediaFeature {
    display: flex;
    flex-direction: column-reverse;
}

@media only screen and (max-width: 767px) {
    .lp-mediaFeature {
        max-width: 360px;
        margin: 0 auto;
    }
}

.lp-mediaFeature-body {
    font-size: 1.8rem;
    line-height: 1.3;
}

@media only screen and (max-width: 1365px) {
    .lp-mediaFeature-body {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .lp-mediaFeature-body {
        font-size: 1.8rem;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaFeature-body {
        font-size: calc((14 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaFeature-body {
        font-size: 1.8rem;
    }
}

.lp-mediaFeature-body > *:last-child {
    margin-bottom: 0;
}

.lp-mediaFeature-image {
    min-height: 0%;
    margin-bottom: 12px;
}

.lp-mediaFeature-image > img {
    border: 1px solid #fff;
}

.lp-mediaFeature-title {
    margin-bottom: 8px;
    font-size: 1.5rem;
    line-height: 1.4;
}

.lp-figure {
    width: 100%;
    margin-bottom: 22px;
}

.lp-figure-caption {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 24px;
    line-height: 1.2;
    text-align: center;
}

@media only screen and (max-width: 1365px) {
    .lp-figure-caption {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .lp-figure-caption {
        text-align: center;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-figure-caption {
        margin: 0 auto 12px;
    }
}

.lp-figure-caption > b {
    display: inline-block;
}

.lp-figure-image {
    width: 505px;
    margin: 0 auto 16px;
}

@media only screen and (max-width: 1919px) {
    .lp-figure-image {
        width: calc((505 * 100vw) / 1920);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-figure-image {
        width: calc((300 * 100vh) / 655);
        margin: 0 auto 8px;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-figure-image {
        width: 280px;
    }
}

.lp-headingLevel1 {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    font-size: 4.4rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

@media only screen and (max-width: 1919px) {
    .lp-headingLevel1 {
        margin-bottom: calc((16 * 100vw) / 1920);
        font-size: calc((44 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-headingLevel1 {
        margin-bottom: 8px;
        font-size: calc(2.7rem + ((1vw - 0.768rem) * (2.17755)));
    }
}

@media only screen and (max-width: 767px) {
    .lp-headingLevel1 {
        margin-bottom: 16px;
        font-size: 2.7rem;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-headingLevel1 {
        font-size: calc((30 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-headingLevel1 {
        font-size: 4.4rem;
    }
}

.lp-headingLevel1-subtitle {
    display: block;
    font-size: 2.4rem;
    font-weight: normal;
}

@media only screen and (max-width: 1365px) {
    .lp-headingLevel1-subtitle {
        font-size: calc((24 * 100vw) / 1365);
    }
}

@media only screen and (max-width: 767px) {
    .lp-headingLevel1-subtitle {
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-headingLevel1-subtitle {
        font-size: calc((16 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-headingLevel1-subtitle {
        font-size: 2.4rem;
    }
}

.lp-headingLevel2 {
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.2;
}

@media only screen and (max-width: 1919px) {
    .lp-headingLevel2 {
        margin-bottom: calc((16 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-headingLevel2 {
        margin-bottom: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 767px) {
    .lp-headingLevel2 {
        margin-bottom: 8px;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-headingLevel2 {
        font-size: calc((16 * 100vh) / 655);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-headingLevel2 {
        font-size: 2rem;
    }
}

.lp-textLead {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.4;
}

@media only screen and (max-width: 1919px) {
    .lp-textLead {
        font-size: calc((40 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-textLead {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 767px) {
    .lp-textLead {
        font-size: 2.4rem;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-textLead {
        font-size: 4rem;
    }
}

.lp-navigationSeries {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1240px;
    margin: 20px auto;
    padding: 4px 10px;
    border: 2px solid #e5e5e5;
    color: #999;
}

div#MainContent .lp-navigationSeries {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media only screen and (max-width: 1279px) {
    .lp-navigationSeries {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media only screen and (max-width: 969px) {
    .lp-navigationSeries {
        flex-direction: column;
        align-items: center;
    }
}

.lp-navigationSeries-title {
    max-width: 600px;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.3;
}

@media only screen and (max-width: 969px) {
    .lp-navigationSeries-title {
        width: 100%;
        max-width: none;
        margin-bottom: 3px;
        text-align: center;
    }
}

.lp-navigationSeries-title + .lp-navigationSeries-linkList {
    margin-left: 10px;
}

@media only screen and (max-width: 969px) {
    .lp-navigationSeries-title + .lp-navigationSeries-linkList {
        margin-left: -10px;
    }
}

div#MainContent .lp-navigationSeries-title {
    margin-bottom: 0;
    color: #999;
    font-size: 11px;
    line-height: 1.3;
    text-transform: none;
}

div#MainContent .lp-navigationSeries-title + .lp-navigationSeries-linkList {
    margin-left: 10px;
}

@media only screen and (max-width: 969px) {
    .lp-navigationSeries-seriesNameText,
    .lp-navigationSeries-seriesText {
        display: block;
    }
}

.lp-navigationSeries-linkList {
    display: flex;
    flex-wrap: wrap;
    margin: -3px 0 0 -10px;
    color: #999;
}

div#MainContent .lp-navigationSeries-linkList {
    margin: -3px 0 0 -10px;
}

@media only screen and (max-width: 969px) {
    .lp-navigationSeries-linkList {
        justify-content: center;
        width: 100%;
    }
}

.lp-navigationSeries-linkList > li {
    display: flex;
    position: relative;
    margin-top: 3px;
    margin-left: 10px;
    background: none;
    font-size: 1.1rem;
    line-height: 1.3;
}

div#MainContent .lp-navigationSeries-linkList > li {
    margin: 3px 0 0 10px;
    padding: 0;
    background: none;
    font-size: 11px;
}

.lp-navigationSeries-linkList > li > a {
    display: block;
    position: relative;
    width: 100%;
    padding-left: 9px;
    color: #999;
    line-height: 1.3;
    text-decoration: none;
}

.lp-navigationSeries-linkList > li > a::before {
    display: block;
    position: absolute;
    top: 4px;
    left: -2px;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    content: "";
}

div#MainContent .lp-navigationSeries-linkList > li > a:link {
    color: #999;
}

div#MainContent .lp-navigationSeries-linkList > li > a::before {
    top: 0.3em;
}

.lp-navigationSeries-linkList > li > a:hover,
.lp-navigationSeries-linkList > li > a:focus {
    text-decoration: underline;
}

.lp-link {
    display: inline-block;
}

.lp-link-text {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: underline;
}

.lp-link-text::before {
    display: block;
    position: absolute;
    top: 40%;
    left: -3px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translateY(-40%);
    border-top: 2px solid #14852b;
    border-right: 2px solid #14852b;
    content: "";
}

.lp-link-text.of-primary::before {
    border-top-color: #4a579a;
    border-right-color: #4a579a;
}

.lp-link:hover .lp-link-text {
    color: #fff;
}

.lp-link:hover .lp-link-text::before {
    border-top-color: #fff;
    border-right-color: #fff;
}

.lp-link-outer {
    margin-bottom: 20px;
}

.lp-buttonTelephone {
    display: none;
    margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
    .lp-buttonTelephone {
        display: block;
    }
}

.lp-buttonTelephone > a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    color: inherit;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    cursor: inherit;
}

.lp-buttonTelephone > a::before {
    display: block;
    width: 29px;
    height: 29px;
    background: url("../../../../../img/core/icon_tel_l_trans.png") no-repeat;
    background-size: cover;
    content: "";
}

.lp-listButton {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: -24px 0 16px -24px;
}

@media only screen and (max-width: 767px) {
    .lp-listButton {
        flex-direction: column;
    }
}

.lp-listButton > li {
    margin-top: 24px;
    padding-left: 24px;
}

@media only screen and (max-width: 1365px) {
    .lp-smallScreen-hide {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .lp-extraSmallScreen-column {
        flex-direction: column;
    }
}

.lp-utility-textAlign-center {
    text-align: center;
}

.lp-utility-text-newLine {
    display: block;
}

@media only screen and (min-width: 768px) {
    .lp-largeScreen-text-newLine {
        display: block;
    }
}

@media only screen and (min-width: 1366px) {
    .lp-extraLargeScreen-newLine {
        display: block;
    }
}

@media only screen and (min-width: 1366px) {
    .lp-extraLargeScreen-hide {
        display: none;
    }
}

/*
common_header_parts
*/
.lp-layout-header {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .lp-layout-header {
        height: auto;
        margin-bottom: 16px;
    }
}

.lp-layout-header > *:last-child {
    margin-bottom: 0;
}

.lp-layout-header-content {
    display: flex;
    max-width: calc(1760px + 160px);
    margin: 0 auto;
    padding: calc(24vh * 100 / 850) 80px;
}

@media only screen and (min-width: 1366px) and (max-height: 850px) {
    .lp-layout-header-content {
        padding: calc(26vh * 100 / 850) 80px;
    }
}

@media screen and (max-width: 1024px) {
    .lp-layout-header-content {
        justify-content: center;
        min-height: auto;
        padding: 24px 20px;
    }
}

.lp-layout-header-content > *:last-child {
    margin-bottom: 0;
    margin-left: 32px;
}

@media screen and (max-width: 1024px) {
    .lp-layout-header-content > *:last-child {
        margin-left: 0;
    }
}

.lp-layout-header-body > *:last-child {
    margin-bottom: 0;
}

.lp-layout-header-logo {
    min-width: 121px;
    margin: 0;
    margin-right: auto;
    line-height: 1;
}

@media screen and (max-width: 1024px) {
    .lp-layout-header-logo {
        width: 121px;
        margin-right: 0;
        padding-right: 0;
    }
}

.lp-layout-header-logo img {
    width: 100%;
}

/*
common_footer_parts
*/
.lp-layout-footer {
    position: relative;
    color: #747474;
}

.lp-layout-footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(1760px + 80px);
    margin: 0 auto;
    padding: 8px 40px;
}

@media screen and (max-width: 768px) {
    .lp-layout-footer-content {
        flex-direction: column;
        justify-content: center;
        max-width: none;
        padding: 10px 20px 20px;
    }
}

.lp-layout-footer-content > *:last-child {
    margin-bottom: 0;
}

.lp-layout-footer-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -8px 0 0 0;
    font-size: 13px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .lp-layout-footer-list {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .lp-layout-footer-list {
        width: 100%;
        margin: -8px 0 0 0;
    }
}

.lp-layout-footer-list > li {
    position: relative;
    margin: 8px 33px 0 0;
}

.lp-layout-footer-list > li::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -17px;
    width: 1px;
    height: 100%;
    transform: translateY(-50%);
    background-color: #747474;
    content: "";
}

.lp-layout-footer-list > li > a {
    color: #747474;
    text-decoration: none;
}

.lp-layout-footer-list > li > a:hover,
.lp-layout-footer-list > li > a:active,
.lp-layout-footer-list > li > a:focus {
    color: #747474;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .lp-layout-footer-list > li:last-child {
        margin: 8px 0 0 0;
    }
    .lp-layout-footer-list > li:last-child::after {
        display: none;
    }
}

.lp-layout-footer-copyright {
    margin-bottom: 0;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .lp-layout-footer-copyright {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .lp-layout-footer-copyright {
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }
}

/*
textPhone
*/
.lp-textPhone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px 32px;
}

.lp-textPhone > *:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .lp-textPhone {
        flex-direction: column;
    }
}

.lp-textPhone-header {
    margin-right: 8px;
    font-family: source-han-serif-japanese, serif;
    font-size: 1.6rem;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .lp-textPhone-header {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 1.4rem;
    }
}

.lp-textPhone-icon {
    width: 34px;
    min-width: 34px;
    height: 20px;
    min-height: 20px;
    margin: 3px 8px 0 0;
}

.lp-textPhone-icon .of-iconColor-primary {
    fill: #838070;
}

.lp-textPhoneLink > *:last-child {
    margin-bottom: 0;
}

.lp-textPhoneLink-numberGroup {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    cursor: text;
}

.lp-textPhoneLink-icon {
    display: flex;
    width: 40px;
    margin: 2px 8px 0 0;
}

.lp-textPhoneLink-notes {
    font-size: 11px;
}

body {
    font-family: source-han-sans-japanese, "HiraKakuPro-W3", Meiryo, Osaka, "MS PGothic", sans-serif;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 1.5rem;
    }
}

.lp-layout-main > *:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .lp-layout-header {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-header-logo {
        width: 90px;
        min-width: 90px;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-layout-header-content {
        padding: 24px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .lp-layout-header-content {
        padding: 16px 12px;
    }
}

.lp-layout-header .lp-textPhoneLink {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1365px) {
    .lp-layout-header .lp-textPhoneLink {
        display: none;
    }
}

.lp-layout-header .lp-textPhoneLink-notes {
    margin-right: 16px;
}

.lp-headingLevel1-group {
    margin-bottom: 24px;
    padding: 0 20px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .lp-headingLevel1-group {
        margin-bottom: 16px;
    }
}

.lp-mediaFeature-text {
    font-size: 1.5rem;
    line-height: 1.4;
}

.lp-label {
    display: inline-block;
    margin-bottom: 24px;
    padding: 5px 16px;
    background-color: #14852b;
    color: #fff;
    font-size: 24px;
    font-weight: normal;
}

@media only screen and (max-width: 1919px) {
    .lp-label {
        margin-bottom: calc((24 * 100vw) / 1920);
        font-size: calc((24 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-label {
        font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.57416)));
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-label {
        margin-bottom: calc((16 * 100vw) / 1920);
        font-size: calc(1.8rem + ((1vw - 0.32rem) * (0.19139)));
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-label {
        margin-bottom: 16px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .lp-label {
        margin-bottom: 12px;
    }
}

.lp-label.of-primary {
    background-color: #4a579a;
}

.lp-textRecommend {
    display: block;
    position: relative;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.38;
    text-align: left;
}

@media only screen and (max-width: 1919px) {
    .lp-textRecommend {
        margin-bottom: calc((24 * 100vw) / 1920);
        font-size: calc((18 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-textRecommend {
        margin-bottom: 8px;
        color: #333;
        font-size: calc(1.5rem + ((1vw - 0.32rem) * (0.19139)));
        text-align: center;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-textRecommend {
        margin-bottom: calc((16 * 100vw) / 1920);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-textRecommend {
        margin-bottom: 16px;
    }
}

.lp-jumbotron-body.is-hover .lp-mediaProduct {
    background: transparent linear-gradient(301deg, #7e85b1 0%, #242b56 100%) 0% 0% no-repeat padding-box;
}

.lp-jumbotron-body.is-hover .lp-mediaProduct .lp-textRecommend {
    color: #fff;
}

.lp-jumbotron-body.is-hover .lp-mediaProduct .lp-textRecommend::before {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.lp-jumbotron-body.is-hover .lp-mediaProduct .lp-label {
    background-color: #e9ffe6;
    color: #14852b;
}

.lp-jumbotron-body.is-hover .lp-mediaProduct .lp-label.of-primary {
    background-color: #e1e6ff;
    color: #4a579a;
}

.lp-jumbotron-body.is-hover .lp-mediaProduct-inner::before {
    background-image: url("../../../../../img/ss/products/measure-sys/two-choise-for-measurement-systems/instant_measurement_img_01_bg_hover.png");
    content: "";
}

.lp-jumbotron-body.is-hover .lp-mediaProduct-title, .lp-jumbotron-body.is-hover .lp-mediaProduct-subtitle {
    color: #fff;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-body.is-hover .lp-mediaProduct-title, .lp-jumbotron-body.is-hover .lp-mediaProduct-subtitle {
        color: #333;
    }
}

.lp-jumbotron-body.is-hover .lp-mediaProduct.of-row-reverse {
    background: transparent linear-gradient(59deg, #84b277 0%, #014d2e 100%) 0% 0% no-repeat padding-box;
}

.lp-jumbotron-body.is-hover .lp-mediaProduct .lp-buttonTransition {
    background-color: #fff;
    color: #14852b;
}

.lp-jumbotron-body.is-hover .lp-mediaProduct .lp-buttonTransition.of-primary {
    color: #4a579a;
}

.lp-jumbotron-body.is-hover .lp-mediaProduct.of-secondary .lp-mediaProduct-inner::before {
    background-image: url("../../../../../img/ss/products/measure-sys/two-choise-for-measurement-systems/instant_measurement_img_03_bg_hover.png");
    content: "";
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-series > b {
        display: inline-block;
    }
}

@media only screen and (max-width: 767px) {
    .lp-jumbotron-series {
        margin-bottom: 24px;
        font-size: 1.6rem;
    }
}

.lp-mediaProduct > *:last-child {
    margin-bottom: 0;
}

.lp-mediaProduct.of-row-reverse .lp-mediaProduct-inner {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct.of-row-reverse .lp-mediaProduct-inner {
        flex-direction: column;
        background: transparent;
    }
}

.lp-mediaProduct-title {
    display: block;
    margin-bottom: 16px;
    font-size: 3.8rem;
    font-weight: bold;
    line-height: 1.4;
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct-title {
        font-size: calc((33 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-title {
        color: #333;
        font-size: 2.7rem;
    }
}

@media only screen and (max-width: 767px) {
    .lp-mediaProduct-title {
        font-size: 2.4rem;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct-title {
        font-size: 3.2rem;
    }
}

.lp-mediaProduct-subtitle {
    display: block;
    margin-bottom: 16px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-subtitle {
        color: #333;
    }
}

@media only screen and (max-width: 1919px) {
    .lp-mediaProduct-subtitle {
        margin-bottom: calc((16 * 100vw) / 1920);
        font-size: calc((24 * 100vw) / 1920);
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-subtitle {
        margin-bottom: 16px;
        font-size: 2.1rem;
    }
}

@media only screen and (max-width: 767px) {
    .lp-mediaProduct-subtitle {
        margin-bottom: 8px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-mediaProduct-textGroup {
        margin-bottom: calc((24 * 100vw) / 1920);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 921px) {
    .lp-mediaProduct-textGroup {
        margin-bottom: calc((16 * 100vw) / 1920);
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
    .lp-mediaProduct-textGroup {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .lp-mediaProduct-textGroup {
        margin-bottom: 8px;
    }
}

.lp-figure > *:last-child {
    margin-bottom: 0;
}

.lp-navigation-list > li:first-child .lp-navigation-text, .lp-navigation-list > li:last-child .lp-navigation-text {
    position: relative;
}

.lp-navigation-list > li:first-child .lp-navigation-text::before, .lp-navigation-list > li:last-child .lp-navigation-text::before {
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
}

.lp-navigation-list > li:first-child .lp-navigation-text {
    padding-left: 24px;
}

.lp-navigation-list > li:first-child .lp-navigation-text::before {
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
}

.lp-navigation-list > li:last-child .lp-navigation-text {
    padding-right: 24px;
}

.lp-navigation-list > li:last-child .lp-navigation-text::before {
    right: 0;
    transform: translateY(-50%) rotate(45deg);
}

.lp-utility-line-break {
    display: block;
}

@media only screen and (max-width: 1365px) {
    .lp-largeScreen-line-break {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .lp-largeScreen-line-break {
        display: inline;
    }
}

@media only screen and (max-width: 767px) {
    .lp-smallScreen-line-break {
        display: block;
    }
}

.lp-smallScreen-show {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    .lp-smallScreen-show {
        display: flex !important;
    }
}

.lp-largeScreen-show {
    display: none;
}

@media only screen and (max-width: 1365px) {
    .lp-largeScreen-show {
        display: flex !important;
    }
}

.lp-largeScreen-hide {
    display: none;
}

@media only screen and (max-width: 1365px) {
    .lp-largeScreen-hide {
        display: block;
    }
}
