@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;
}

.lp-layout-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

@media only screen and (max-width: 1365px) {
.lp-layout-container {
        display: block;
        height: auto;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
.lp-layout-container {
        display: inline;
        height: auto;
    }
}

.lp-layout-main {
    display: flex;
    position: relative;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
}

@media only screen and (max-width: 1365px) {
.lp-layout-main {
        flex: none;
    }
}

@media only screen and (min-width: 1366px) and (max-height: 840px) {
.lp-layout-main {
        display: block;
        flex: none;
    }
}

.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;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-body.of-primary {
        background: #3c436e;
        color: #fff;
    }
}

.lp-jumbotron-body.of-primary .lp-jumbotron-conversionGroup {
    justify-content: flex-start;
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-body.of-primary .lp-textRecommend {
        color: #fff;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-body.of-primary .lp-mediaProduct-title {
        color: #fff;
    }
}

@media only screen and (max-width: 1365px) {
    .lp-jumbotron-body.of-primary .lp-jumbotron-series {
        color: #fff;
    }
}

.lp-jumbotron-conversionGroup {
    display: flex;
    justify-content: flex-end;
    height: 110px;
    padding: 25px 56px;
}

.lp-jumbotron-conversionGroup {
    height: 130px;
}

@media only screen and (max-width: 1365px) {
.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;
}

.lp-section {
    display: flex;
    flex: 1;
    width: 100%;
    overflow: 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-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;
    }
}

.lp-mediaProduct {
    display: flex;
    position: relative;
    flex: 1;
    justify-content: flex-end;
    background: transparent linear-gradient(59deg, #f5f5f5 0%, #cecece 100%) 0% 0% no-repeat padding-box;
}

@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;
}

@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(301deg, #7e85b1 0%, #242b56 100%) 0% 0% no-repeat padding-box;
    color: #fff;
}

@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_hover.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;
}

@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-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-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: #e1e6ff;
    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;
    }
}


@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-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;
    }
}
