@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;
}

/*	base
-----------------------------------------*/
.lp-textPhone {
    margin-bottom: 24px;
    color: #333;
}

.lp-textPhone > *:last-child {
    margin-bottom: 0;
}

.lp-textPhone-number {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
}

.lp-textPhone-numberGroup {
    display: flex;
    align-items: flex-start;
    margin-top: 0 !important;
    margin-bottom: 8px;
}

.lp-textPhone-note {
    margin-top: 0 !important;
    margin-bottom: 8px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.lp-textPhone-icon {
    width: 36px;
    min-width: 36px;
    height: 20px;
    min-height: 20px;
    margin-top: 0.2rem;
    margin-right: 8px;
}

.lp-textPhone-icon .of-iconColor-primary {
    fill: #00a23f;
}

.lp-textPhone-icon .of-iconColor-secondary {
    fill: #fe8800;
}

.lp-textPhone-icon .of-iconColor-tertiary {
    fill: #0086b1;
}

.lp-textPhone-icon .of-iconColor-quaternary {
    fill: #838079;
}

.lp-textPhone-icon .of-iconColor-quinary {
    fill: #1e1c1c;
}

.lp-textPhone.of-center {
    text-align: center;
}

.lp-textPhone.of-center .lp-textPhone-numberGroup {
    justify-content: center;
}

.lp-textPhone-body, .lp-textPhone-body:hover {
    display: inline-block;
    text-decoration: none;
    cursor: default;
}

.lp-layout-container {
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fff;
}

.lp-layout-container > *:last-child {
    margin-bottom: 0;
}

.lp-layout-header {
    width: 100%;
    background-color: #fff;
}

.lp-layout-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 1480px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 25px 20px;
}

.lp-layout-header-content > *:last-child {
    margin-bottom: 0;
}

.lp-layout-header-utilityGroup {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.lp-layout-header-utilityList > li {
    list-style-type: none;
}

.lp-layout-header-utilityList > li > *:last-child {
    margin-bottom: 0;
}

.lp-layout-header-logo {
    margin-bottom: 0;
}

.lp-layout-header-logo img {
    width: 114px;
}

.lp-layout-main {
    min-width: 1480px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 24px;
}

.lp-layout-main > *:last-child {
    margin-bottom: 0;
}

.lp-layout-footer {
    width: 100%;
    border-top: 1px solid #ccc;
    background-color: #fff;
}

.lp-layout-footer-content {
    min-width: 1480px;
    max-width: calc(1432px + 286px);
    margin: 0 auto;
    padding: 16px 143px;
}

.lp-layout-footer-content > *:last-child {
    margin-bottom: 0;
}

.lp-layout-footer-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -8px 0 24px -33px;
    font-size: 1.2rem;
    text-align: center;
}

.lp-layout-footer-list > li {
    position: relative;
    margin: 8px 0 0 33px;
}

.lp-layout-footer-list > li::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: -17px;
    width: 1px;
    height: 14px;
    transform: translateY(-50%);
    background-color: #a8a8a8;
    content: "";
}

.lp-layout-footer-list > li:first-child::before {
    display: none;
}

.lp-layout-footer-list > li > a {
    color: inherit;
    text-decoration: none;
}

.lp-jumbotron-content {
    display: flex;
}

.lp-jumbotron-body {
    min-width: 730px;
    max-width: 754px;
    padding: 48px 0 70px;
}

.lp-jumbotron-body > *:last-child {
    margin-bottom: 0;
}

.lp-jumbotron-image {
    align-self: center;
    min-width: 820px;
    max-width: 890px;
    margin-left: -84px;
}

@media only screen and (max-width: 1919px) {
    .lp-jumbotron-image {
        margin-left: calc(-13.4rem + ((1vw - 1.52rem) * (12.5)));
    }
}

@media only screen and (max-width: 1520px) {
    .lp-jumbotron-image {
        margin-left: -134px;
    }
}

.lp-jumbotron-titleGroup {
    margin-bottom: 32px;
}

.lp-jumbotron-titleGroup > *:last-child {
    margin-bottom: 0;
}

.lp-jumbotron-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #273a53;
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1.5;
}

.lp-jumbotron-title {
    display: inline-block;
    margin-bottom: 30px;
    color: #273a53;
    font-size: 6rem;
    line-height: 1.5;
}

.lp-card {
    width: 100%;
    margin-bottom: 20px;
}

.lp-card > *:last-child {
    margin-bottom: 0;
}

.lp-card-header {
    padding: 12px 32px;
    background: linear-gradient(270deg, transparent, #d6e9f3 100%) 0% 0% no-repeat;
}

.lp-card-title {
    color: #273a53;
    font-size: 2.8rem;
    line-height: 1.5;
}

.lp-card-body {
    padding: 20px 32px;
    background: linear-gradient(270deg, transparent, #ebf8ff 100%) 0% 0% no-repeat;
}

.lp-card-body > *:last-child {
    margin-bottom: 0;
}

.lp-list {
    margin-bottom: 16px;
}

.lp-list > *:last-child {
    margin-bottom: 0;
}

.lp-list > li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 22px;
    font-size: 2rem;
}

.lp-list > li::before {
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 14px;
    height: 14px;
    background-image: url("../../../../../../../img/ss/products/vision/iv3/004/2073_01_bg_img_01.png");
    content: "";
}

.lp-listButton {
    display: flex;
    flex-wrap: wrap;
    margin: -24px 0 28px -24px;
}

.lp-listButton.of-justifyContent-center {
    justify-content: center;
}

.lp-listButton.of-primary {
    margin-top: -104px;
}

.lp-listButton > li {
    margin-top: 24px;
    padding-left: 24px;
}

.lp-listButton > li.of-width-full {
    width: 100%;
}

.lp-textLink > a {
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid transparent;
    color: #06c;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.lp-textLink > a::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-width: 7px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #06c;
    content: "";
}

.lp-textLink > a:hover, .lp-textLink > a:focus {
    border-bottom: 1px solid #06c;
}

.lp-utility-textAlign-center {
    text-align: center !important;
}
