@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

:root {
    --main-color-01: #f2f8fa;
    --main-color-02: #7dacb8;
    --main-color-03: #494c4e;
    --main-color-04: #aaaaaa;
    --main-color-05: #eeeeee;
}

#soft {
    font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
    line-height: 1.7;
    letter-spacing: 0.07em;
    color: var(--main-color-03);
}

.soft-heading {
    font-size: 34px;
    color: var(--main-color-02);
    font-weight: 600;
    margin-bottom: 1em;
}

.soft-section {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 10em 5vw;
}

@media screen and (max-width: 768px) {
    .soft-section {
        padding: 5em 8vw;
    }
}

.s-h-o {
    transition: 0.3s;
}

.s-h-o:hover {
    opacity: 0.5;
    transition: 0.3s;
}

/* //////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////// */

.soft-header-bg {
    background-color: #fff;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 2;
}

.soft-header {
    font-size: clamp(9.5px, 1.24vw, 16px);
    max-width: 1400px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    font-weight: bold;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 5vw;
    z-index: 2;
}

.shl {
    height: 100%;
}

.soft-header_logo {
    width: auto;
    height: 100%;
    padding: 1em 0;
}

@media screen and (max-width: 768px) {
    .soft-header_logo {
        padding: 2em 0;
    }
}

.soft-menu-group {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soft-menu {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8em;
}

@media screen and (max-width: 768px) {
    .soft-menu {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        right: -100%;
        flex-direction: column;
        font-size: 15px;
        transition: 0.3s;
        background-color: var(--main-color-01);
    }
}

.soft-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .soft-menu li {
        height: -moz-fit-content;
        height: fit-content;
    }
}

.soft-menu li a {
    height: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .soft-menu-group:has(.soft-hamburger-button.active) .soft-menu {
        transform: translateX(-100%);
        transition: 0.3s;
    }
}

.soft-hamburger-button {
    display: block;
    padding: 0;
    width: 25px;
    height: 15px;
    position: relative;
    background: none;
    border: none;
    text-align: center;
    letter-spacing: 0.1em;
    cursor: pointer;
    outline: none;
}

@media screen and (min-width: 769px) {
    .soft-hamburger-button {
        display: none;
    }
}

.soft-hamburger-button .soft-hamburger-button_bar {
    display: block;
    width: 25px;
    height: 2px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
}

.soft-hamburger-button .soft-hamburger-button_bar1 {
    top: 0;
}

.soft-hamburger-button .soft-hamburger-button_bar2 {
    top: 50%;
}

.soft-hamburger-button .soft-hamburger-button_bar3 {
    top: 100%;
}

.soft-hamburger-button.active .soft-hamburger-button_bar {
    width: 21.5px;
    left: 8px;
}

.soft-hamburger-button.active .soft-hamburger-button_bar1 {
    transform: rotate(0.7853981634rad) translateY(-50%);
    top: 0px;
}

.soft-hamburger-button.active .soft-hamburger-button_bar2 {
    opacity: 0;
}

.soft-hamburger-button.active .soft-hamburger-button_bar3 {
    transform: rotate(-0.7853981634rad) translateY(-50%);
    top: calc(100% - 0px);
}

.soft-hamburger-button {
    color: var(--main-color-03);
}

.soft-hamburger-button .soft-hamburger-button_bar {
    background-color: var(--main-color-03);
}

/* //////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////// */

.softmv {
    position: relative;
    top: 70px;
    width: 100%;
    max-height: calc(100vh - 70px);
    margin-bottom: 70px;
    aspect-ratio: 16 / 9;
}

@media screen and (max-width: 500px) {
    .softmv {
        height: fit-content;
        max-height: initial;
        aspect-ratio: initial;
    }
}

.softmv-swiper {
    width: 100%;
    max-height: 100vh;
}

.softmv-swiper .swiper-wrapper {
    pointer-events: none;
}

.softmv-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.softmv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 500px) {
    .softmv-video {
        object-fit: contain;
    }
}

.softmv-pagination {
    position: absolute;
    left: auto !important;
    right: 0;
    bottom: 0 !important;
    width: fit-content !important;
    height: fit-content;
    margin: 50px;
    z-index: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color-02) !important;
}

.soft-scroll-box {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    z-index: 1;
}

.soft-scroll {
    position: relative;
    width: 200px;
    height: 134px;
}

@media screen and (max-width: 768px) {
    .soft-scroll {
        width: 100px;
    }
}

.soft-scrollbar-text {
    display: inline-block;
    position: absolute;
    top: 0;
    padding: 10px 10px 110px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    left: 50%;
    transform: translateX(-50%);
    color: var(--main-color-04);
}

.soft-scrollbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
}

.soft-scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100px;
    background: var(--main-color-04);
}

.soft-scrollbar::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-color-02);
    animation:
        circlemove 3s ease-in-out infinite,
        cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
    0% {
        bottom: 95px;
    }

    100% {
        bottom: 0px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

.soft-concept-bg {
    background-color: var(--main-color-01);
}

.soft-concept {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

@media screen and (min-width: 767px) {
    .soft-concept {
    align-items: end;
}
}

@media screen and (max-width: 768px) {
    .soft-concept {
        grid-template-columns: initial;
    }
}

.soft-concept-catch {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: var(--main-color-03);
    margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
    .soft-concept-catch {
        font-size: 50px;
    }
}

.soft-concept-text {
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
}

@media screen and (min-width: 767px) {
.soft-concept-visual-box {
    width: 75%;
    margin: 0 auto;
}
}

.soft-concept-visual {
    padding: 3em;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0) scale(1.1);
}

.soft-product-tab {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .soft-product-tab {
        margin-bottom: 40px;
    }
}

.soft-product-tab-btn {
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 999px;
    border: solid 1px var(--main-color-03);
    transition: 0.3s;
}

.soft-product-tab-btn.is-active,
.soft-product-tab-btn:hover {
    color: #fff;
    background: var(--main-color-02);
    border: solid 1px var(--main-color-02);
    transition: 0.3s;
}

.soft-product-tab-panel {
    display: none;
}

.soft-product-tab-panel.is-active {
    display: block;
}

.soft-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5em;
}

@media screen and (max-width: 768px) {
    .soft-product-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 3em;
    }
}

.soft-product-item {
    opacity: 0;
    transform: translateY(40px);
}

.soft-product-item.is-show {
    animation: productFadeUp 1s forwards;
}

@keyframes productFadeUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

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

.soft-product-item:nth-of-type(2n) {
    margin-top: 100px;
}

@media screen and (max-width: 768px) {
    .soft-product-item:nth-of-type(2n) {
        margin-top: 0;
    }
}

.soft-product-name,
.soft-product-copy {
    transition: 0.3s;
}

.soft-product-item:hover .soft-product-name,
.soft-product-item:hover .soft-product-copy {
    color: var(--main-color-02);
    transition: 0.3s;
}

.soft-product-item:hover .soft-product-icon-box {
    opacity: 0.5;
    transition: 0.3s;
}

.soft-product-image {
    position: relative;
    aspect-ratio: 5 /3;
    overflow: hidden;
    background: var(--main-color-01);
    border-radius: 20px;
}

.soft-product-image img {
    height: 100%;
    object-fit: contain;
}

.soft-product-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: 1em;
    line-height: 1;
}

.soft-product-name {
    font-size: 30px;
}

.soft-product-category-list {
    display: flex;
    gap: 0.5em;
}

.soft-product-category {
    color: var(--main-color-04);
    background-color: var(--main-color-05);
    padding: 0.3em 1em;
    border-radius: 999px;
}

.soft-product-color-list {
    display: flex;
    gap: 0.3em;
}

.soft-product-color {
    width: 1em;
    height: 1em;
    border-radius: 999px;
}

.soft-product-icon-box {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.3s;
}

.soft-product-icon {
    --size: 50px;
    --border: 1px;
    --arrow-size: 10px;
    --arrow-width: 1px;

    width: var(--size);
    aspect-ratio: 1;
    border: var(--border) solid var(--main-color-03);
    border-radius: 50%;
    background: none;
    position: relative;
    cursor: pointer;
}

.soft-product-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--arrow-size);
    height: var(--arrow-size);
    border-top: var(--arrow-width) solid var(--main-color-03);
    border-right: var(--arrow-width) solid var(--main-color-03);
    transform: translate(-60%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
    .soft-product-icon {
        display: none;
    }
}

.soft-product-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soft-product-video {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.soft-product-item.is-video-playing .soft-product-video {
    opacity: 1;
}

.soft-footer-bg {
    background-color: var(--main-color-02);
}

.soft-footer {
    display: flex;
    gap: 5em;
    align-items: start;
    color: #fff;
    padding: 5em 5vw;
}

@media screen and (max-width: 768px) {
    .soft-footer {
        gap: 2.5em;
        flex-direction: column;
    }
}

.soft-footer-info {
    width: 100%;
}

.soft-footer-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

@media screen and (max-width: 768px) {
    .soft-footer-menu {
        flex-direction: column;
        align-items: start;
        gap: 2em;
    }
}

.soft-footer-menu-nav {
    display: flex;
    align-items: start;
    gap: 5em;
}

.soft-footer-menu-nav-ul {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

@media screen and (max-width: 768px) {
    .soft-footer-menu-nav-ul {
        gap: 1em;
    }
}

.soft-footer_logo {
    width: 70px;
}

@media screen and (max-width: 768px) {
    .soft-footer_logo {
        width: 50px;
    }
}

.soft-sns {
    display: flex;
    align-items: center;
    gap: 1em;
}

@media screen and (max-width: 768px) {
    .soft-sns {
        flex-wrap: wrap;
    }

    .soft-sns > div {
        width: 100%;
        font-size: 12px;
    }
}

.soft-sns img{
    width: 50px;
}

.company-info {
    display: flex;
    gap: 1.5em;
    margin-top: 4em;
    font-size: 14px;
    opacity: 0.6;
}

@media screen and (max-width: 768px) {
    .company-info {
        gap: 1em;
        flex-direction: column;
        margin-top: 3em;
    }
}

.company-info li {
    text-decoration: underline;
}

@media screen and (min-width: 767px) {
    .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 6px !important;
    }

    .swiper-pagination-bullet {
        width: 20px !important;
        height: 20px !important;
    }
}