@charset "UTF-8";

.fade,
.fade__bg,
.fade__main ._01,
.fade__main ._02 {
    opacity: 0;
    transition-duration: 1250ms;
}

.fade__main ._02 {
    transition-delay: 1000ms;
}

.fade.is-active,
.fade__bg.is-active,
.fade__main.is-active ._01,
.fade__main.is-active ._02 {
    opacity: 1;
}

/* 全体のローディング画面 */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, #4D5A38, #5B6D45);
    /* background: url(../image/hh_bg.png) no-repeat center; */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.5s ease;
}

#preloader.is-active {
    opacity: 0;
}

/* ローダー内の画像ラッパー */
.loader-images {
    position: relative;
    width: calc(500*(100vw / 750));
    height: calc(100*(100vw / 750));
}

/* 全ての画像を重ねる */
.loader-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    opacity: 0;
    /* transition: opacity 2s ease; */
    transform: translate(-50%, -50%);
}

.loader-img:nth-last-child(1) {
    width: 50%;
}

/* 表示されている画像 */
.loader-img.active {
    opacity: 1;
    animation: hero_header_on 4s ease;
}

/* 表示されている画像 */
.loader-img:nth-last-child(1).active {
    opacity: 1;
    animation: hero_header_last 3s ease;
}

@keyframes hero_header_on {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes hero_header_last {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* メイン */
.main {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* MV */
.main__visual {
    display: grid;
    width: 100%;
    height: 100dvh;
    position: relative;
    place-content: center;
}

.main__visual .fix__video {
    width: calc(900*(100vw / 750));
    /* max-width: 750px; */
    height: auto;
    left: 50%;
    transform: translate(-50%, 0);
    position: fixed;
    top: 0;
    z-index: -1;
}

.main__visual--text {
    font-size: calc(64*(100vw/750));
    text-align: center;
    color: #fff;
    line-height: 1.5;
    padding-left: calc(50*(100vw / 750));
}

.main__visual .bar {
    width: 1px;
    height: calc(210*(100vw/750));
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background-color: #fff;
    animation: bar_anime 2s linear infinite;
}

@keyframes bar_anime {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/* NEWS */
.news {
    width: 100%;
    position: relative;
    padding-block: calc(300*(100vw/750)) calc(250*(100vw/750));
    z-index: 0;
}

.news::before {
    content: "";
    background-image: url("../image/news__bg--sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(2500*(100vw/750));
    z-index: -1;
}

.news .title {
    color: #fff;
    text-align: center;
    font-size: calc(100*(100vw/750));
    margin-bottom: calc(50*(100vw/750));
}

.news .sub__title {
    width: calc(470*(100vw/750));
    margin-inline: auto;
    color: #fff;
    font-size: calc(60*(100vw/750));
    margin-bottom: calc(20*(100vw/750));
    position: relative;
}

.news .news__buttons {
    display: grid;
    width: calc(675*(100vw/750));
    margin-inline: auto;
    color: #fff;
    font-size: calc(48*(100vw/750));
    margin-bottom: calc(50*(100vw/750));
    align-items: center;
    justify-content: space-between;
    grid-template-columns: repeat(3, calc(212*(100vw/750)));
    text-align: center;
}

.news .news__buttons .button {
    height: calc(90*(100vw/750));
    border: 1px solid #fff;
    transition-duration: 500ms;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news .news__buttons .button.is-active {
    background-color: #E0E0D0;
    color: #2E2E2E;
    border: none;
}

.news .news__buttons .button .plus {
    width: calc(20*(100vw/750));
    height: calc(20*(100vw/750));
    position: relative;
}

.news .news__buttons .button .plus:before,
.news .news__buttons .button .plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(14*(100vw/750));
    height: 1px;
    background-color: #fff;
    transition-duration: 500ms;
}

.news .news__buttons .button.is-active .plus:before,
.news .news__buttons .button.is-active .plus:after{
    background-color: #2E2E2E;
}

.news .news__buttons .button .plus:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.news .business .sub__title::after {
    width: calc(255*(100vw/750));
}

.news .artist .sub__title::after {
    width: calc(305*(100vw/750));
}

.news .sub__title::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #fff;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.news .business {
    margin-bottom: calc(55*(100vw/750));
}

.news .artist {
    margin-bottom: calc(55*(100vw/750));
}

.news__img {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: calc(30*(100vw/750));
}

.news__text {
    color: #fff;
    font-size: calc(32*(100vw/750));
    letter-spacing: 0.1em;
    line-height: 1.75;
}

.news__text .news__date {
    padding-right: calc(10*(100vw/750));
    letter-spacing: 0.12em;
}

.news__text .news__category {
    padding-left: calc(10*(100vw/750));
    letter-spacing: 0.12em;
}

.news .view_all a {
    display: flex;
    width: calc(330*(100vw/750));
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
}

.news .view_all__text {
    font-size: calc(24*(100vw/750));
    letter-spacing: 0.1em;
    color: #fff;
}

.news .view_all__button {
    display: grid;
    place-content: center;
    position: relative;
    width: calc(180*(100vw/750));
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: transparent;
}

.news .view_all__button::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    border: solid 1px #fff;
    transition-duration: 750ms;
}

.news .view_all a:hover .view_all__button::before {
    scale: 1.2;
    border-color: rgba(255, 255, 255, 0);
}

.news .view_all__button .arrow {
    color: #fff;
    line-height: 1;
    position: relative;
    width: calc(40*(100vw/750));
    height: 1px;
    background: #fff;
    z-index: 1;
}

.news .view_all a:hover .view_all__button .arrow {
    background-color: #000;
}

.news .view_all__button .arrow::before {
    content: '';
    width: calc(20*(100vw / 750));
    height: calc(20*(100vw / 750));
    border: 1px solid #fff;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    right: calc(-3*(100vw / 750));
    top: 0;
    z-index: 0;
}

.news .view_all a:hover .view_all__button .arrow::before {
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
}

.news .view_all__button::after {
    content: '';
    width: 0;
    aspect-ratio: 1;
    background-color: #fff;
    transition-duration: 750ms;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.news .view_all a:hover .view_all__button::after {
    width: calc(150*(100vw/750));
    opacity: 1;
}

/* swiper TOP */
.news .business__swiper,
.news .artist__swiper {
    overflow: hidden;
}

.news .news__swiper {
    overflow: hidden;
    margin-bottom: calc(100*(100vw/750));
}

#News .swiper-slide {
    transform: scale(0.8) translateY(calc(15*(100vw/750)));
    transition-duration: 800ms;
    width: calc(585*(100vw/750));
    margin-inline: auto;
}

#News .swiper-slide-active {
    transform: scale(1);
}

/* swiper TOP */
/* NEWS */


/* ABOUT */
.about {
    width: 100%;
    position: relative;
    padding-block: calc(150*(100vw/750)) 0;
    padding-left: calc(75*(100vw/750));
    background-color: #E1E1D1;
    letter-spacing: 0.1em;
    z-index: 1;
}

.about::before {
    content: "";
    width: 100%;
    height: calc(3000*(100vw/750));
    background-image: url("../image/about__bg__sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: calc(-120*(100vw/750));
    z-index: -1;
}

.about .title {
    font-size: calc(100*(100vw/750));
    margin-bottom: calc(40*(100vw/750));
    width: calc(560*(100vw/750));
}

.about .sub_title {
    font-size: calc(38*(100vw/750));
    line-height: 1.75;
    margin-bottom: calc(70*(100vw/750));
    width: calc(605*(100vw/750));
}

.about .text {
    font-size: calc(24*(100vw / 750));
    line-height: 1.75;
    margin-bottom: calc(120*(100vw / 750));
    width: calc(620*(100vw / 750));
    letter-spacing: 0.06em;
}

.about__img {
    width: calc(675*(100vw/750));
    margin-left: auto;
}

/* ABOUT */

/* Projects */
.projects {
    width: 100%;
    background: linear-gradient(180deg, #E1E1D1, #EAEAE7);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    margin-top: calc(800*(100vw/750));
}

/* contents */
.projects .contents {
    display: grid;
    place-content: center;
    width: 100%;
    height: 100dvh;
    position: relative;
    color: #fff;
    padding-inline: calc(30*(100vw/750));
}

.projects .contents::before {
    content: "";
    width: 100%;
    height: 100dvh;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    background-position: center top;
    background-color: rgba(0, 0, 0, 0.3);
    /* 透明度30%の黒を重ねる */
    background-blend-mode: darken;
    /* または multiply も可 */
}

.projects .contents.is-active::before {
    opacity: 1;
}

/* Business */
.projects .business::before {
    background-image: url(../image/business__background--sp.png);
}

/* Artist */
.projects .artist::before {
    background-image: url(../image/artists__background--sp.png);
}

.projects .contents .title {
    position: relative;
    font-size: calc(100*(100vw/750));
    margin-bottom: calc(45*(100vw/750));
    text-shadow: 0 0 calc(6*(100vw/750)) rgba(0, 0, 0, 0.6);
}

.projects .contents .title .num {
    font-size: calc(80*(100vw/750));
}

.projects .contents .text {
    position: relative;
    font-size: calc(26*(100vw/750));
    line-height: 1.75;
    margin-bottom: calc(70*(100vw/750));
    text-shadow: 0 0 calc(6*(100vw/750)) rgba(0, 0, 0, 0.6);
}

.projects .contents .button {
    display: grid;
    place-content: center;
    position: relative;
    width: calc(180*(100vw/750));
    margin-left: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: transparent;
    z-index: 0;
}

.projects .contents .button::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    border: solid 1px #fff;
    transition-duration: 750ms;
}

.projects .contents .button:hover::before {
    scale: 1.2;
    border-color: rgba(255, 255, 255, 0);
}

.projects .contents .button .arrow {
    color: #fff;
    line-height: 1;
    position: relative;
    width: calc(40*(100vw/750));
    height: 1px;
    background: #fff;
    z-index: 0;
}

.projects .contents .button:hover .arrow {
    background-color: #000;
}

.projects .contents .button .arrow::before {
    content: '';
    width: calc(20*(100vw / 750));
    height: calc(20*(100vw / 750));
    border: 1px solid #fff;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    right: calc(-3*(100vw / 750));
    top: 0;
    z-index: 0;
}

.projects .contents .button:hover .arrow::before {
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
}

.projects .contents .button::after {
    content: '';
    width: 0;
    aspect-ratio: 1;
    background-color: #fff;
    transition-duration: 750ms;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.projects .contents .button:hover::after {
    width: calc(150*(100vw/750));
    opacity: 1;
}

/* Projects */

/* Concept */
.concept {
    position: relative;
    background-color: #EAEAE7;
    padding-block: calc(285*(100vw/750));
    text-align: center;
    letter-spacing: 0.1em;
}

.concept .title {
    font-size: calc(100*(100vw/750));
    margin-bottom: calc(70*(100vw/750));
}

.concept .sub_title {
    font-size: calc(36*(100vw/750));
    margin-bottom: calc(60*(100vw/750));
    line-height: 1.5;
}

.concept .text {
    font-size: calc(24*(100vw/750));
    margin-bottom: calc(150*(100vw/750));
    line-height: 2;
}

.concept .side-slide_area {
    width: 100%;
    /* height: calc(4700*(100vw/750)); */
    position: relative;
}

.concept .side-slide_area .logo {
    width: calc(387*(100vw/750));
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.sticky_wrap {
    display: grid;
    position: relative;
    top: 0;
    overflow: hidden;
}

.concept .side-slide_area .image__list {
    width: fit-content;
    height: calc(970*(100vw/750));
    transition-timing-function: linear;
    animation: scroll-left 50000ms linear infinite;
    display: flex;
}

/* アニメーション */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.concept .side-slide_area .image__list--contents {
    display: grid;
    height: 100%;
    align-items: center;
}

.concept .side-slide_area .image__list--contents img,
.concept .side-slide_area .image__list--contents video {
    border-radius: calc(10*(100vw/750));
}

.concept .side-slide_area .image__list--contents._01 {
    align-items: center;
    transform: translate(0, calc(-50*(100vw/750)));
    width: calc(214*(100vw/750));
    margin-right: calc(80 * (100vw / 750));
}

.concept .side-slide_area .image__list--contents._02 {
    align-items: flex-start;
    width: calc(522*(100vw/750));
    margin-right: calc(80 * (100vw / 750));
}

.concept .side-slide_area .image__list--contents._03 {
    align-items: center;
    transform: translate(0, calc(100*(100vw/750)));
    width: calc(347*(100vw/750));
    margin-right: calc(80 * (100vw / 750));
}

.concept .side-slide_area .image__list--contents._04 {
    align-items: flex-start;
    transform: translate(0, calc(175*(100vw/750)));
    width: calc(214*(100vw/750));
    margin-right: calc(160 * (100vw / 750));
}

.concept .side-slide_area .image__list--contents._05 {
    align-items: flex-end;
    width: calc(522*(100vw/750));
}

.concept .side-slide_area .image__list--contents._06 {
    align-items: center;
    transform: translate(calc(-50*(100vw/750)), calc(-100*(100vw/750)));
    width: calc(347*(100vw/750));
    margin-right: calc(50 * (100vw / 750));
}

/* Concept */

/* Company */
.company {
    position: relative;
    background-image: url("https://raw.githubusercontent.com/HatakeyamaKazuma/ogurism/refs/heads/main/image/comapny__bg.png");
    background-size: cover;
    background-position: top;
    padding-block: calc(235*(100vw/750));
}

.company .text__area {
    width: calc(600*(100vw/750));
    margin-inline: auto;
}

.company .title {
    font-size: calc(100*(100vw/750));
    margin-bottom: calc(115*(100vw/750));
    text-align: center;
    color: #fff;
}

.company .about__list {
    border-block: solid 1px #fff;
    color: #fff;
}

.company .about__list li {
    border-bottom: solid 1px #fff;
    padding-block: calc(45*(100vw/750));
    font-size: calc(28*(100vw/750));
    line-height: 1.75;
    letter-spacing: 0.06em;
}

.company .about__list li:nth-last-child(1) {
    border-bottom: none;
}

.company .about__list li .tag {
    font-weight: 800;
}

.company .about__list li .text {
    font-weight: lighter;
}

.company .Image__area {
    display: none;
}

/* Concept */

/* メイン */

/* PCサイズ */
@media screen and (min-width: 800px) {

    /* ローダー内の画像ラッパー */
    .loader-images {
        max-width: 500px;
        max-height: 100px;
    }

    /* メイン */
    /* MV */
    .main__visual .fix__video {
        min-width: 100vw;
        width: fit-content;
        min-height: 100dvh;
    }

    .main__visual--text {
        font-size: 64px;
        line-height: 1.5;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main__visual .bar {
        height: 210px;
    }

    /* MV */

    /* NEWS */
    .news {
        padding-block: 300px 200px;
    }

    .news::before {
        background-image: url("../image/news__bg--pc.png");
        width: 100%;
        height: 2500px;
        background-size: cover;
        background-position-x: center;
    }

    .news .title {
        font-size: 80px;
        margin-bottom: calc(95*(100vw/1920));
    }

    .news .pc__flex {
        display: grid;
        justify-content: center;
        margin-bottom: 70px;
    }

    .news .pc__flex .swiper-wrapper {
        display: flex;
        gap: calc(40*(100vw / 1920));
    }

    .news .sub__title {
        width: calc(750*(100vw/1920));
        font-size: 40px;
        margin-bottom: calc(20*(100vw/1920));
    }

    .news .news__buttons {
        width: calc(1536*(100vw/1920));
        font-size: 32px;
        margin-bottom: calc(40*(100vw/1920));
        grid-template-columns: repeat(3, calc(500*(100vw/1920)));
    }

    .news .news__buttons .button {
        height: auto;
        padding-block: 10px;
    }

    .news .news__buttons .button .plus {
        width: 20px;
        height: 20px;
    }

    .news .news__buttons .button .plus:before,
    .news .news__buttons .button .plus:after {
        width: 10px;
    }

    .news .business .sub__title::after {
        width: calc(578*(100vw/1920));
    }

    .news .artist .sub__title::after {
        width: calc(622*(100vw/1920));
    }

    .news .sub__title::after {
        width: calc(578*(100vw/1920));
    }

    .news .business {
        margin-bottom: 0;
    }

    .news .artist {
        margin-bottom: 0;
    }

    .news__img {
        margin-bottom: calc(30*(100vw/1920));
    }

    .news__text {
        font-size: 16px;
    }

    .news__text .news__date {
        padding-right: 10px;
    }

    .news__text .news__category {
        padding-left: 10px;
    }

    .news .view_all a {
        width: 200px;
    }

    .news .view_all__text {
        font-size: 16px;
    }

    .news .view_all__button {
        width: 100px;
    }

    .news .view_all__button .arrow {
        width: 23px;
        max-width: 23px;
    }

    .news .view_all__button .arrow::before {
        width: 10px;
        height: 10px;
        right: -2px;
    }

    .news .view_all a:hover .view_all__button::after {
        width: 80px;
    }

    /* swiper TOP */
    .news .swiper-wrapper {
        justify-content: flex-start;
    }

    .news .business__swiper,
    .news .artist__swiper {
        overflow: hidden;
        width: calc(750*(100vw/1920));
    }

    .news .news__swiper {
        overflow: hidden;
        width: calc(1536*(100vw/1920));
        margin-bottom: 0;
    }

    #News .swiper-slide {
        max-width: calc(354*(100vw/1920));
        transform: scale(1);
        margin-inline: unset;
    }

    #News .swiper-slide:nth-child(n + 5) {
        display: none;
    }

    /* swiper TOP */
    /* NEWS */


    /* ABOUT */
    .about {
        display: grid;
        width: calc(1344*(100vw/1920));
        min-width: 700px;
        /* height: calc(754*(100vw/1920)); */
        margin-inline: auto;
        margin-bottom: calc(200*(100vw/1920));
        padding-block: 0;
        padding-left: 0;
        background-color: transparent;
        align-content: center;
        position: relative;
        color: #fff;
    }

    .about::before {
        display: none;
    }

    .about .title {
        font-size: 80px;
        margin-bottom: calc(60*(100vw/1920));
        width: fit-content;
    }

    .about .sub_title {
        font-size: 20px;
        margin-bottom: calc(60*(100vw/1920));
        width: fit-content;
    }

    .about .text {
        font-size: 16px;
        margin-bottom: 0;
        width: fit-content;
        line-height: 2.5;
        letter-spacing: 0.1em;
        width: calc(850 * (100vw / 1920));
        min-width: 440px;
    }

    .about__img {
        position: absolute;
        width: calc(268*(100vw/1920));
        max-width: 268px;
        min-width: 200px;
        top: 0;
        right: 0;
    }

    /* ABOUT */

    /* Projects */
    .projects {
        background-color: #EAEAE7;
        background: url('../image/projects__bg--pc.png') no-repeat center top;
        background-size: cover;
        padding-block: 380px 400px;
        margin-top: 0;
    }

    .projects .title {
        font-size: 80px;
        text-align: center;
        margin-bottom: calc(40*(100vw/1920));
    }

    .projects__flex {
        width: calc(1728*(100vw/1920));
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(2, calc(820*(100vw/1920)));
        /* grid-template-rows: calc(582*(100vw/1920)); */
        justify-content: space-between;
    }

    /* contents */
    .projects .contents {
        display: block;
        width: 100%;
        min-height: 462px;
        height: inherit;
        padding: calc(40 * (100vw / 1920)) calc(40 * (100vw / 1920)) 150px;
        position: relative;
        background-size: cover;
        place-content: flex-start;
    }

    .projects .contents .title {
        text-align: left;
    }

    .projects .contents::before {
        display: none;
    }

    .projects .contents.is-active::before {
        opacity: 1;
    }

    /* Business */
    .projects .business {
        background-image: url(../image/business__background--pc.png);

    }

    /* Artist */
    .projects .artist {
        background-image: url(../image/artists__background--pc.png);
    }

    .projects .contents .title {
        position: relative;
        font-size: 80px;
        margin-bottom: calc(30*(100vw/1920));
    }

    .projects .contents .title .num {
        display: none;
    }

    .projects .contents .text {
        font-size: 16px;
        margin-bottom: auto;
    }

    .projects .contents .button {
        width: 100px;
        position: absolute;
        right: 40px;
        bottom: 40px;
    }

    .projects .contents .button .arrow {
        width: 23px;
    }

    .projects .contents .button .arrow::before {
        width: 10px;
        height: 10px;
        right: -2px;
    }

    .projects .contents .button:hover::after {
        width: 80px;
        opacity: 1;
    }

    /* Projects */

    /* Concept */
    .concept {
        padding-block: calc(200*(100vw/1920));
        z-index: 1;
    }

    .concept::before {
        content: "";
        position: absolute;
        background-image: url(../image/concept__bg--pc.png);
        background-size: cover;
        background-position: top center;
        width: 100%;
        height: calc(2000*(100vw/1920));
        left: 0;
        top: -200px;
        z-index: -1;
    }

    .concept .title {
        font-size: 80px;
        margin-bottom: calc(70*(100vw/1920));
    }

    .concept .sub_title {
        font-size: 20px;
        margin-bottom: calc(60*(100vw/1920));
    }

    .concept .text {
        font-size: 16px;
        margin-bottom: calc(300*(100vw/1920));
    }

    .concept .side-slide_area {
        /* height: calc(4000*(100vw/1920)); */
    }

    .concept .side-slide_area .logo {
        width: calc(636*(100vw/1920));
    }

    .sticky_wrap {
        /* height: 100vh; */
        /* padding-bottom: calc(100*(100vw/1920)); */
    }

    .concept .side-slide_area .image__list {
        height: calc(1000*(100vw/1920));
        /* gap: calc(80*(100vw/1920)); */
        /* grid-template-columns: 0 calc(214*(100vw/1920)) calc(522*(100vw/1920)) calc(347*(100vw/1920)) calc(214*(100vw/1920)) calc(522*(100vw/1920)) calc(347*(100vw/1920)); */
    }

    .concept .side-slide_area .image__list--contents img,
    .concept .side-slide_area .image__list--contents video {
        border-radius: 10px;
    }

    .concept .side-slide_area .image__list--contents._01 {
        align-items: center;
        transform: translate(0, calc(-50*(100vw/1920)));
        width: calc(214*(100vw/1920));
        margin-right: calc(80 * (100vw / 1920));
    }

    .concept .side-slide_area .image__list--contents._02 {
        align-items: flex-start;
        width: calc(522*(100vw/1920));
        margin-right: calc(80 * (100vw / 1920));
    }

    .concept .side-slide_area .image__list--contents._03 {
        align-items: center;
        transform: translate(0, calc(100 * (100vw / 1920)));
        width: calc(347*(100vw/1920));
        margin-right: calc(80 * (100vw / 1920));
    }

    .concept .side-slide_area .image__list--contents._04 {
        align-items: flex-start;
        transform: translate(0, calc(175 * (100vw / 1920)));
        width: calc(214*(100vw/1920));
        margin-right: calc(160 * (100vw / 1920));
    }

    .concept .side-slide_area .image__list--contents._05 {
        align-items: flex-end;
        width: calc(522*(100vw/1920));
    }

    .concept .side-slide_area .image__list--contents._06 {
        align-items: center;
        transform: translate(calc(-110 * (100vw / 1920)), calc(-100 * (100vw / 1920)));
        width: calc(347*(100vw/1920));
        margin-right: calc(50 * (100vw / 1920));
    }

    /* Concept */

    /* Company */
    .company {
        position: relative;
        background-image: none;
        background-color: #EAEAE7;
        padding-block: calc(235*(100vw/1920));
    }

    .company__wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: calc(1632*(100vw/1920));
        max-width: 1632px;
        min-width: 700px;
        margin-inline: auto;
    }

    .company .text__area {
        width: calc(620*(100vw/1920));
        max-width: 620px;
        margin-inline: unset;
    }

    .company .title {
        font-size: 80px;
        margin-bottom: calc(78*(100vw/1920));
        text-align: left;
        color: #000;
    }

    .company .about__list {
        border-block: solid 1px #000;
        color: #000;
    }

    .company .about__list li {
        border-bottom: solid 1px #000;
        padding-block: calc(30 * (100vw / 1920));
        font-size: 16px;
        display: flex;
        gap: 20px;
    }

    .company .about__list li .tag {
        width: 150px;
    }

    .company .about__list li .text {
        width: calc(450 * (100vw / 1920));
        max-width: 450px;
    }

    .company .Image__area {
        display: block;
        width: calc(785*(100vw/1920));
        max-width: 785px;
        min-width: 370px;
    }

    /* Concept */
    /* メイン */
}