:root {
    --bg: #050607;
    --bg2: #0b0d10;
    --text: rgba(255, 255, 255, 1);
    --gray: #e2e2e2;
    --muted: rgba(255, 255, 255, .70);
    --muted2: rgba(255, 255, 255, .55);
    --line: rgba(255, 255, 255, .10);
    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .08);
    --accent: #d3a11d;
    --accent2: #ffffff;
    --radius: 4px;
    --radius2: 8px;
    --radius3: 12px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .55);
    --container: 1200px;
    --sp_margin: 16px;
}
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html {
    scroll-padding-top: 30px;
}
body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "YuGothic", "Meiryo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img, svg, video {
    max-width: 100%;
    display: block;
}
.container {
    width: min(var(--container), 100% - 32px);
    margin-inline: auto;
}
.pc-only{
    display: none;
}
.sp-only {
    display: block;
}
.design_font {
    font-family: 'MyCustomFont', sans-serif;
}
@font-face {
    font-family: 'MyCustomFont';
    src: url("../font/porsche-next.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
.bg {
    min-height: 100%;
    background: rgba(17, 17, 17, 0.8);
}
.background_video {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
.background_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    justify-content: space-between;
    width: 97%;
    margin: 0 auto;
}
.header__inner .logo {
    width: 72px;
}
.brand {
    display: grid;
    gap: 2px;
    line-height: 1.1;
}
.brand__logo {
    font-weight: 800;
    letter-spacing: .04em;
    font-size: 22px;
    color: var(--accent);
}
.brand__sub {
    font-size: 10px;
    color: var(--muted2);
    letter-spacing: .18em;
}
.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-left: 18px;
    flex: 1;
}
.nav a {
    font-size: 14px;
    padding: 8px;
}
.nav a:hover {
    color: var(--text);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.link--muted {
    color: var(--muted);
}
.link--muted:hover {
    color: var(--text);
}
.nav--sp {
    display: none;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    width: calc(100% - 32px);
}
.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
}
.btn--primary {
    background: #fff;
    color: #111;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
}
.btn--primary:hover{
    opacity: 0.8;
}
.btn--primary:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #111;
    border-right: solid 2px #111;
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    right: 7vw;
    transition-duration: 0.5s;
}
.btn--primary:hover:after{
    transition-duration: 0.5s;
    right: 6vw;
}
.btn--xl {
    padding: 14px 20px;
    font-size: 16px;
}
.btn--full {
    width: 100%;
}
.menu {
    position: static;
}
.menu__btn {
    border: 0;
    background: transparent;
    padding: 0;
    position: relative;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.menu__btn span {
    position: absolute;
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 999px;
}
.menu__btn span:nth-child(1) {
    transform: translateY(-6px);
}
.menu__btn span:nth-child(3) {
    transform: translateY(6px);
}
.menu__btn--close span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.menu__btn--close span:nth-child(2) {
    opacity: 0;
}
.menu__btn--close span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.menu__panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    background: #111;
    padding: 0 16px 12px;
    height: 100vh;
    transform: translateX(100%);
    transition: none;
    pointer-events: none;
    overflow-y: auto;
    z-index: 999;
}
.menu.is-active .menu__panel {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.menu.is-animated .menu__panel {
    transition: transform .35s ease, opacity .35s ease;
}
.menu__panel-header {
    margin: 0 -16px 16px;
    background: linear-gradient(180deg, #111 50%, #000 100%);
}
.menu__panel-header-inner {
    min-height: 56px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu__panel a {
    padding: 8px 8px;
    margin: 4px 0;
    display: block;
}
.menu__panel a.btn {
    padding: 14px 20px;
    margin: auto;
    display: flex;
    position: relative;
}
.menu__panel a:hover {
    color: var(--text);
}
.menu__panel p {
    text-align: center;
    margin: 20px 0 12px;
}
.menu__panel p span {
    font-size: 20px;
}
.hero {
    padding: 100px 0 26px;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: center;
}
.hero__kicker {
    color: var(--muted2);
    letter-spacing: .08em;
    font-weight: bold;
    margin-bottom: 10px;
}
.hero__patent{
    margin-bottom: 16px;
    color: #c1c1c1;
}
.hero__patent span{
    padding: 4px 12px;
    color: #ffc72c;
    border: 1px solid #ffc72c;
    margin-right: 16px;
}
.hero__title {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: .01em;
}
.hero__title span {
    display: block;
    width: 100%;
    margin: 4px 0;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    letter-spacing: 0;
    white-space: nowrap;
}
.hero__title span.right {
    text-align: right;
}
.hero__lead {
    margin-top: 32px;
    font-size: 12px;
}
.hero__cta {
    margin-top: 18px;
}
.hero__visual {
    margin: 20px;
    position: relative;
    height: calc(85vw - 72px);
}

.hero__visual .mock_up{
    position: absolute;
    z-index: 2;
    top: -1px;
    width: 100%;
}

.hero__visual .fv_videos{
    display: flex;
}

.hero__visual .fv_videos video{
    width: 50%;
    border-radius: 6vw;
    padding: 0 3vw 0 1vw;
    position: relative;
    top: 1vw;
}

.hero__visual .fv_videos video:last-child{
    padding: 0 1vw 0 3vw;
}

.ph {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
}
.ph--phone {
    height: 260px;
}
.ph--wide {
    height: 150px;
    border-radius: 18px;
    box-shadow: none;
}
.ph--dashboard {
    height: 340px;
    margin-top: 18px;
}
.ph--thumb {
    height: 180px;
    margin-top: 14px;
}
.ph--flow {
    height: 140px;
    margin-bottom: 14px;
    background: linear-gradient(180deg, rgba(140, 140, 140, 0.45), rgba(120, 120, 120, 0.18));
    overflow: hidden;
}
.ph--flow img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.section {
    padding: 32px 0;
}
.section--tight {
    border: 1px solid #777777;
    border-radius: var(--radius3);
    padding-bottom: 0;
    background: #000;
}
.section--tight .top_wrap {
    padding: 0 0 32px;
    background-image: url(../images/tight_background_sp.jpeg);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    background-position: left 60px;
    position: relative;
}
.section--tight .top_wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.section--tight h2, .section--tight p {
    position: relative;
}
.gradient__text {
    font-size: 28px;
    line-height: 1.25;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}
.h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}
.flow__kicker {
    text-align: center;
    color: var(--muted2);
    font-size: 13px;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.h3--center {
    text-align: center;
}
.p {
    margin-top: 12px;
    color: var(--text);
    font-size: 12px;
}
.p--center {
    text-align: center;
    margin-inline: auto;
    max-width: 70ch;
}
.title {
    text-align: center;
}
.title span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
}
#features {
    margin: 16px;
    width: calc(100% - 32px);
}
#features h2, #features p {
    padding: 0 16px;
}
#features h2 {
    margin-bottom: 24px;
}
.section--analytics {
    position: relative;
    overflow: hidden;
    height: 100vw;
    max-height: 450px;
    background: linear-gradient(180deg, #111 90%, rgba(0, 0, 0, 0) 100%);
}
.section--analytics .title {
    text-align: left;
}
.section--analytics .video_wrap {
    position: relative;
    width: 100%;
}
.section--analytics .video_wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #111 0%, rgba(17, 17, 17, 0.8) 10%, rgba(17, 17, 17, 0.6) 35%, rgba(17, 17, 17, 0.6) 65%, rgba(17, 17, 17, 0.8) 90%, #111 100%);
    z-index: 1;
    transform: scale(1);
    transform-origin: left top;
}
.section--analytics .video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: left top;
    margin-left: 20vw;
}
.section--analytics .container {
    position: absolute;
    z-index: 2;
    top: 30%;
    left: 20px;
}
.grid {
    margin-top: 24px;
    display: grid;
    gap: 20px;
}
.grid--cards {
    grid-template-columns: 1fr;
}
.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid--pricing {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 32px;
}
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #777777;
    border-radius: var(--radius3);
    overflow: hidden;
}
.card__body {
    padding: 16px 16px 18px;
}
.card__body .sub_title {
    margin-bottom: 8px;
    position: relative;
    color: #a0a0a0;
}
.card__body .sub_title span {
    opacity: 0.1;
    font-weight: bold;
    position: absolute;
    top: 2px;
    left: 4px;
    font-size: 28px;
}
.card__body h3{
    font-size: 24px;
}
.card__body p {
    margin-bottom: 16px;
}
.card__body .card__media {
    margin: 20px 12px;
    border-radius: var(--radius2);
    overflow: hidden;
    position: relative;
}
.card__body .card__media.vignette:after{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(0, 0, 0, 0);
}
.card--mini {
    padding: 20px;
}
.card--mini .sub_title {
    color: #a0a0a0;
    margin: 20px 0 8px;
    display: flex;
    align-items: center;
}
.card--mini .sub_title img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.card--mini h3 {
    margin-bottom: 0;
}
.section .card--mini p {
    margin-top: 8px;
    line-height: 1.4;
}
.grid--flow .card--mini {
    background: rgba(255, 255, 255, 0.08);
}
.img_wrap--flow {
    position: relative;
}
.img_wrap--flow .badge {
    position: absolute;
    z-index: 1;
    left: 8px;
    bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid white;
    font-size: 10px;
    background: rgba(17, 17, 17, 0.7);
    letter-spacing: 1px;
    width: 110px;
    text-align: center;
}
.bullets {
    margin-top: 10px;
    font-size: 12px;
}
.bullets li {
    margin: 12px 0;
    display: flex;
    align-items: center;
}
.bullets li .left {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #777777;
    text-align: center;
    padding: 16px 0;
    width: 140px;
    border-radius: var(--radius);
    margin-right: 12px;
}
.bullets li .left.short {
    width: 100px;
}
.bullets li .right {
    flex: 1;
    font-size: 10px;
    font-weight: 300;
}
.case {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #777777;
    border-radius: var(--radius3);
    padding: 20px;
}
.section--flow .h2, .section--cases .h2, .section--pricing .h2, #faq .h2, .cta .h2 {
    font-size: 26px;
    line-height: 1.35;
}
.section--flow .p, .section--cases .p, .section--pricing .p, #faq .p, .cta .p {
    font-size: 12px;
    line-height: 1.8;
}
.section--flow {
    background: #111;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #111 10%, #111 100%);
}
.section--cases .case {
    padding: 20px;
}
.section--cases .case .h3 {
    letter-spacing: 1px;
}
.section--cases .case ul li {
    display: flex;
    align-items: center;
    padding: 12px 0;
}
.section--cases .case ul li:first-child {
    opacity: 0.7;
    border-bottom: 1px solid #fff;
}
.section--cases .case ul li .case__meta {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: var(--radius2);
    font-size: 12px;
    border: 1px solid white;
    line-height: 40px;
    text-align: center;
}
.section--cases .case ul li p {
    flex: 1;
    line-height: 16px;
    margin-top: 0;
    margin-left: 12px;
}
.section--cases .case .ph--thumb {
    margin: 12px;
    overflow: hidden;
}
.section--cases .case .ph--thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.section--pricing p {
    letter-spacing: -1px;
    font-weight: 300;
}
#faq .faq__tab {
    font-size: 12px;
    padding: 8px 10px;
}
#faq .qa__q {
    font-size: 13px;
    font-weight: 500;
    padding-right: 24px;
}
#faq .qa__a {
    font-size: 12px;
    display: flex;
}
#faq .qa__a .a {
    font-size: 20px;
    width: 24px;
    padding-top: 4px;
}
#faq .qa__a .detail {
    flex: 1;
    font-weight: 300;
}
.case__title {
    font-size: 18px;
    margin-bottom: 10px;
}
.price {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #fff;
    border-radius: var(--radius3);
    position: relative;
}
.price__head {
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 12px;
}
.price__name {
    font-size: 24px;
    font-weight: bold;
}
.price__desc {
    font-size: 14px;
    margin-top: 2px;
}
.price__amount {
    text-align: center;
    margin: 12px 20px;
}
.price__amount .price__yen {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}
.price__amount .price__yen .number {
    font-size: 28px;
}
.price__amount .price__yen .price__tax {
    font-size: 16px;
    font-weight: 500;
}
.price__amount .price__sub {
    text-align: right;
    font-size: 14px;
    font-weight: 300;
}
.price__amount .price__dl {
    display: grid;
    margin-top: 12px;
    border-top: 1px solid #777;
    font-weight: bold;
    letter-spacing: 1px;
}
.price__amount .price__dl div {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid #777;
}
.price__amount .price__dl div dd {
    display: flex;
    align-items: center;
}
.price__amount .price__dl div dd img {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}
.price__amount .price__dl div.border {
    position: relative;
    padding-bottom: 32px;
}
.price__amount .price__dl div.border:before {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: #E2E2E2;
}
.price__amount .price__dl div.border:after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 5%;
    height: 4px;
    border-radius: 999px;
    background: #8C8C8C;
    z-index: 2;
}
.price__amount .price__dl div.border.lite:after {
    width: 20%;
}
.price__note {
    text-align: right;
    margin: 12px 20px;
    font-size: 12px;
}
.price--featured {
    margin-top: 24px;
    border-color: #ffc72c;
    background: rgba(255, 199, 44, 0.1);
    border-top: none;
}
.price--featured:after {
    content: "";
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 120px;
    height: 12px;
    background: inherit;
    border-radius: 999px 999px 0 0;
}
.price--featured .price__ribbon {
    position: absolute;
    width: 120px;
    top: -16px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border: 1px solid #ffc72c;
    color: #ffc72c;
    font-weight: bold;
    font-size: 16px;
    padding: 4px 20px;
    border-radius: 999px;
    text-align: center;
}
.price--featured .price__head {
    border-bottom: 1px solid #ffc72c;
    padding-top: 24px;
}
.price--featured .price__head:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 10px;
    width: calc(50% - 60px);
    border-top: 1px solid #ffc72c;
    border-radius: 50px 0 0 0;
}
.price--featured .price__head:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 10px;
    width: calc(50% - 60px);
    border-top: 1px solid #ffc72c;
    border-radius: 0 50px 0 0;
}
.price--featured .price__head h3 {
    color: #ffc72c;
}
.price--featured .price__dl div.border:after {
    background: #ffc72c;
    width: 70%;
}
.price--pro .price__amount {
    margin: 20px;
}
.price--pro .price__amount h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.price--pro .price__amount .price__desc {
    margin-bottom: 16px;
    padding: 0 8px 20px;
    border-bottom: 1px solid #777;
    font-weight: 300;
}
.price--pro .price__amount .price__yen .price__tax {
    font-size: 14px;
    font-weight: 300;
}
.price--pro .price__amount .plus {
    font-size: 20px;
    font-weight: bold;
    line-height: 16px;
}
.price--pro .price__amount .price__sub {
    text-align: center;
}
.price__amount--stack {
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    color: var(--muted);
}
.price__plus {
    text-align: center;
    font-weight: 900;
    color: var(--muted2);
    margin: 8px 0;
}
.contract {
    padding: 32px 0 0;
}
.contract .h3 {
    margin-bottom: 20px;
}
.contract__item {
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius2);
    margin-bottom: 20px;
    text-align: center;
}
.contract__title {
    font-weight: bold;
    padding: 16px;
    border-bottom: 1px solid #fff;
    letter-spacing: 1px;
    font-size: 16px;
}
.contract__text {
    margin-top: 6px;
    padding: 16px;
    font-size: 12px;
    font-weight: 300;
}
.faq {
    margin-top: 32px;
    margin-bottom: 40px;
}
.faq__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 14px;
}
.faq__tab {
    color: #fff;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-weight: bold;
    cursor: default;
    letter-spacing: 1px;
    border: 1px solid #777;
    background: rgba(255, 255, 255, 0.05);
    transition: all .2s ease-in-out;
    margin-bottom: 20px;
}
.faq__tab.is-active {
    border-color: #ffc72c;
    background: rgba(255, 199, 44, 0.1);
    color: rgba(255, 255, 255, 0.92);
    position: relative;
}
.faq__tab.is-active:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 1px #ffc72c;
    border-right: solid 1px #ffc72c;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    left: 0;
    bottom: -12px;
    margin: auto;
}
.faq__list {
    display: none;
    gap: 10px;
}
.faq__list.is-active {
    display: grid;
}
.qa__q {
    list-style: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #777;
    position: relative;
    border-radius: var(--radius2);
}
.qa__q::-webkit-details-marker {
    display: none;
}
.qa__q:before {
    content: '';
    width: 16px;
    height: 16px;
    background: none;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
}
.qa__q:after {
    content: '';
    width: 4px;
    height: 4px;
    border: 0;
    border-bottom: solid 1px #e2e2e2;
    border-right: solid 1px #e2e2e2;
    transform: rotate(45deg);
    position: absolute;
    top: -2px;
    right: 18px;
    bottom: 0;
    margin: auto;
}
.qa.active .qa__q:before {
    background: #fff;
    border: 1px solid #fff;
}
.qa.active .qa__q:after {
    border-top: solid 1px #111;
    border-left: solid 1px #111;
    top: 0;
}
.qa__a {
    padding: 12px;
    font-size: 12px;
}
.qa__a p {
    margin-top: 10px;
}
.qa__a li {
    margin: 10px 0;
}
.cta {
    padding: 56px 0;
    text-align: center;
    background-image:  radial-gradient( #3F3210, #111 90% );
}
.cta .gradient__text {
    background: none;
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.cta .cta__lead {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 300;
}
.cta .cta__inner {
    display: grid;
    gap: 12px;
    justify-items: center;
}
.cta .btn {
    margin: 16px 0 12px;
    position: relative;
}
.cta .cta__note {
    font-size: 12px;
    font-weight: 300;
}
.footer {
    padding: 52px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__inner {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}
.footer__brand {
    margin-bottom: 24px;
}
.footer__brand img {
    width: 80px;
}
.footer__brand p {
    font-size: 12px;
    margin: 12px 8px 0;
}
.footer__links {
    width: 100%;
    margin-bottom: 40px;
}
.footer__links ul {
    display: flex;
    width: 100%;
}
.footer__links ul li {
    width: 50%;
}
.footer__links ul li .title {
    text-align: left;
    font-weight: bold;
    margin-bottom: 12px;
}
.footer__links ul li a {
    margin-left: 8px;
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 300;
}
.footer__copy {
    font-size: 12px;
    text-align: center;
    width: 100%;
}

@media(min-width: 500px) and (max-width: 1024px){
    section:not(.section--analytics):not(.cta){
        max-width: 500px;
        margin: auto;
    }

    #features{
        margin: 16px auto;
    }

    .hero__visual{
        height: 360px;
    }

    .hero__visual .fv_videos video{
        border-radius: 32px;
        padding: 0 12px 0 10px;
        top: 5px;
    }

    .hero__visual .fv_videos video:last-child{
        padding: 0 8px 0 12px;
    }

    .cta .btn{
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }
    .hero__visual {
        grid-template-columns: 1fr 1fr;
    }
    .grid--3 {
        grid-template-columns: 1fr;
    }
    .grid--pricing {
        grid-template-columns: 1fr;
    }
    .contract__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1023px) {
    .nav--pc {
        display: none;
    }
    .nav--sp {
        display: block;
    }
    .hero__title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    .h2 {
        font-size: 28px;
    }
    .section--flow .h2, .section--cases .h2, .section--pricing .h2, #faq .h2, .cta .h2 {
        font-size: 24px;
    }
    .flow__kicker {
        font-size: 12px;
    }
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__links {
        flex-wrap: wrap;
    }
    .tight__video {
        border-radius: 0 0 16px 16px;
        overflow: hidden;
    }
}

@media screen and (min-width: 1024px) {
    .sp-only {
        display: none;
    }
    .pc-only {
        display: block;
    }

    .p{
        font-size: 16px;
    }

    .h3{
        font-size: 40px;
        line-height: normal;
    }

    .p--center{
        max-width: 100%;
        font-weight: 300;
    }

    .header{
        width: 100%;
        background: linear-gradient(180deg, #111 0%, #111 10%, rgba(0,0,0,0) 100%);
    }

    .header__inner .logo{
        width: 100px;
    }

    .header__inner .login{
        margin-right: 20px;
    }

    .header__inner .btn--primary{
        width: auto;
        padding: 8px 30px 8px 20px;
        box-shadow: none;
    }

    .btn--primary:after{
        right: 20px;
    }
    .btn--primary:hover:after{
        right: 16px;
    }

    .hero{
        padding: 100px 0;
    }

    .hero .hero__inner{
        display: block;
    }

    .hero .hero__copy{
        display: flex;
        width: 100%;
        max-width: 1400px;
        margin: auto;
        align-items: center;
    }

    .h2_wrap{
        flex: 1;
    }

    .hero .hero__title{
        font-size: 54px;
    }

    .hero .hero__title .hero__lead{
        font-size: 16px;
        line-height: 24px
    }

    .hero__title span.right{
        text-align: left;
    }

    .hero__patent{
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    .hero__patent span{
        font-size: 20px;
        padding: 4px 20px;
    }

    .hero .hero__visual{
        width: 540px;
        height: 430px;
    }

    .hero__visual .fv_videos video{
        border-radius: 34px;
        padding: 0 20px 0 10px;
        top: 12px;

    }

    .hero__visual .fv_videos video:last-child{
        padding: 0 10px 0 20px;
    }

    .section{
        max-width: 1200px;
        margin: 80px auto;
    }

    .gradient__text{
        font-size: 52px;
    }

    .title{
        margin-bottom: 60px;
    }

    .title span{
        font-size: 16px;
    }

    #features{
        margin: auto;
        background-image: url(../images/tight_background.jpeg);
        background-size: 130%;
        background-position: -160px -300px;
        background-repeat: no-repeat;
        position: relative;
        border-radius: 32px;
        width: min(var(--container), 100% - 32px);
        margin-inline: auto;
        padding-top: 0;
    }

    #features h2{
        line-height: 1.15;
        letter-spacing: .01em;
    }

    #features:before{
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 32px;
    }

    #features .inner_wrap{
        padding: 40px 0;
        display: flex;
        align-items: center;
    }

    .section--tight .top_wrap{
        background-image: none;
        width: 520px;
        padding-left: 40px;
    }

    .section--tight .top_wrap:before{
        content: none;
    }

    .section--tight .top_wrap p, #features p{
        font-size: 16px;
        padding-right: 40px;
    }

    .section--tight .tight__video{
        flex: 1;
        z-index: 1;
        overflow: hidden;
    }

    .section--tight .tight__video video{
        margin-left: 100px;
        border-radius: 16px;
        width: 90%;
    }

    .grid{
        gap: 24px;
    }

    #mechanism .card{
        display: flex;
        padding: 20px 40px;
        justify-content: space-between;
        align-items: center;
        border-radius: 24px;
    }

    .card__body .sub_title{
        margin-bottom: 0;
    }

    .card__body .sub_title span{
        font-size: 40px;
    }

    .bullets li .left{
        padding: 4px;
        letter-spacing: 1px;
        width: 170px;
    }

    .bullets li .right{
        font-size: 12px;
        line-height: 16px;
    }

    #mechanism .card__body{
        width: 46%;
        padding: 20px 0;
    }

    #mechanism .card__media{
        width: 50%;
        padding: 32px 0;
        border-radius: 16px;
        background: rgba(0, 0, 0, .5);
        height: auto;
    }

    #mechanism .card__media.no_padding{
        padding: 0;
    }

    #mechanism .card__media video, #mechanism .card__media img{
        border-radius: 16px;
        max-height: 260px;
        width: 100%;
        object-fit: cover;
    }

    #mechanism .card__media.no_padding video{
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .section--flow{
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 40px 0;
    }

    .section--flow .p, .section--cases .p, .section--pricing .p, #faq .p, .cta .p{
        font-size: 16px;
        line-height: 1.2;
        margin-top: 16px;
    }

    .section--cases .case ul li p{
        font-size: 14px;
        letter-spacing: 1px;
    }

    .grid--flow .card--mini{
        padding:  30px 24px;
    }
    .grid--flow .card--mini:hover .ph--flow img{
        transform:scale(1.1);
        transition-duration: 0.5s;
    }

    .card--mini .sub_title{
        font-size: 16px;
    }

    .card--mini .sub_title img{
        width: 30px;
        height: 30px;
    }

    #flow h3{
        font-size: 30px;
    }

    .img_wrap--flow .badge{
        font-size: 12px;
        width: 130px;
    }

    .ph--flow{
        height: 160px;
    }

    .ph--flow img{
        object-fit: cover;
        height: 160px;
        transition-duration: 0.5s;
    }

    .section--flow .p{
        font-size: 16px;
        font-weight: 300;
    }

    .section--analytics{
        height: auto;
        max-height: 100%;
        max-width: none;
        margin: 0;
        padding: 100px 0;
    }

    .section--analytics p{
        font-weight: 300;
    }

    .section--analytics .video_wrap:before{
        transform: scale(1);
    }

    .section--analytics .video_wrap video{
        margin-left: 50%;
        transform: scale(1);
        max-width: 1200px;
        max-height: 600px;
    }

    .ph--thumb{
        height: 180px;
    }

    .grid--pricing{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
        gap: 16px
    }

    .grid--pricing .price{
        width: 32%;
        letter-spacing: 1px;
    }

    .price--featured{
        margin-top: 0;
    }

    .price__head{
        padding-top: 24px;
    }

    .price__name{
        font-size: 28px;
    }

    .price--pro .price__amount .plus{
        font-size: 24px;
    }

    .section--pricing p{
        letter-spacing: 0;
        margin-top: 0;
    }

    .section--pricing .price__note{
        letter-spacing: 0;
        margin-bottom: 16px;
    }

    .price--pro .price__amount h3{
        font-size: 28px;
    }

    .price__amount .price__yen{
        font-size: 26px;
    }

    .price__amount .price__yen .number{
        font-size: 36px;
    }

    .price__amount .price__yen .price__tax{
        font-size: 20px;
    }

    .grid--pricing .price--pro{
        width: 60%;
    }

    .price--pro .price__amount .price__desc{
        width: 460px;
        margin: 0 auto 16px;
        font-size: 16px;
    }

    .contract .h3{
        font-size: 44px;
        margin-top: 40px;
    }

    .contract__grid{
        width: fit-content;
        margin: auto;
    }

    .contract__item{
        border: none;
        background: none;
        display: flex;
    }

    .contract__title{
        border: 1px solid;
        border-radius: 8px;
        width: 240px;
        background: rgba(255, 255, 255, 0.05);
        font-size: 20px;
        padding: 8px;
        height: max-content;
    }

    .contract__text{
        font-size: 16px;
        padding: 12px;
        margin-top: 0;
        margin-left: 20px;
    }

    .faq__tabs{
        gap: 32px
    }

    #faq .faq__tab{
        font-size: 28px;
        padding: 20px;
        border-radius: 12px;
        letter-spacing: 2px;
        margin-bottom: 60px;
    }

    .faq__tab.is-active:before{
        width: 12px;
        height: 12px;
        bottom: -24px;
    }

    .faq__list{
        gap: 24px;
    }

    #faq .qa__q{
        font-size: 20px;
        padding: 12px 32px;
        border-radius: 12px;
    }

    .qa__q:before{
        width: 20px;
        height: 20px;
        right: 32px;
    }

    .qa__q:after{
        width: 6px;
        height: 6px;
        right: 39px;
        top: -3px;
    }

    .qa.active .qa__q:after{
        top: 3px;
    }

    #faq .qa__a{
        padding: 12px 60px;
        font-size: 16px;
    }

    .qa__a h3{
        margin-top: 10px;
    }

    .qa__a p{
        margin-top: 0;
    }

    .qa__a li{
        margin: 0;
    }

    .cta{
        padding: 100px 0;
        background-image:  radial-gradient( #3F3210, #111 70% );
    }

    .cta .title{
        margin-bottom: 12px;
    }

    .cta .gradient__text{
        font-size: 52px;
    }

    .cta .cta__lead{
        font-size: 16px;
    }

    .cta .btn{
        width: auto;
        padding: 12px 40px 12px 24px;
        margin: 20px 0 12px;
    }

    .cta .cta__note{
        font-size: 16px;
    }

    .footer{
        padding: 120px 0 20px;
    }

    .footer__inner{
        align-items: flex-start;
        margin-bottom: 60px;
    }

    .footer__brand{
        width: 50%;
        padding-right: 100px;
    }

    .footer__brand img{
        width: 120px;
    }

    .footer__brand p{
        font-size: 14px;
        margin-top: 20px;
    }

    .footer__links{
        width: 50%;
    }

    .footer__links ul{
        width: 80%;
    }

    .footer__links ul li a{
        font-size: 14px;
    }

    .footer__copy{
        font-size: 14px;
        text-align: left;
        margin: 0 16px;
        width: min(var(--container), 100% - 32px);
        margin-inline: auto;
    }
}

@media screen and (min-width: 1200px) {
    .section--analytics .container{
        left: calc((100vw - 1100px) / 2);
    }
}

@media screen and (min-width: 1023px) and (max-width: 1200px) {
    .hero .hero__title{
        font-size: 44px;
    }

    .hero .hero__visual{
        width: 480px;
        height: 430px;
    }
}

@media screen and (min-width: 1500px) {
    .hero{
        padding: 160px 0;
    }

    .hero .hero__inner{
        width: 1400px;
    }

    .hero .hero__title{
        font-size: 60px;
    }

    .hero .hero__visual{
        width: 640px;
        height: 520px;
    }

    .hero__visual .fv_videos video{
        border-radius: 50px 50px 60px 60px;
    }
}