@charset "utf-8";

.fv {
    height: 100svh;
    padding-top: 72px;
    position: relative;
}

.fv .fv-text {
    position: absolute;
    right: 18%;
    top: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
    writing-mode: vertical-rl;
    z-index: 10;
}

.fv .fv-text .column {
    display: flex;
    padding: 16px 10px;
    background-color: #FFF;
}

.fv .fv-text .text {
    background-color: #FFF;
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
    letter-spacing: 0.6em;
    color: #000;
    padding: 16px 10px;
}

.fv .fv-text .column .text {
    padding: 0;
    background-color: transparent;
}

.fv .fv-text .text br {
    display: none;
}

.fv .fv-swiper {
    width: 100%;
    height: 100%;
}

.fv .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-title {
    display: flex;
    gap: calc(48/1920*100vw);
    align-items: flex-end;
}

.sec-title .ttl-en {
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(0.438rem, 0.301rem + 0.58vw, 1rem);
    line-height: calc(23/16);
    color: #000;
    padding-top: 32px;
    position: relative;
}

.sec-title .ttl-en::before {
    content: "";
    background: url(/system_panel/uploads/images/20260219054859108563.svg) no-repeat center/contain;
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(3rem, 2.272rem + 3.11vw, 6rem);
    height: clamp(1.5rem, 1.136rem + 1.55vw, 3rem);
}

.sec-title .ttl-ja {
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
    letter-spacing: 0.2em;
    line-height: calc(57/40);
    text-align: left;
    color: #000;
}

.t_about {
    overflow-x: hidden;
    overflow-y: hidden;
}



.t_about .inner {
    padding: 296px 0 160px;
    display: grid;
    grid-template-columns: fit-content(785px) 1fr;
    align-items: flex-end;
}

.t_about .sec-title {
    margin-bottom: 70px;
}

.t_about .sec-img {
    position: relative;
    width: 255px;
    width: calc(255/1920*100vw);
    height: 100px;
    height: calc(100/1920*100vw);
    margin-left: auto;
    margin-right: calc(212/1920*100vw);
    margin-bottom: 179px;
    margin-bottom: calc(179/1920*100vw);

}

.t_about .sec-img::before {
    content: "";
    position: absolute;
    bottom: -340px;
    bottom: calc(-340/1920*100vw);
    left: -830px;
    left: calc(-830/1920*100vw);
    background: url(/system_panel/uploads/images/20260219053150635690.png) no-repeat top/contain;
    width: 1832px;
    width: calc(1832/1920*100vw);
    height: 1011px;
    height: calc(1011/1920*100vw);
    z-index: -1;
}

.t_about .sec-img .line {
    position: absolute;
    width: 48px;
    width: calc(48/1920*100vw);
    height: 77px;
    height: calc(77/1920*100vw);
    left: 6px;
    left: calc(6/1920*100vw);
    bottom: 6px;
    bottom: calc(6/1920*100vw);
}

.t_about .sec-img .line::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: #555;
    transform: skewX(-20deg);
    transform-origin: bottom;
    transition: height 0.5s ease-out 0s;
}

.t_about .sec-img .line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 29px;
    left: calc(29/1920*100vw);
    width: 0;
    height: 2px;
    background: #555;
    transform-origin: left;
    transition: width 0.3s ease-out 0.5s;
}

.t_about.is-active .line::before {
    height: 100%;
}

.t_about.is-active .line::after {
    width: 20px;
    width: calc(20/1920*100vw);
}



.t_about .sec-img .logo {
    max-width: 199px;
    max-width: calc(199/1920*100vw);
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateY(30px);
    animation-fill-mode: forwards !important;
}

.t_about.is-active .logo {
    animation-delay: 0s !important;
    /* JS側で待機済みなので0sにする */
    animation-duration: 0.4s !important;
}

.t_about .sec-text {
    margin-left: calc(84/1920*100vw);
}

.t_about .sec-text .text {
    margin-left: calc(105/1920*100vw);
}

.t_about .catch {
    margin: 40px 0 48px;
}

.t_about .catch p {
    font-family: var(--eng);
    font-weight: 500;
    font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
    line-height: calc(40/18);
    color: #000;
    text-decoration: underline;
    text-decoration-color: #B4B4B4;
    text-underline-offset: 7px;
    word-break: auto-phrase;
}

.infinite-slider {
    overflow: hidden;
    width: 100%;
    height: 474px;
}

.infinite-slider .slider-inner {
    display: flex;
    width: fit-content;
    gap: 40px;
    height: 100%;
    animation: loop-slide 20s linear infinite;
}

.infinite-slider .slide-item {
    flex-shrink: 0;
}

.infinite-slider .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-87%);
    }
}

.t_service .inner {
    padding: 160px 0;
}

.t_service .sec-intro {
    display: grid;
    grid-template-columns: fit-content(calc(680/1920*100vw)) fit-content(calc(739/1920*100vw));
    grid-template-areas: "title img"
        "content img";
    gap: 0 calc(129/1920*100vw);
    grid-template-rows: auto 1fr;
    margin-bottom: 133px;
}

.t_service .sec-text {
    margin-left: calc(94/1920*100vw);
    margin-bottom: 75px;
}

.t_service .sec-img {
    margin-top: 26px;
    grid-area: img;
}

.t_service .img-wrap {
    position: relative;
}


.t_service .sec-img .items {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.t_service .sec-img .items img {
    width: auto;
    height: calc(67/1920*100vw);
}

.t_service .sec-img .items .item01 {
    position: absolute;
    top: calc(-26/1920*100vw);
    left: calc(329/1920*100vw);
}

.t_service .sec-img .items .item02 {
    position: absolute;
    top: calc(108/1920*100vw);
    left: calc(102/1920*100vw);
}

.t_service .sec-img .items .item03 {
    position: absolute;
    top: calc(183/1920*100vw);
    left: calc(297/1920*100vw);
}

.t_service .sec-img .items .item04 {
    position: absolute;
    right: calc(-84/1920*100vw);
    top: calc(77/1920*100vw);
}

.t_service .sec-img .items .item05 {
    position: absolute;
    right: calc(-11/1920*100vw);
    top: calc(232/1920*100vw);
}

.t_service .sec-img .items .item06 {
    position: absolute;
    left: calc(96/1920*100vw);
    bottom: calc(116/1920*100vw);
}

.t_service .sec-img .items .item07 {
    position: absolute;
    bottom: calc(57/1920*100vw);
    right: calc(273/1920*100vw);
}

.t_service .sec-title {
    margin-bottom: 70px;
    grid-area: title;
    margin-left: calc(84/1920*100vw);
}

.t_service .sec-intro .text {
    margin-left: calc(200 / 1920 * 100vw);
    grid-area: content;
}

.t_service .morebtn {
    margin-top: 64px;
    max-width: 269px;
}

.t_service .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 0 10%;
}

.t_service .list .item {
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
}

.t_service .list .item .img {
    height: 240px;

    overflow: hidden;
}

.t_service .list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default);
}

.t_service .list .item:hover .img img {
    transform: scale(1.2);
}

.t_service .list .item .text {
    padding: 28px 45px 32px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: center;
}

.t_service .list .item .box-ttl {
    font-family: var(--eng);
    font-weight: 500;
    font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
    letter-spacing: 0.2em;
    line-height: calc(29/20);
    text-align: center;
    color: #000;
}

.t_service .list .item .desc p {
    font-size: clamp(0.813rem, 0.797rem + 0.06vw, 0.875rem);
    text-align: center;
}

.t_service .list .item .arrow {
    width: 93px;
}

.t_service .list .item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.t_service .img-wrap>img,
.t_service .items>div {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.t_service .img-wrap>img.is-visible,
.t_service .items>div.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.t_case {
    overflow: hidden;
}

.t_case .sec-title {
    justify-content: center;
    margin-bottom: 40px;
}



.t_case .case-slider {
    margin-bottom: 40px;

}

.t_case .case-slider .tab-list {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.t_case .case-slider .js-tab-item {
    font-family: var(--eng);
    font-weight: 500;
    font-size: clamp(0.813rem, 0.737rem + 0.32vw, 1.125rem);
    line-height: clamp(2rem, 1.848rem + 0.65vw, 2.625rem);
    text-align: center;
    color: #000;
    background-color: #EDEDED;
    border-radius: 50px;
    padding: 0 24px;
    cursor: pointer;
    display: flex;
    gap: 20px;
    align-items: center;
}

.t_case .case-slider .js-tab-item .icon::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 12px solid #000000;
    border-bottom: 0;
}

.t_case .case-slider .js-tab-item.is-active {
    background: #fff;
    border: 1px solid #000;
}

.t_case .case-slider .js-tab-content {
    display: none;
}

.t_case .case-slider .js-tab-content.is-active {
    display: block;
}

.t_case .case-swiper {
    overflow: visible;
}

.t_case .case-slider .swiper-slide {
    margin: 10px 0;
    background: #fff;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.31));
}

.t_case .case-slider .swiper-slide .box-inner {
    padding: 42px 47px 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.t_case .case-slider .swiper-slide .box-inner .top {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 23px;

}

.t_case .case-slider .swiper-slide .box-inner .top .img {
    max-width: 490px;
    width: 100%;
}

.t_case .case-slider .swiper-slide .box-inner .top .text .catch {
    font-family: var(--eng);
    font-weight: 500;
    font-size: clamp(0.813rem, 0.767rem + 0.19vw, 1rem);
    line-height: 2;
    color: #000;
    margin-bottom: 20px;
}

.t_case .case-slider .swiper-slide .box-inner .top .text .taglist {
    display: flex;
    gap: 21px;
    padding-bottom: 20px;
    border-bottom: 1px solid #707070;
    margin-bottom: 20px;
}

.t_case .case-slider .swiper-slide .box-inner .top .text .taglist p {
    font-family: var(--eng);
    font-weight: 500;
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    letter-spacing: 0.2em;
    line-height: clamp(1.938rem, 1.846rem + 0.39vw, 2.313rem);
    text-align: center;
    padding: 0 16px;
    color: #000;
    background: #fff;
    border: 1px solid #707070;
}

.t_case .case-slider .swiper-slide .box-inner .bottom .box-ttl {
    font-family: var(--eng);
    font-weight: 500;
    font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
    letter-spacing: 0.2em;
    color: #000;
    margin-bottom: 13px;
}

.t_case .case-slider .swiper-slide .box-inner .bottom .voice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.t_case .case-slider .swiper-slide .box-inner .bottom .voice .item {
    background: #f5f5f5;
    padding: 20px 15px;
}

.t_case .case-slider .swiper-slide .box-inner .bottom .voice .item p {
    font-family: var(--ja);
    font-weight: 400;
    font-size: clamp(0.875rem, 0.86rem + 0.06vw, 0.938rem);
    line-height: 2;
    color: #000;
    word-break: auto-phrase;
}

.t_case .morebtn {
    margin: 0 auto;
}

.t_case .more-btn {
    display: none;
}

.t_insta .inner {
    padding: 120px 0 150px;
}

.t_insta .sec-title {
    margin-bottom: 16px;
    gap: 32px;
}

.t_insta .sec-title .title {
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
    color: #000;
}

.t_insta .desc {
    margin-bottom: 32px;
}

.t_insta .webgene-blog {
    display: grid;
    grid-template-columns: repeat(5.1fr);

}

.t_insta .webgene-blog .webgene-item-main-image,
.t_insta .webgene-blog video {
    aspect-ratio: 1/1;
    width: 100%;
}

.t_insta .webgene-blog .py-3 {
    padding: 0 !important;
}

.t_insta .webgene-blog .imgBx01 {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

.t_partners {
    position: relative;
    display: flex;
    gap: calc(224/1920*100vw);
    z-index: 5;
}

.t_partners::after {
    content: "";
    width: calc(1297/1920*100vw);
    height: 280px;
    position: absolute;
    bottom: -74px;
    right: 0;
    background-color: #F7F7F7;
    z-index: -1;
}

.t_partners .img {
    max-width: calc(906/1920*100vw);
    width: 100%;
    margin-top: 32px;
}

.t_partners .text {
    width: fit-content;
}

.t_partners .sec-title {
    padding: 32px 89px;
    position: relative;
    margin-bottom: 20px;
}

.t_partners .sec-title::before {
    content: "";
    background: url(/system_panel/uploads/images/20260220045957140271.svg) no-repeat top/contain;
    width: 69px;
    height: 53px;
    position: absolute;
    top: 0;
    left: 0;
}

.t_partners .sec-title::after {
    content: "";
    background: url(/system_panel/uploads/images/20260220045957287206.svg) no-repeat top/contain;
    width: 69px;
    height: 53px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.t_partners .sec-title h2 {
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(1.063rem, 1.017rem + 0.19vw, 1.25rem);
    line-height: calc(43/20);
    text-align: center;
    color: #000;
}

.t_partners .desc {
    margin-bottom: 40px;
}

.t_partners .desc p {
    font-size: 14px;
    line-height: calc(22/14);
    text-align: center;
}

.t_partners .morebtn {
    margin: 0 auto;
}

.t_company {
    border-bottom: 1px solid #9d9d9d;
    overflow-x: hidden;
}

.t_company .inner-6 {
    padding: 234px 0 160px;
}

.t_company .sec-intro {
    display: grid;
    grid-template-columns: fit-content(calc(864 / 1920 * 100vw)) 1fr;
    grid-template-areas:
        "title title"
        "img text";
    gap: 0 calc(119 / 1920 * 100vw);
    grid-template-rows: auto 1fr;
    margin-bottom: 120px;
}

.t_company .sec-intro .sec-title {
    grid-area: title;
    margin-bottom: 45px;
}

.t_company .sec-intro .sec-img {
    grid-area: img;
    position: relative;
    height: 627px;
}

.t_company .sec-intro .sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t_company .sec-intro .sec-img .img-text {
    position: absolute;
    bottom: 68px;
    left: 44px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.t_company .sec-intro .sec-img .img-text .text {
    background-color: #FFF;
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
    line-height: calc(40/24);
    color: #000;
    padding: 5px 10px;
}

.t_company .sec-intro .sec-text {
    grid-area: text;
    display: flex;
    flex-direction: column;
    gap: 62px;
}

.t_company .sec-intro .sec-text .logo {
    max-width: 432px;
    width: 100%;
}

.t_company .sec-intro .sec-text .item {
    display: grid;
    grid-template-columns: 18% 1fr;
    gap: 41px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #9d9d9d;
}

.t_company .sec-intro .sec-text .item:last-child {
    margin-bottom: 0;
}

.t_company .sec-intro .sec-text .item .ttl {
    font-family: var(--ja);
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    color: #b7261c;
}

.t_company .sec-intro .sec-text .item .detail {
    font-family: var(--ja);
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    color: #000;
}

.t_company .sec-bottom {
    display: grid;
    grid-template-columns: fit-content(calc(886/1920*100vw)) fit-content(calc(761 / 1920 * 100vw));
    gap: 0 calc(81 / 1920 * 100vw);
    justify-content: flex-end;
    position: relative;
    z-index: 5;
}

.t_company .sec-bottom .deco01,
.t_company .sec-bottom .deco02,
.t_company .sec-bottom .deco03 {
    position: absolute;
    z-index: -1;
}

.t_company .sec-bottom .deco01 {
    left: 54px;
    top: -17px;
    width: 246px;
    height: 276px;
}

.t_company .sec-bottom .deco02 {
    top: -4px;
    left: -53px;
    width: 135px;
    height: 155px;
}

.t_company .sec-bottom .deco03 {
    top: -77px;
    left: -67px;
    width: 216px;
    height: 247px;
}

.t_company .sec-bottom .sec-img {
    position: relative;
    z-index: 5;
}





.t_company .sec-bottom .sec-title {
    display: block;
    margin-bottom: 40px;
}

.t_company .sec-bottom .sec-title h3 {
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
    line-height: calc(52/24);
    text-align: center;
    color: #000;
}

.t_company .sec-bottom .sec-text {
    margin-left: 12%;
}

.t_company .sec-bottom .desc {
    margin-bottom: 87px;
}

.t_company .sec-bottom .desc p {
    font-size: 14px;
    line-height: calc(22/14);
    text-align: center;
}

.t_company .sec-bottom .prof {
    display: grid;
    grid-template-columns: fit-content(164px) 1fr;
    gap: 26px;
    align-items: center;

    z-index: 5;
}

.t_company .sec-bottom .prof .img {
    position: relative;
}


.t_company .sec-bottom .prof .name-ja {
    font-family: var(--eng);
    font-weight: 400;
    font-size: 20px;
    color: #000;
    margin-right: 20px;
}

.t_company .sec-bottom .prof .name {
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #7c7c7c;
    margin-bottom: 14px;
}

.t_company .sec-bottom .prof .name-en {
    font-family: var(--eng);
    font-weight: 400;
    font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
    color: #000;
}

.t_company .sec-bottom .prof .icon {
    margin-left: auto;
    transition: var(--default);
}

.t_company .sec-bottom .prof .icon:hover {
    opacity: 50%;
}

.t_company .sec-bottom .p-detail .ttl {
    font-family: var(--ja);
    font-weight: 400;
    font-size: 14px;
    line-height: calc(22/14);
    color: #000;
    margin-bottom: 9px;
}

.t_company .sec-bottom .p-detail .item {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 6px;
}

.t_company .sec-bottom .p-detail .item:last-child {
    margin-bottom: 0;
}

.t_company .sec-bottom .p-detail .item .box {
    font-family: var(--ja);
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #000;
    background: #e3e3e3;
    padding: 0 10px;
}

.t_company .sec-bottom .p-detail .item .detail {
    font-family: var(--ja);
    font-weight: 400;
    font-size: 14px;
    line-height: calc(22/14);
    color: #000;
}

.t_contact {
    border-bottom: 1px solid #707070;
}

.t_contact .inner {
    padding: 120px 0 160px;
}

.t_contact .inner .sec-intro {
    margin-bottom: 40px;
}

.t_contact .inner .sec-title {
    justify-content: center;
    margin-bottom: 40px;
}

.t_contact .inner .desc {
    margin-bottom: 32px;
    text-align: center;
}

.t_contact .inner .tel-link a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.t_contact .inner .tel-link .icon {
    width: 26px;
    margin-right: 15px;
}

.t_contact .inner .tel-link .num {
    font-family: var(--ja);
    font-weight: 500;
    font-size: 31px;
    color: #000;
    margin-right: 10px;
}

.t_contact .inner .tel-link .time {
    font-family: var(--ja);
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.t_contact .formWrap {
    padding-top: 40px;
    border-top: 1px solid #9d9d9d;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}


@media (max-width: 1500px) {
    .fv {
        padding-top: 103px;
    }
}

@media (max-width: 1200px) {

    .inner-6,
    .t_service .list {
        margin: 0 3%;
    }

    .t_company .sec-bottom {
        grid-template-columns: 1fr fit-content(calc(680 / 1920 * 100vw));
    }

    .t_company .sec-bottom .sec-text {
        margin-left: 2%;
    }

    .t_company .sec-bottom .deco01 {
        left: -130px;
    }
}

@media (max-width: 1000px) {
    .fv {
        padding-top: 62px;
    }
}

@media (max-width: 960px) {

    .inner-6,
    .t_service .list {
        margin: 0 auto;
    }

    .fv {
        margin-top: 44px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-top: 95px;
        height: auto;
    }

    .fv .fv-text .column {
        padding: 0;
        flex-direction: column;
        gap: 41px;
        background-color: transparent;
    }

    .fv .fv-text .text {
        padding: 0;
    }

    .fv .fv-text .text {
        background-color: transparent;
    }

    .fv .fv-text {
        position: relative;
        inset: 0;
        margin: 0 auto;
        gap: 41px;
    }

    .fv .fv-swiper {
        height: 341px;
    }

    .t_about .inner {
        padding: 120px 0 30px;
        grid-template-columns: 1fr;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 121px;
    }

    .t_about .sec-text,
    .t_about .sec-text .text {
        margin-left: 0;
    }

    .t_about .sec-title {
        margin-bottom: 20px;
        gap: 16px;
    }

    .sec-title .ttl-en {
        padding-left: 19px;
        padding-top: 19px;
        padding-right: 3px;
    }

    .t_about .sec-img {
        width: 175px;
        width: calc(175/390*100vw);
        height: 70px;
        height: calc(70/390*100vw);
        margin-bottom: 131px;
        margin-bottom: calc(131/390*100vw);
        margin-right: 29px;
        margin-right: calc(29/390*100vw);

    }

    .t_about .sec-img .logo {
        max-width: 174px;
        max-width: calc(174/390*100vw);
        left: 0;
        right: auto;
    }

    .t_about .sec-img::before {
        bottom: -133px;
        left: -290px;
        width: 713px;
        height: 393px;
        bottom: calc(-133/390*100vw);
        left: calc(-290/390*100vw);
        width: calc(713/390*100vw);
        height: calc(393/390*100vw);
    }

    .t_about .sec-img .line {
        width: 11px;
        width: calc(11/390*100vw);
        height: 29px;
        height: calc(29/390*100vw);
        left: 35px;
        left: calc(35/390*100vw);
        bottom: 3px;
        bottom: calc(3/390*100vw);
    }

    .t_about .sec-img .line::after {
        content: none;
    }

    .t_about .desc br {
        display: none;
    }

    .infinite-slider {
        height: 260px;
    }

    .infinite-slider .slide-item {
        flex-shrink: auto;
        width: 1026px;
    }


    @keyframes loop-slide {
        from {
            transform: translateX(0%);
        }

        to {
            transform: translateX(-1066px);
        }

        /* 全体の半分まで行ったら最初に戻る */
    }

    .t_service .sec-intro {
        grid-template-columns: 1fr;
        grid-template-areas: "title"
            "img"
            "content";
        gap: 0;
        align-items: flex-start;
        margin-bottom: 65px;

    }

    .t_service .sec-title {
        margin-left: 0;
        margin-bottom: 32px;
    }

    .t_service .sec-img {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .t_service .sec-img .img-wrap {
        width: calc(314/390*100vw);
    }

    .t_service .sec-intro .text {
        margin-left: 0;
    }

    .t_service .morebtn {
        margin-top: 32px;
    }

    .t_service .sec-img .items img {
        height: 50px;
    }

    .t_service .sec-img .items .item01 {
        top: calc(7 / 390 * 100vw);
        left: calc(86 / 390 * 100vw);
    }

    .t_service .sec-img .items .item02 {
        top: calc(85 / 390 * 100vw);
        left: calc(11 / 390 * 100vw);
    }

    .t_service .sec-img .items .item03 {
        top: calc(58 / 390 * 100vw);
        left: calc(114 / 390 * 100vw);
    }

    .t_service .sec-img .items .item04 {
        right: calc(-41 / 390 * 100vw);
        top: calc(12 / 390 * 100vw);
    }

    .t_service .sec-img .items .item05 {
        right: calc(-36 / 390 * 100vw);
        top: calc(84 / 390 * 100vw);
    }

    .t_service .sec-img .items .item06 {
        left: calc(73 / 390 * 100vw);
        bottom: calc(22 / 390 * 100vw);
    }

    .t_service .sec-img .items .item07 {
        bottom: calc(15 / 390 * 100vw);
        right: calc(61 / 390 * 100vw);
    }

    .t_service .list {
        margin: auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }



    .t_service .list .item .text {
        padding: 7px 12px 21px;
        gap: 0;
    }

    .t_service .list .item .box-ttl {
        margin-bottom: 4px;
    }

    .t_service .list .item .desc {
        margin-bottom: 16px;
    }

    .t_service .list .item .arrow {
        width: 65px;
    }

    .t_case .case-slider .tab-list {
        flex-direction: column;
        align-items: center;
        gap: 13px;
    }

    .t_case .case-slider .swiper-slide .box-inner .top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
    }

    .t_case .case-slider .swiper-slide .box-inner .top .img {
        max-width: calc(245/390*100vw);
        margin: 0 auto;
    }

    .t_case .case-slider .swiper-slide .box-inner .bottom .voice {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .t_case .case-slider .swiper-slide .box-inner {
        padding: 20px 12px;
    }

    .t_case .case-slider .swiper-slide .box-inner .top .text .catch {
        text-align: center;
        word-break: auto-phrase;
    }

    .t_case .case-slider .swiper-slide .box-inner .bottom.js-hide-item {
        display: none;
    }

    .t_case .case-slider .swiper-slide .box-inner .top .desc.js-hide-item {
        height: 82px;
        overflow: hidden;
        filter: blur(3.4980499744415283px);
        background-color: rgba(255, 255, 255, 0.15);
    }

    .t_case .case-slider .swiper-slide .box-inner .top .desc.js-hide-item.is-open {
        filter: none;
        height: auto;
        overflow: visible;
    }

    .t_case .case-slider .swiper-slide .box-inner .bottom.js-hide-item.is-open {
        display: block;
    }



    .t_case .case-slider .swiper-slide .box-inner .more-btn {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        font-family: var(--eng);
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        color: #000;
    }

    .t_case .case-slider .swiper-slide .box-inner .more-btn.is-hidden {
        display: none;
    }

    .t_case .case-slider .swiper-slide .box-inner .top .text .taglist {
        justify-content: center;
    }

    .t_case .case-slider .swiper-slide .box-inner .top .text .taglist p {
        padding: 0 12px;

    }

    .t_case .case-slider .js-tab-item .icon::after {
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-top: 9px solid #000000;
    }

    .t_insta .webgene-blog {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

    .t_partners {
        flex-direction: column;
        gap: 20px;
    }

    .t_partners .img {
        max-width: none;
    }

    .t_partners .text {
        width: 90%;
        margin: 0 auto;
    }

    .t_partners .sec-title {
        padding: 28px 75px;
        justify-content: center;
    }

    .t_partners .desc {
        margin-bottom: 32px;
    }

    .t_partners .morebtn {
        max-width: 269px;
    }

    .t_partners::after {
        width: 100%;
        height: 194px;
        bottom: -40px;
    }

    .t_company .inner-6 {
        padding: 160px 0 83px;
    }

    .t_company .sec-intro {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 80px;
    }

    .t_company .sec-intro .sec-title {
        margin-bottom: 32px;
    }

    .t_company .sec-intro .sec-text {
        gap: 40px;
    }

    .t_company .sec-intro .sec-img .img-text {
        position: relative;
        inset: 0;
        align-items: center;
        gap: 4px;
        margin-bottom: 16px;
        flex-direction: column;
    }

    .t_company .sec-intro .sec-img {
        height: auto;
        margin-bottom: 40px;
    }

    .t_company .sec-intro .sec-img .img-text .text {
        background-color: transparent;
        padding: 0;
        writing-mode: horizontal-tb;
    }

    .t_company .sec-intro .sec-text .item {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .t_company .sec-intro .sec-text .logo {
        max-width: 276px;
        margin: 0 auto;
    }

    .t_company .sec-bottom {
        display: flex;
        flex-direction: column-reverse;
    }

    .t_company .sec-bottom .sec-img {
        width: 80%;
        margin: 0 auto 21px;
    }

    .t_company .sec-bottom .sec-title {
        margin-bottom: 16px;
        position: relative;
        z-index: 8;
    }

    .t_company .sec-bottom .desc {
        margin-bottom: 44px;
    }

    .t_company .sec-bottom .prof {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 90%;
        margin: 0 auto;
    }

    .t_company .sec-bottom .prof .img {
        width: calc(164/390*100vw);
        margin: 0 auto;
    }

    .t_company .sec-bottom .prof .name-ja {
        margin-right: 0;
        margin-bottom: 7px;
    }

    .t_company .sec-bottom .prof .name-en {
        margin-bottom: 11px;
    }

    .t_company .sec-bottom .prof .icon {
        margin: 0 auto;
    }

    .t_company .sec-bottom .prof .name {
        flex-direction: column;
        align-items: center;
        padding-bottom: 16px;
        margin-bottom: 11px;
    }

    .t_company .sec-bottom .prof .text {
        width: 100%;
    }

    .t_contact .inner {
        padding: 120px 0;
    }

    .t_contact .inner .sec-title {
        margin-bottom: 32px;
    }

    .t_contact .inner .sec-intro {
        width: 90%;
        margin: 0 auto 40px;
    }

    .t_contact .inner .tel-link a {
        display: grid;
        grid-template-columns: 16px auto;
        grid-template-rows: 1fr auto;
        align-items: center;
        gap: 0px 8px;
        grid-template-areas:
            "icon num"
            ". time";
        width: fit-content;
        margin: 0 auto;
    }

    .t_contact .inner .tel-link .icon {
        grid-area: icon;
    }

    .t_contact .inner .tel-link .num {
        grid-area: num;
    }

    .t_contact .inner .tel-link .time {
        grid-area: time;
        text-align: right;
    }

    .t_company .sec-bottom .deco01 {
        left: -38px;
        top: 356px;
        width: 109px;
        height: 122px;
    }

    .t_company .sec-bottom .deco03 {
        top: 53px;
        left: 211px;
        width: 148px;
        height: 169px;
    }

    .t_company .sec-bottom .deco02 {
        left: -50px;
    }

    .t_company .sec-bottom .sec-text {
        margin: auto;
    }





}

/* 管理画面用 */
.gjs-dashed .fv {
    height: auto;
}

.gjs-dashed .fv .fv-swiper {
    height: auto;
}

.gjs-dashed .fv .fv-swiper .swiper-wrapper {
    flex-direction: column;
}

.gjs-dashed .t_case .case-slider .js-tab-content {
    display: flex;
    flex-direction: column;
}

.gjs-dashed .swiper-wrapper {
    flex-direction: column;
    height: auto;
}

.gjs-dashed .t_about .sec-img .logo {
    opacity: 1;
    transform: translateY(0);
}

.gjs-dashed .t_service .img-wrap>img,
.gjs-dashed .t_service .items>div {
    opacity: 1;
    transform: translateY(0);
}