:root {
    --color-bg: #fafafa;
    --color-text: #444444;
    --color-accent: #93b9c8;
    --color-border: #a9a9a9;
    --color-footer-bg: #daeaf0;
    --color-white: #ffffff;
    --content-width: 1200px;
    --content-narrow: 72.5rem;
    --side-padding: 2.5rem;
    --section-padding: 5rem;
    --font-ja: "Noto Sans JP", sans-serif;
    --font-en: "Zalando Sans Expanded", "Helvetica Neue", Arial, sans-serif;
    --transition: 0.3s ease;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 20rem;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-ja);
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 0.04em;
    line-height: 1.8;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition), color var(--transition), background-color var(--transition), border-color var(--transition);
}

button {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    overflow: clip;
}

.site-main {
    flex: 1 0 auto;
}

.l-container {
    width: min(100% - 5rem, var(--content-width));
    margin-inline: auto;
}

.section-space {
    padding-block: var(--section-padding);
}

.section-title {
    font-family: var(--font-en);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1;
}

.section-title--en {
    font-size: 4rem;
}

.section-heading {
    text-align: center;
}

.common-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18.8125rem;
    min-height: 4.1875rem;
    padding: 1rem 4.5rem 1rem 3rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
}

.common-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.8125rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: currentColor;
    transform: translateY(-50%);
}

.common-button--light {
    color: #bdd8e2;
    background: var(--color-white);
}

.common-button--dark {
    color: var(--color-text);
    background-color: rgba(250, 250, 250, 0.88);
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    padding-top: 2.5rem;
}

.site-header__inner {
    width: min(100% - 5rem, calc(var(--content-width) + 7.5rem));
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: start;
}

.site-logo--header {
    position: fixed;
    top: 2.5rem;
    left: max(2.5rem, calc((100vw - (var(--content-width) + 7.5rem)) / 2));
    z-index: 30;
}

.site-logo__icon {
    width: 3.5rem;
    flex: 0 0 3.5rem;
}

.site-logo--footer {
    display: block;
    width: min(100%, 21.125rem);
}

.site-logo__footer-image {
    width: 100%;
}

.menu-button {
    position: fixed;
    top: 2.5rem;
    right: max(2.5rem, calc((100vw - (var(--content-width) + 7.5rem)) / 2));
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.75rem;
    aspect-ratio: 1;
    border: 1px solid rgba(68, 68, 68, 0.7);
    border-radius: 50%;
    color: rgba(68, 68, 68, 0.82);
}

.menu-button__label {
    font-family: var(--font-en);
    font-size: 1rem;
    line-height: 1;
}

.global-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(32rem, 100%);
    height: 100vh;
    padding: 7rem 2.5rem 3rem;
    background-color: rgba(250, 250, 250, 0.88);
    backdrop-filter: blur(0.5rem);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.global-nav__list {
    display: grid;
    gap: 1.5rem;
    text-align: center;
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.site-loading {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 2rem;
    background-color: #779fce;
    overflow: hidden;
    transition: opacity 1.1s ease, visibility 0s linear 1.1s;
}

.site-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(104deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 66%);
    opacity: 0;
    transform: translateX(-110%);
    animation: loadingShine 1.5s ease-out 0.85s forwards;
    pointer-events: none;
}

.site-loading__content {
    position: relative;
    z-index: 1;
    width: min(100% - 3rem, 37.5rem);
    text-align: center;
}

.site-loading .hero__title-en,
.site-loading .hero__title-ja {
    color: var(--color-white);
    opacity: 0;
    filter: blur(0.45rem);
    transform: translateY(1rem);
}

.site-loading .hero__title-en {
    animation: loadingCopyFade 0.95s ease-out 0.18s forwards;
}

.site-loading .hero__title-ja {
    animation: loadingCopyFade 0.95s ease-out 0.36s forwards;
}

.site-loading.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 36rem;
    overflow: hidden;
    background-color: #d9e6ec;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.fv__slider {
    isolation: isolate;
}

.fv__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.fv__slide.is-active {
    opacity: 1;
}

.fv__slide picture,
.fv__slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.fv__slide img {
    object-fit: cover;
    object-position: center;
}

.fv__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.28) 100%);
    pointer-events: none;
}

.hero__content {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    width: min(100% - 3rem, 28rem);
    text-align: center;
    transform: translate(-50%, -50%);
}

.fv__logo {
    width: min(100%, 24rem);
    margin-inline: auto;
    filter: drop-shadow(0 0 1.25rem rgba(0, 0, 0, 0.14));
}

.hero__title-en {
    font-family: var(--font-en);
    font-size: clamp(2rem, 2vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.14;
}

.hero__title-ja {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.5;
}

.home .site-logo--header,
.home .menu-button {
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.is-loaded.home .site-logo--header,
body.is-loaded.home .menu-button {
    opacity: 1;
}

@keyframes loadingCopyFade {
    from {
        opacity: 0;
        filter: blur(0.45rem);
        transform: translateY(1rem);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes loadingShine {
    0% {
        opacity: 0;
        transform: translateX(-110%);
    }

    18% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(110%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-loading {
        display: none;
        transition: none;
    }

    .site-loading::after,
    .site-loading .hero__title-en,
    .site-loading .hero__title-ja,
    .fv__slide,
    .home .site-logo--header,
    .home .menu-button {
        animation: none;
        transition: none;
    }

    .fv__slide {
        opacity: 0;
    }

    .fv__slide.is-active {
        opacity: 1;
    }

    .home .site-logo--header,
    .home .menu-button {
        opacity: 1;
    }
}

.lead__inner {
    padding-top: 0.25rem;
}

.lead__title {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.07em;
    line-height: 1.36;
}

.lead__text {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.9;
}

.philosophy__item {
    position: relative;
    display: grid;
    grid-template-columns: 21rem minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
    padding: 2.75rem 0 2.9375rem;
}

.philosophy__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    border-top: 1px solid var(--color-border);
    transform: translateX(-50%);
}

.philosophy__item:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px solid var(--color-border);
    transform: translateX(-50%);
}

.philosophy {
    padding-bottom: 5rem;
}

.philosophy__label {
    padding-left: 0.25rem;
    align-self: start;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.philosophy__body {
    align-self: start;
}

.philosophy__heading {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    transform: translateY(-0.125rem);
    transform-origin: top left;
}

.philosophy__text {
    margin-top: 0.5625rem;
    font-size: 1rem;
    line-height: 1.85;
}

.brand__header {
    margin-bottom: 4rem;
}

.brand-feature__link {
    display: block;
}

.brand-feature__visual {
    position: relative;
}

.brand-feature__visual img {
    aspect-ratio: 3091 / 1086;
    object-fit: cover;
}

.brand-feature__logo {
    position: absolute;
    top: 40%;
    left: 4rem;
    width: min(43%, 32rem);
    height: auto;
    transform: translateY(-50%);
    object-fit: contain;
}

.brand-feature__content {
    padding: 3.3125rem 0 0;
    text-align: center;
}

.brand-feature__description {
    max-width: 59rem;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.95;
}

.brand-feature__video {
    position: relative;
    width: min(100%, 960px);
    margin: 3rem auto 0;
    aspect-ratio: 16 / 9;
}

.brand-feature__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.brand-feature__content .common-button {
    margin-top: 3rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3.75rem;
}

.brand-card {
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
}

.brand-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 13rem;
    padding: 2rem;
}

.brand-card img[alt="inyoe"] {
    max-width: 16rem;
}

.brand-card img[alt="innerTIDE"] {
    max-width: 16rem;
}

.brand-card img[alt="plastikÖs"] {
    max-width: 16rem;
}

.brand-card img[alt="FAT LAB"] {
    max-width: 16rem;
}

.news__layout {
    display: grid;
    grid-template-columns: 20rem minmax(0, 1fr);
    gap: 6rem;
    align-items: start;
}

.news__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.news-list {
    border-top: 1px solid transparent;
}

.news-list__item {
    border-bottom: 1px solid var(--color-border);
}

.news-list__link {
    display: grid;
    grid-template-columns: 11.25rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1rem 0 0.9375rem;
    font-size: 1rem;
}

.news-list__date {
    font-family: var(--font-en);
    font-size: 1rem;
}

.news-list__text,
.news-list__title {
    line-height: 1.8;
}

.news__empty,
.news-archive__empty {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.9;
}

.news-archive {
    padding-top: 10rem;
}

.news-archive__header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.news-archive__inner {
    width: min(100% - 5rem, 960px);
}

.news-archive__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.news-archive__list {
    border-top-color: var(--color-border);
}

.news-list__body {
    display: grid;
    gap: 0.375rem;
}

.news-list__title {
    font-size: 1rem;
    font-weight: 300;
}

.news-list__excerpt {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: rgba(68, 68, 68, 0.82);
}

.news-pagination {
    margin-top: 3rem;
}

.news-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-family: var(--font-en);
    font-size: 0.95rem;
    line-height: 1;
}

.news-pagination .page-numbers.current {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-white);
}

.news-single {
    padding-top: 10rem;
}

.news-single__inner {
    width: min(100% - 5rem, 52rem);
    margin-inline: auto;
}

.news-single__meta {
    margin-bottom: 1rem;
}

.news-single__date {
    font-family: var(--font-en);
    font-size: 1rem;
}

.news-single__title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.45;
}

.news-single__thumb {
    margin-top: 2.5rem;
}

.news-single__thumb img {
    width: 100%;
    height: auto;
}

.news-single__content {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 2;
}

.news-single__content > * + * {
    margin-top: 1.5rem;
}

.news-single__content img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.news-single__content a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.news-single__back {
    margin-top: 3rem;
}

.news-single__back a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.instagram {
    background-color: var(--color-background);
}

.instagram__header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.instagram__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.instagram__feed {
    max-width: 100%;
    overflow: hidden;
}

.instagram__feed > * {
    max-width: 100%;
}

.instagram__feed img {
    max-width: 100%;
    height: auto;
}

.instagram__actions {
    margin-top: 3rem;
    text-align: center;
}

.instagram__button {
    gap: 0.75rem;
}

.instagram__button-icon {
    width: 1.25rem;
    flex: 0 0 1.25rem;
}

.contact-banner {
    position: relative;
}

.contact-banner__media img {
    aspect-ratio: 1500 / 841;
    min-height: 18rem;
    object-fit: cover;
}

.contact-banner__content {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(100% - 3rem, 34rem);
    text-align: center;
    transform: translate(-50%, -50%);
}

.contact-banner__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.contact-banner__text {
    margin-top: 1rem;
    font-size: 1rem;
}

.contact-banner .common-button {
    margin-top: 2.75rem;
}

.company__header {
    margin-bottom: 3.5rem;
}

.company__layout {
    display: grid;
    grid-template-columns: 1.04fr 1fr;
    gap: 2.625rem;
    align-items: center;
}

.company__placeholder {
    display: grid;
    place-items: center;
    min-height: 28rem;
    background-color: #dddddd;
    color: #666666;
    font-size: 1rem;
}

.company__figure {
    aspect-ratio: 7 / 8;
    min-height: 28rem;
    overflow: hidden;
}

.company__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.8);
}

.company__list {
    border-top: 1px solid var(--color-border);
}

.company__row {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    gap: 2.5rem;
    padding: 1.375rem 0 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.company__term,
.company__description {
    font-size: 1rem;
}

.front-page-main .is-scroll-fade {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.front-page-main .is-scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .front-page-main .is-scroll-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.site-footer {
    background-color: var(--color-footer-bg);
    padding: 2.625rem 0 1.5rem;
}

.site-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 0.625rem;
}

.footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 2rem;
    font-family: var(--font-en);
    font-size: 1rem;
}

.footer-nav__list--sub {
    margin-top: 1rem;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(68, 68, 68, 0.7);
    text-align: center;
}

.site-footer__copyright {
    font-size: 1rem;
    font-weight: 300;
}

.page-contact .site-main {
    padding-top: 0;
}

.contact-page {
    padding-top: 10rem;
}

.contact-page__header {
    margin-bottom: 4rem;
}

.contact-page__title {
    font-size: 4rem;
}

.contact-page__lead {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.9;
}

.contact-form-section__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form-section__body {
    width: min(100%, 50rem);
    margin-inline: auto;
}

.contact-page .contact-form-section__body {
    margin-left: auto;
    margin-right: auto;
}

.contact-page .wpcf7 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    display: grid;
    gap: 2rem;
}

.wpcf7 label {
    display: grid;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    min-height: 3.5rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    font-size: 1rem;
    line-height: 1.6;
}

.wpcf7 textarea {
    min-height: 12rem;
    resize: vertical;
}

.wpcf7 input[type="text"]:focus-visible,
.wpcf7 input[type="email"]:focus-visible,
.wpcf7 input[type="tel"]:focus-visible,
.wpcf7 textarea:focus-visible,
.wpcf7 input[type="submit"]:focus-visible,
.wpcf7 input[type="checkbox"]:focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 2px;
}

.wpcf7 .wpcf7-acceptance {
    display: block;
    padding-top: 0.5rem;
}

.wpcf7 .wpcf7-acceptance label {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    line-height: 1.7;
    cursor: pointer;
}

.wpcf7 input[type="checkbox"] {
    appearance: none;
    position: relative;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
}

.wpcf7 input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 0.0625rem;
    left: 0.25rem;
    width: 0.25rem;
    height: 0.5rem;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transform: rotate(45deg);
}

.wpcf7 input[type="submit"] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18.8125rem;
    min-height: 4.1875rem;
    padding: 1rem 4.5rem 1rem 3rem;
    border: 1px solid var(--color-text);
    border-radius: 999px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.wpcf7 .has-spinner {
    display: flex;
    justify-content: center;
}

.wpcf7 .wpcf7-spinner {
    margin: 1rem auto 0;
}

.wpcf7-not-valid-tip {
    margin-top: 0.5rem;
    color: #a04848;
    font-size: 0.875rem;
    line-height: 1.6;
}

.wpcf7-response-output {
    margin: 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #a04848;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--color-accent);
}

.contact-page .wpcf7,
.contact-page .wpcf7 form,
.contact-page .wpcf7 p {
    width: 100%;
}

.contact-page .wpcf7 p {
    margin: 0;
}

.contact-page .wpcf7 form {
    display: grid;
    gap: 2rem;
}

.contact-page .wpcf7 .contact-form {
    display: grid;
    gap: 2rem;
}

.contact-page .wpcf7 .contact-form__row {
    display: grid;
    gap: 0.75rem;
}

.contact-page .wpcf7 .contact-form__label-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-page .wpcf7 .contact-form__label-wrap > p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.contact-page .wpcf7 .contact-form__label,
.contact-page .wpcf7 .contact-form__status {
    display: inline-flex;
    vertical-align: middle;
}

.contact-page .wpcf7 .contact-form__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid currentColor;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.contact-page .wpcf7 .contact-form__status--required {
    color: var(--color-white);
    background-color: var(--color-text);
    border-color: var(--color-text);
}

.contact-page .wpcf7 .contact-form__status--optional {
    color: var(--color-text);
    background-color: transparent;
}

.contact-page .wpcf7 .contact-form__field {
    width: 100%;
}

.contact-page .wpcf7 .contact-form__agreement {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding-top: 0.5rem;
}

.contact-page .wpcf7 .contact-form__agreement > p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin: 0;
}

.contact-page .wpcf7 .wpcf7-acceptance {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.contact-page .wpcf7 .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.contact-page .wpcf7 .wpcf7-list-item-label {
    display: inline-flex;
    align-items: center;
    margin-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-page .wpcf7 .contact-form__checkbox-label {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    line-height: 1.7;
    cursor: pointer;
}

.contact-page .wpcf7 .contact-form__agreement .wpcf7-form-control-wrap {
    width: auto;
    display: inline-flex;
    align-items: center;
}

.contact-page .wpcf7 .contact-form__checkbox {
    display: block;
    margin: 0;
    align-self: center;
}

.contact-page .wpcf7 input[type="checkbox"].contact-form__checkbox {
    position: relative;
    top: 0.0625rem;
    transform: none;
}

.contact-page .wpcf7 .contact-form__agreement,
.contact-page .wpcf7 .contact-form__agreement > p,
.contact-page .wpcf7 .wpcf7-acceptance,
.contact-page .wpcf7 .wpcf7-list-item,
.contact-page .wpcf7 .wpcf7-list-item-label,
.contact-page .wpcf7 .contact-form__status {
    align-items: center;
}

.contact-page .wpcf7 .wpcf7-list-item-label,
.contact-page .wpcf7 .contact-form__checkbox-text,
.contact-page .wpcf7 .contact-form__status {
    line-height: 1.4;
}

.contact-page .wpcf7 .contact-form__actions {
    display: grid;
    justify-items: center;
    width: 100%;
    padding-top: 1rem;
    text-align: center;
}

.contact-page .wpcf7 .contact-form__actions > p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}

.contact-page .wpcf7 .contact-form__actions .wpcf7-spinner {
    margin-left: 0.75rem;
}

.contact-page .wpcf7 .contact-form__submit,
.contact-page .wpcf7 input[type="submit"].contact-form__submit {
    margin-inline: auto;
    padding: 1rem 3rem;
    background-image: none;
    text-align: center;
}

.contact-page .wpcf7 .has-spinner {
    display: flex;
    justify-content: center;
}

.contact-page .wpcf7 .wpcf7-not-valid-tip {
    margin-top: 0.5rem;
}

.contact-page .wpcf7 .wpcf7-response-output {
    margin-top: 0;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.contact-form__row {
    display: grid;
    gap: 0.75rem;
}

.contact-form__label-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form__label {
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid currentColor;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.contact-form__status--required {
    color: var(--color-white);
    background-color: var(--color-text);
    border-color: var(--color-text);
}

.contact-form__status--optional {
    color: var(--color-text);
    background-color: transparent;
}

.contact-form__field {
    width: 100%;
    min-height: 3.5rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form__field--textarea {
    min-height: 12rem;
    resize: vertical;
}

.contact-form__field:focus-visible,
.contact-form__checkbox:focus-visible,
.contact-form__submit:focus-visible {
    outline: 1px solid var(--color-accent);
    outline-offset: 2px;
}

.contact-form__agreement {
    padding-top: 0.5rem;
}

.contact-form__checkbox-label {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    line-height: 1.7;
    cursor: pointer;
}

.contact-form__checkbox {
    appearance: none;
    position: relative;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0;
    background-color: var(--color-white);
}

.contact-form__checkbox:checked {
    background-color: var(--color-white);
}

.contact-form__checkbox:checked::after {
    content: "";
    position: absolute;
    top: 0.0625rem;
    left: 0.25rem;
    width: 0.25rem;
    height: 0.5rem;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transform: rotate(45deg);
}

.contact-form__checkbox-text {
    font-size: 1rem;
}

.contact-form__actions {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.contact-form__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18.8125rem;
    min-height: 4.1875rem;
    padding: 1rem 4.5rem 1rem 3rem;
    border: 1px solid var(--color-text);
    border-radius: 999px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
}

.contact-form__submit::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.8125rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: currentColor;
    transform: translateY(-50%);
}

.page-privacy .site-main {
    padding-top: 0;
}

.privacy-page {
    padding-top: 10rem;
}

.privacy-page__header {
    margin-bottom: 4rem;
}

.privacy-page__title {
    font-size: 4rem;
}

.privacy-page__content {
    width: min(100%, 52rem);
    margin-inline: auto;
}

.privacy-page__lead {
    margin-bottom: 2rem;
    line-height: 1.9;
}

.privacy-page__section + .privacy-page__section {
    margin-top: 2.5rem;
}

.privacy-page__heading {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.privacy-page__text {
    line-height: 1.9;
}

.privacy-page__text + .privacy-page__text {
    margin-top: 1rem;
}

.privacy-page__info {
    display: grid;
    gap: 0.75rem;
    line-height: 1.9;
}

.privacy-page__info-row {
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1rem;
}

.privacy-page__info-row dt {
    font-weight: 300;
}

.privacy-page__numbered-list,
.privacy-page__bullet-list,
.privacy-page__sub-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    line-height: 1.9;
}

.privacy-page__numbered-list {
    padding-left: 1.5rem;
    list-style: decimal;
}

.privacy-page__bullet-list,
.privacy-page__sub-list {
    padding-left: 1.5rem;
    list-style: disc;
}

.privacy-page__sub-list {
    margin-top: 0.75rem;
}

.privacy-page__info--contact {
    margin-top: 1rem;
}

.privacy-page__link {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.page-thanks .site-main {
    padding-top: 0;
}

.thanks-page {
    padding-top: 10rem;
}

.thanks__inner {
    width: min(100%, 48rem);
    margin-inline: auto;
    text-align: center;
}

.thanks__message {
    font-size: 1rem;
    line-height: 2;
}

.thanks__link-wrap {
    margin-top: 2.5rem;
}

.thanks__link {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.page-uptive .site-main {
    padding-top: 0;
}

.uptive-hero {
    padding-top: 0;
    padding-bottom: 5rem;
}

.uptive-hero__inner {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
    min-height: 41rem;
}

.uptive-hero__copy {
    align-self: end;
    padding: 12rem 0 0;
}

.uptive-hero__title {
    font-family: var(--font-en);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.14;
    letter-spacing: 0.01em;
    padding-bottom: 0;
}

.uptive-hero__visual {
    position: relative;
    height: 100%;
}

.uptive-hero__image {
    height: 100%;
    aspect-ratio: 10 / 9;
    object-fit: cover;
    object-position: center 80%;
}

.uptive-hero__brand {
    position: absolute;
    right: 1.75rem;
    bottom: 1.75rem;
    width: min(23%, 9rem);
    height: auto;
    object-fit: contain;
}

.uptive-reason__header {
    margin-bottom: 3rem;
}

.uptive-reason__title {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.uptive-reason__list-wrap {
    border-top: 1px solid var(--color-border);
}

.uptive-reason__list {
    padding-top: 3rem;
}

.uptive-reason__item {
    max-width: 48rem;
    margin-left: auto;
}

.uptive-reason__item + .uptive-reason__item {
    margin-top: 3.5rem;
}

.uptive-reason__heading {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
}

.uptive-reason__heading-note {
    font-size: 0.5em;
}

.uptive-reason__text {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.9;
}

.uptive-reason__image {
    width: 100%;
    margin-top: 4rem;
    overflow: hidden;
}

.uptive-reason__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 1;
}

.uptive-reason__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uptive-product__header {
    margin-bottom: 4rem;
}

.uptive-product__lead {
    margin-top: 1rem;
    font-size: 1rem;
}

.uptive-product__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-image: linear-gradient(var(--color-border), var(--color-border));
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 1px 100%;
}

.uptive-product__grid::before,
.uptive-product__grid::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.product-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 2.5rem 2.5rem 3rem;
}

.uptive-product__grid::before {
    top: 0;
    border-top: 1px solid var(--color-border);
}

.uptive-product__grid::after {
    bottom: 0;
    border-bottom: 1px solid var(--color-border);
}

.product-card:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px solid var(--color-border);
    transform: translateX(-50%);
}

.product-card__tag {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2rem;
    padding: 0.25rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background-color: var(--color-white);
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1;
}

.product-card__image {
    margin-top: 2rem;
}

.product-card__title {
    margin-top: 1.5rem;
    font-family: var(--font-en);
    font-size: 2rem;
    text-align: center;
    line-height: 1.1;
}

.product-card__catch {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
}

.product-card__meta {
    margin-top: 1.5rem;
}

.product-card__meta-row + .product-card__meta-row {
    margin-top: 1rem;
}

.product-card__meta dt {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1;
}

.product-card__meta dd {
    margin-top: 0.625rem;
    font-size: 1rem;
    line-height: 1.9;
}

.uptive-room__hero {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.uptive-room__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.58);
    z-index: 1;
}

.uptive-room__hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.uptive-room__hero-inner {
    position: relative;
    z-index: 2;
}

.uptive-room__eyebrow {
    margin-bottom: 5rem;
    text-align: right;
    font-size: 1rem;
}

.uptive-room__lead {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.uptive-room__text {
    margin-top: 0.75rem;
    max-width: 56rem;
    font-size: 1rem;
}

.uptive-room__feature-row {
    border-bottom: 1px solid var(--color-border);
}

.uptive-room__feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 0;
}

.uptive-room__feature--reverse {
    align-items: flex-end;
}

.uptive-room__feature-body {
    max-width: 28rem;
}

.uptive-room__feature--reverse .uptive-room__feature-label,
.uptive-room__feature--reverse .uptive-room__feature-body {
    width: 28rem;
    max-width: 100%;
}

.uptive-room__feature-label {
    font-family: var(--font-en);
    font-size: 2rem;
    line-height: 1;
}

.uptive-room__feature--reverse .uptive-room__feature-body,
.uptive-room__feature--reverse .uptive-room__feature-label {
    text-align: left;
}

.uptive-room__feature-title {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.uptive-room__feature-body p {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.9;
}

.uptive-room__placeholder,
.uptive-salons__wide-placeholder {
    display: grid;
    place-items: center;
    min-height: 20rem;
    margin-top: 3rem;
    background-color: #dddddd;
    color: #666666;
    text-align: center;
    font-size: 1rem;
}

.uptive-room__visual {
    margin-top: 3rem;
    aspect-ratio: 16 / 5;
    overflow: hidden;
}

.uptive-room__visual-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.uptive-salons__hero {
    position: relative;
    overflow: hidden;
}

.uptive-salons__hero img {
    width: 100%;
    min-height: 25rem;
    height: 25rem;
    object-fit: cover;
    object-position: center center;
}

.uptive-salons__hero-content {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 1;
    width: min(100% - 5rem, var(--content-width));
    transform: translate(-50%, -50%);
}

.uptive-salons__hero-lead {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 1rem rgba(255, 255, 255, 0.95), 0 0 2rem rgba(255, 255, 255, 0.78);
}

.uptive-salons__hero-text {
    margin-top: 0.75rem;
    max-width: 46rem;
    font-size: 1rem;
    text-shadow: 0 0 1rem rgba(255, 255, 255, 0.95), 0 0 2rem rgba(255, 255, 255, 0.78);
}

.uptive-salons__hero-content .section-title {
    text-shadow: 0 0 1rem rgba(255, 255, 255, 0.98), 0 0 2.25rem rgba(255, 255, 255, 0.82);
}

.uptive-salons__inner {
    padding-top: 4rem;
}

.uptive-salons__concept {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
}

.uptive-salons__concept-lead {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.uptive-salons__concept-title {
    font-size: 3rem;
}

.uptive-salons__concept-text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.9;
}

.uptive-salons__concept-placeholder {
    display: grid;
    place-items: center;
    min-height: 16rem;
    background: linear-gradient(135deg, #ececec 0%, #ffffff 100%);
    color: #666666;
    text-align: center;
}

.uptive-salons__concept-photo {
    width: 100%;
    margin-inline: auto;
    height: auto;
}

.uptive-salons__wide-visual {
    width: min(100%, 960px);
    margin: 3rem auto 0;
}

.uptive-salons__wide-photo {
    display: block;
    width: 100%;
    height: auto;
}

.uptive-salons__wide-actions {
    margin-top: 2rem;
    text-align: center;
}

.uptive-flow__header {
    margin-bottom: 4rem;
}

.uptive-flow__lead {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.uptive-flow__text {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.uptive-flow__layout {
    display: grid;
    grid-template-columns: 0.62fr 1fr;
    gap: 5rem;
    align-items: start;
}

.uptive-flow__image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: right center;
}

.uptive-flow__list {
    display: grid;
    align-self: center;
}

.uptive-flow__item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-accent);
}

.uptive-flow__number {
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--color-accent);
}

.uptive-flow__body {
    font-size: 1rem;
}

.uptive-info__row {
    border-top: 1px solid var(--color-border);
}

.uptive-info__row:last-child {
    border-bottom: 1px solid var(--color-border);
}

.uptive-info__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0 2.5rem;
}

.uptive-info__title {
    font-size: 4rem;
}

.uptive-info__lead {
    font-size: 1rem;
}

.uptive-info__text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.9;
}

.page-inyoe .site-main {
    padding-top: 0;
}

.page-plastikos .site-main {
    padding-top: 0;
}

.page-innertide .site-main {
    padding-top: 0;
}

.page-fatlab .site-main {
    padding-top: 0;
}

.inyoe-hero {
    position: relative;
    overflow: hidden;
}

.plastikos-hero {
    position: relative;
    overflow: hidden;
}

.innertide-hero {
    position: relative;
    overflow: hidden;
}

.fatlab-hero {
    position: relative;
    overflow: hidden;
}

.inyoe-hero__inner {
    position: relative;
    min-height: 33.75rem;
}

.plastikos-hero__inner {
    position: relative;
    min-height: 33.75rem;
}

.innertide-hero__inner {
    position: relative;
    min-height: 33.75rem;
}

.fatlab-hero__inner {
    position: relative;
    min-height: 33.75rem;
}

.inyoe-hero__picture {
    display: block;
}

.plastikos-hero__picture {
    display: block;
}

.innertide-hero__picture {
    display: block;
}

.fatlab-hero__picture {
    display: block;
}

.inyoe-hero__image {
    width: 100%;
    height: 33.75rem;
    object-fit: cover;
    object-position: center center;
}

.plastikos-hero__image {
    width: 100%;
    height: 33.75rem;
    object-fit: cover;
    object-position: center center;
}

.innertide-hero__image {
    width: 100%;
    height: 33.75rem;
    object-fit: cover;
    object-position: center center;
}

.fatlab-hero__image {
    width: 100%;
    height: 33.75rem;
    object-fit: cover;
    object-position: center center;
}

.inyoe-intro__text {
    max-width: 55rem;
    margin-inline: auto;
    text-align: center;
    line-height: 1.9;
}

.inyoe-product__header {
    margin-bottom: 4rem;
}

.inyoe-product__list {
    display: grid;
    gap: 6rem;
}

.inyoe-product__item {
    display: grid;
    gap: 1rem;
}

.inyoe-product__main {
    display: grid;
    grid-template-columns: 19rem minmax(0, 1fr);
    column-gap: 6rem;
    align-items: center;
}

.inyoe-product__item--reverse .inyoe-product__main {
    grid-template-columns: minmax(0, 1fr) 19rem;
}

.inyoe-product__media {
    display: flex;
    justify-content: center;
    align-self: start;
}

.inyoe-product__media img {
    width: auto;
    max-width: 100%;
    max-height: 23rem;
    height: auto;
}

.inyoe-product__item--oil .inyoe-product__media img {
    max-height: 21rem;
}

.inyoe-product__item--foam .inyoe-product__media img {
    max-height: 19rem;
}

.inyoe-product__item--toner .inyoe-product__media img {
    max-height: 20rem;
}

.inyoe-product__item--serum .inyoe-product__media img {
    max-height: 13rem;
}

.inyoe-product__item--cream .inyoe-product__media img {
    max-height: 9rem;
}

.inyoe-product__item--sun .inyoe-product__media img {
    max-height: 18rem;
}

.inyoe-product__item--foundation .inyoe-product__media img {
    max-height: 15rem;
}

.inyoe-product__item--mist .inyoe-product__media img {
    max-height: 16rem;
}

.inyoe-product__item--mask .inyoe-product__media img {
    max-height: 18rem;
}

.inyoe-product__item--fatlab .inyoe-product__media img {
    max-height: 15rem;
}

.inyoe-product__body {
    align-self: start;
    width: 100%;
    max-width: 43.75rem;
}

.inyoe-product__content {
    width: 100%;
}

.inyoe-product__panel {
    width: 100%;
    padding-top: 1rem;
}

.inyoe-product__item--reverse .inyoe-product__media {
    order: 2;
}

.inyoe-product__item--reverse .inyoe-product__body {
    order: 1;
}

.inyoe-product__label {
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.inyoe-product__name {
    margin-top: 0.4rem;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.inyoe-product__lead {
    margin-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.7;
}

.inyoe-product__description {
    margin-top: 1rem;
    line-height: 1.9;
}

.inyoe-product__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
    line-height: 1.5;
}

.inyoe-product__plus {
    position: relative;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    color: var(--color-text);
    font-size: 0;
    flex: 0 0 1rem;
}

.inyoe-product__plus::before,
.inyoe-product__plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1px;
    background-color: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.inyoe-product__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.inyoe-product__toggle[aria-expanded="true"] .inyoe-product__plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.inyoe-product__ingredients-text {
    font-size: 1rem;
    line-height: 1.8;
}

@media (hover: hover) {
    a:hover,
    button:hover {
        opacity: 0.75;
    }
}

@media (max-width: 830px) {
    .company__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
    }

    .l-container {
        width: min(100% - 2rem, var(--content-width));
    }

    .site-header {
        padding-top: 1.25rem;
    }

    .site-header__inner {
        width: min(100% - 2rem, var(--content-width));
        align-items: center;
    }

    .site-logo__icon {
        width: 2.5rem;
        flex-basis: 2.5rem;
    }

    .site-logo--header {
        top: 1.25rem;
        left: 1rem;
    }

    .menu-button {
        top: 1.25rem;
        right: 1rem;
        width: 3.75rem;
    }

    .menu-button__label {
        font-size: 0.5rem;
    }

    .global-nav {
        width: 100%;
        padding: 6rem 2rem 2.5rem;
    }

    .site-loading__content {
        width: calc(100% - 2rem);
    }

    .hero {
        min-height: 100svh;
    }

    .hero__content {
        width: calc(100% - 4rem);
    }

    .fv__logo {
        width: min(100%, 16rem);
    }

    .hero__title-en {
        font-size: 2rem;
    }

    .hero__title-ja {
        margin-top: 1rem;
        font-size: 1rem;
        letter-spacing: 0.14em;
    }

    .lead__title {
        font-size: 2.5rem;
        line-height: 1.45;
    }

    .lead__text {
        margin-top: 1.5rem;
        font-size: 1rem;
        line-height: 1.9;
    }

    .philosophy__item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.75rem 0 1.875rem;
    }

    .philosophy {
        padding-bottom: 3.5rem;
    }

    .section-title--en {
        font-size: 2.5rem;
    }

    .philosophy__label {
        padding-left: 0;
        font-size: 1.5rem;
    }

    .philosophy__heading {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .philosophy__text {
        font-size: 1rem;
    }

    .brand__header {
        margin-bottom: 2.25rem;
    }

    .brand-feature__content {
        padding-top: 2rem;
    }

    .brand-feature__logo {
        left: 1.5rem;
        width: min(48%, 14rem);
    }

    .brand-feature__description {
        font-size: 1rem;
        line-height: 1.9;
    }

    .brand-feature__video {
        width: 100%;
        margin-top: 2rem;
    }

    .brand-feature__content .common-button {
        margin-top: 2rem;
    }

    .common-button {
        min-width: 14rem;
        min-height: 3.5rem;
        padding: 0.875rem 3.75rem 0.875rem 2.5rem;
        font-size: 1rem;
    }

    .common-button::after {
        right: 2rem;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-card__link {
        min-height: 9rem;
        padding: 1.5rem;
    }

    .news__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instagram__header {
        margin-bottom: 2rem;
    }

    .news-list__link {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.875rem 0 0.8125rem;
    }

    .news-archive {
        padding-top: 7rem;
    }

    .news-archive__header {
        margin-bottom: 2.5rem;
    }

    .news-archive__inner {
        width: min(100% - 2rem, 960px);
    }

    .news-pagination {
        margin-top: 2rem;
    }

    .news-archive .news-list__date {
        font-size: 0.8rem;
    }

    .news-single {
        padding-top: 7rem;
    }

    .news-single__inner {
        width: min(100% - 2rem, 52rem);
    }

    .news-single__title {
        font-size: 1.75rem;
    }

    .news-single__thumb,
    .news-single__content,
    .news-single__back {
        margin-top: 2rem;
    }

    .contact-banner__content {
        width: calc(100% - 2rem);
    }

    .contact-banner__title {
        font-size: 2.5rem;
    }

    .contact-banner__text {
        margin-top: 0.75rem;
        font-size: 1rem;
    }

    .contact-banner .common-button {
        margin-top: 1.75rem;
    }

    .page-inyoe .site-main {
        padding-top: 0;
    }

    .page-plastikos .site-main {
        padding-top: 0;
    }

    .page-innertide .site-main {
        padding-top: 0;
    }

    .page-fatlab .site-main {
        padding-top: 0;
    }

    .inyoe-hero__inner {
        min-height: auto;
    }

    .plastikos-hero__inner {
        min-height: auto;
    }

    .innertide-hero__inner {
        min-height: auto;
    }

    .fatlab-hero__inner {
        min-height: auto;
    }

    .inyoe-hero__image {
        height: 28rem;
    }

    .plastikos-hero__image {
        height: 28rem;
    }

    .innertide-hero__image {
        height: 28rem;
    }

    .fatlab-hero__image {
        height: 28rem;
    }

    .inyoe-intro__text {
        text-align: left;
    }

    .inyoe-product__header {
        margin-bottom: 2.5rem;
    }

    .inyoe-product__list {
        gap: 4rem;
    }

    .inyoe-product__item,
    .inyoe-product__item--reverse {
        gap: 1rem;
    }

    .inyoe-product__main,
    .inyoe-product__item--reverse .inyoe-product__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .inyoe-product__body,
    .inyoe-product__item--reverse .inyoe-product__body,
    .inyoe-product__item--reverse .inyoe-product__media {
        order: initial;
    }

    .inyoe-product__media img {
        max-height: 18rem;
    }

    .inyoe-product__name {
        font-size: 1.5rem;
    }

    .inyoe-product__lead {
        font-size: 1.25rem;
    }

    .inyoe-product__toggle {
        margin-top: 1.5rem;
    }

    .inyoe-product__plus {
        font-size: 0;
    }

    .page-uptive .site-main {
        padding-top: 0;
    }

    .uptive-hero {
        padding-top: 0;
        padding-bottom: 3.5rem;
    }

    .uptive-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .uptive-hero__copy {
        order: 2;
        padding: 2rem 0 0;
    }

    .uptive-hero__title {
        font-size: 3rem;
    }

    .uptive-hero__visual {
        order: 1;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .uptive-hero__brand {
        right: 1rem;
        bottom: 1rem;
        width: min(24vw, 6rem);
    }

    .uptive-reason__header {
        margin-bottom: 2rem;
    }

    .uptive-reason__title {
        font-size: 2.5rem;
        line-height: 1.5;
    }

    .uptive-reason__list {
        padding-top: 2rem;
    }

    .uptive-reason__item + .uptive-reason__item {
        margin-top: 2rem;
    }

    .uptive-reason__heading {
        font-size: 1.5rem;
    }

    .uptive-reason__image {
        margin-top: 2.5rem;
        width: 100%;
    }

    .uptive-product__header,
    .uptive-flow__header {
        margin-bottom: 2.5rem;
    }

    .uptive-product__grid {
        grid-template-columns: 1fr;
        background-image: none;
    }

    .product-card {
        max-width: none;
        padding: 2rem 1.25rem 2.25rem;
        border-bottom: 1px solid var(--color-border);
    }

    .product-card:nth-child(odd)::after {
        content: none;
    }

    .product-card:nth-child(-n + 2)::before {
        content: none;
    }

    .product-card:last-child {
        border-bottom: 0;
    }

    .product-card__image {
        margin-top: 1.5rem;
    }

    .product-card__title {
        font-size: 1.5rem;
    }

    .product-card__catch,
    .product-card__meta dd,
    .uptive-room__text,
    .uptive-room__feature-body p,
    .uptive-salons__hero-text,
    .uptive-salons__concept-text,
    .uptive-info__text {
        font-size: 1rem;
    }

    .uptive-room__hero {
        padding: 4rem 0 3.5rem;
    }

    .uptive-room__eyebrow {
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .uptive-room__lead,
    .uptive-salons__hero-lead,
    .uptive-salons__concept-lead {
        font-size: 1rem;
    }

    .uptive-room__feature {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0 1.75rem;
    }

    .uptive-room__feature--reverse .uptive-room__feature-label,
    .uptive-room__feature--reverse .uptive-room__feature-body {
        order: initial;
    }

    .uptive-room__feature-label {
        font-size: 1.5rem;
    }

    .uptive-room__feature-title {
        font-size: 1rem;
    }

    .uptive-room__placeholder,
    .uptive-salons__wide-placeholder {
        min-height: 12rem;
        margin-top: 2rem;
        font-size: 1rem;
    }

    .uptive-salons__wide-visual {
        width: 100%;
        margin-top: 2rem;
    }

    .uptive-room__visual {
        margin-top: 2rem;
        aspect-ratio: 16 / 9;
    }

    .uptive-salons__hero img {
        min-height: 24rem;
        height: 24rem;
    }

    .uptive-salons__hero-content {
        width: calc(100% - 2rem);
    }

    .uptive-salons__inner {
        padding-top: 2rem;
    }

    .uptive-salons__concept {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .uptive-salons__concept-placeholder {
        min-height: 10rem;
        font-size: 1rem;
    }

    .uptive-flow__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .uptive-flow__item {
        grid-template-columns: 2.5rem 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .uptive-flow__body {
        font-size: 1rem;
    }

    .uptive-info__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0 1.75rem;
    }

    .uptive-info__title {
        font-size: 2.5rem;
    }

    .company__header {
        margin-bottom: 2rem;
    }

    .company__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company__placeholder {
        min-height: 16rem;
    }

    .company__figure {
        aspect-ratio: 3 / 2;
        min-height: 16rem;
    }

    .company__row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding: 1rem 0;
    }

    .site-footer {
        padding: 2rem 0 1.25rem;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-nav {
        align-items: flex-start;
        width: 100%;
        padding-top: 0;
    }

    .footer-nav__list {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.75rem;
        font-size: 1rem;
    }

    .footer-nav__list--sub {
        margin-top: 0.75rem;
    }

    .site-footer__bottom {
        margin-top: 1.5rem;
    }

    .site-footer__copyright {
        font-size: 1rem;
    }

    .contact-page {
        padding-top: 7rem;
    }

    .contact-page__header {
        margin-bottom: 2.5rem;
    }

    .contact-page__title {
        font-size: 2.5rem;
    }

    .contact-page__lead {
        margin-top: 1rem;
        text-align: left;
    }

    .wpcf7 form {
        gap: 1.5rem;
    }

    .contact-page .wpcf7 .contact-form,
    .contact-page .wpcf7 form {
        gap: 1.5rem;
    }

    .contact-page .wpcf7 .contact-form__label-wrap {
        gap: 0.75rem;
    }

    .contact-page .wpcf7 .contact-form__actions {
        justify-content: stretch;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
        min-width: 0;
    }

    .privacy-page {
        padding-top: 7rem;
    }

    .privacy-page__header {
        margin-bottom: 2.5rem;
    }

    .privacy-page__title {
        font-size: 2.5rem;
    }

    .privacy-page__section + .privacy-page__section {
        margin-top: 2rem;
    }

    .privacy-page__heading {
        font-size: 1.5rem;
    }

    .privacy-page__info-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .thanks-page {
        padding-top: 7rem;
    }

    .thanks__message {
        text-align: left;
    }

    .thanks__link-wrap {
        margin-top: 2rem;
        text-align: left;
    }

    .contact-form {
        gap: 1.5rem;
    }

    .contact-form__label-wrap {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .contact-form__status {
        min-width: 2.5rem;
    }

    .contact-form__field {
        min-height: 3.25rem;
        padding: 0.875rem;
    }

    .contact-form__field--textarea {
        min-height: 10rem;
    }

    .contact-form__checkbox-label {
        align-items: center;
    }

    .contact-form__actions {
        justify-content: stretch;
    }

    .contact-form__submit {
        width: 100%;
        min-width: 0;
    }
}
