@charset "utf-8";

html {
    text-rendering: optimizeLegibility !important;
}

:root {
    font-size: 10px;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    color: #000;
    background: transparent;
    text-rendering: optimizeLegibility;
    cursor: none;
}

.cursor-circle {
    position: fixed;
    top: 0px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #2FEDE4;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: exclusion;
}


@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto !important;
    }

    .cursor-circle {
        display: none !important;
    }
}

/* adding preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F4F3F1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-circle {
    width: 40px;
    height: 40px;
    border: 3px solid #414141;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* adding preloader */

.pc {
    display: block;
}

.sp {
    display: none;
}

.tel {
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .tel {
        pointer-events: auto;
    }
}

/* ===============================
Text align
=============================== */
.txt-left {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .txt-left-sp {
        text-align: left;
    }

    .txt-center-sp {
        text-align: center;
    }

    .txt-right-sp {
        text-align: right;
    }
}

/* ===============================
Color
=============================== */
.main-color {
    color: #000;
}

.blue-color {
    color: #011b5c;
}

.blue-color-one {
    color: #002483;
}

.w-color {
    color: #fff;
}

/* ===============================
Background Color
=============================== */
.bg-white {
    background: #ffffff;
}

.bg-white-opacity {
    background: rgba(255, 255, 255, 0.7);
}

.bg-gray {
    background: #f0f1f5;
}

.bg-blue {
    background: #001c5c;
}

.bg-blue-two {
    background-color: #002483;
}

.main-bg {
    background: url(/assets/img/common/main_bg.jpg);
    background-repeat: repeat;
    background-size: 100%;
}

.fixed-bg {
    background-attachment: fixed !important;
    background-position: center;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .main-bg {
        background: url(/assets/img/common/main_bg_sp.jpg);
        background-repeat: repeat;
        background-size: 100%;
    }

    .container {
        padding: 0 16px;
    }
}

/* top header */
.body-hidden {
    overflow: hidden;
}

.top-head-sec {
    position: relative;
}

.header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
}

.header-container-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    top: 40px;
}

.header-container-flex .header-left {
    position: fixed;
    top: 40px;
    z-index: 996;
}

.header-container-flex .header-right {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 996;
}

.header-logo,
.header-open-logo {
    width: 98px;
    height: 149px;
}

.logo-default,
.logo-change {
    display: none;
}

.hamburger-default,
.hamburger-change {
    display: none;
}

.active {
    display: block;
}

.hamburger-logo {
    width: 80px;
    height: 18px;
    cursor: pointer;
}

.header-text {
    position: absolute;
    top: 118px;
    right: 40px;
    z-index: 997;
}

.header-text>a {
    width: fit-content;
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0;
    margin-left: auto;
    color: #191812;
    position: relative;
}

.project-details .header-text>a {
    color: #FFFFFF;
}

.header-text>a:not(:last-child) {
    margin-bottom: 20px;
}

.header-text>a::before {
    content: "";
    width: 0;
    height: 1.5px;
    background: #D0121B;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.header-text>a:hover {
    color: #D0121B;
}

.header-text>a:hover::before {
    width: 100%;
}

.header-open {
    visibility: hidden;
    opacity: 0;
    background: url(/assets/img/common/header_open_bg.jpg);
    background-repeat: repeat;
    background-size: 100%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    overflow-y: auto;
    transition: all 0.5s ease;
}

.header-open.active {
    visibility: visible;
    opacity: 1;
    overflow-y: auto;
}

.header-open-container {
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.header-open-logo {
    margin-top: 58px;
    position: sticky;
    top: 58px;
}

.header-open-flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.header-open-text {
    margin-top: 140px;
}

.header-open-text>a {
    width: fit-content;
    margin: 0 auto;
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-size: 6rem;
    font-weight: 600;
    color: #FFFFFF;
    position: relative;
}

.header-open-text>a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.header-open-text>a:hover::after {
    width: 100%;
}

.header-open-text>a.privacy {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 40px;
}

.header-open-text>a:not(:last-child) {
    margin-bottom: 36px;
}

.hamburger-close {
    width: 70px;
    height: 41px;
    cursor: pointer;
    margin-top: 17px;
    position: sticky;
    top: 17px;
    z-index: 999;
}

.mv-video {
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.mv-video video {
    transition: opacity 1s ease;
}

.mv-video video.hidden {
    display: none;
}

.top-main-padding {
    padding-top: 477px;
}

@media screen and (max-width: 1200px) {
    .mv-video video {
        width: 1000px;
    }

    .header-container-flex {
        padding: 0 20px;
    }

    .header-container-flex .header-right {
        right: 20px;
    }

    .header-text {
        right: 20px;
    }

    .header-open-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .header-open {
        background: url(/assets/img/common/header_open_sp_bg.jpg);
        background-repeat: repeat;
        background-size: 100%;
    }

    .mv-video video {
        width: 573px;
    }

    .header-text {
        display: none;
    }

    .header-logo,
    .header-open-logo {
        width: 45px;
        height: 68px;
    }

    .hamburger-logo {
        width: 40px;
        height: auto;
        margin-top: 10px;
    }

    .header-container-flex {
        padding: 0 16px;
        top: 20px;
    }

    .header-container-flex .header-left {
        top: 20px;
    }

    .header-container-flex .header-right {
        top: 20px;
        right: 16px;
    }

    .mv-video {
        top: 70px;
    }

    .header-open-container {
        padding: 0 16px;
    }

    .header-open-logo {
        margin-top: 20px;
        top: 20px;
    }

    .hamburger-close {
        width: 35px;
        height: 20px;
        margin-top: 28px;
        top: 28px;
    }

    .header-open-text {
        margin-top: 130px;
    }

    .header-open-text>a {
        font-size: 3rem;
    }

    .header-open-text>a:not(:last-child) {
        margin-bottom: 30px;
    }

    .header-open-text>a.privacy {
        font-size: 1.6rem;
        margin-top: 60px;
    }

    .top-main-padding {
        padding-top: 449px;
    }
}

/* top header end */


/* kaso header */
.kaso-padding {
    padding-top: 309px;
}

/* kaso header end */

/* breadcrumb */
.breadcrumb-container {
    padding: 12px 0 40px;
    display: flex;
    gap: 35px;
}

.breadcrumb-container .link,
.breadcrumb-container .current {
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0;
}

.breadcrumb-container .link {
    position: relative;
    color: #8E8E8E;
}

.breadcrumb-container .link::after {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: #8E8E8E;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
}

.breadcrumb-container .current {
    color: #29313A;
}

/* breadcrumb end */

/* kaso MV */
.kaso-section {
    width: 100%;
    overflow: hidden;
}

.kaso-title-wrapper {
    position: relative;
    overflow-x: hidden;
}

.kaso-title-ctnr {
    height: 168px;
    overflow: hidden;
}

.pj-kaso-title-ctnr {
    height: 205px;
}

.kaso-title {
    padding-top: 168px;
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-size: 20rem;
    font-weight: 600;
    position: relative;
    transition: transform 1s ease-out;
    color: #191812;
}

.title-slide-up {
    transform: translateY(-199px);
}

.kaso-title-line {
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    height: 1px;
    border-top: 1.5px solid #000;
    z-index: 1;
}

.pj-kaso-title-line {
    bottom: 40px;
}

.privacy-mv-ttl {
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-size: 10rem;
    padding-bottom: 80px;
    font-weight: 600;
}

@media screen and (max-width: 1100px) {
    .kaso-title-ctnr {
        height: 90px;
    }

    .pj-kaso-title-ctnr {
        height: 113px;
    }

    .kaso-title {
        font-size: 12rem;
        padding-top: 130px;
    }

    .title-slide-up {
        transform: translateY(-158px);
    }

    .kaso-title-line {
        bottom: 0;
    }

    .pj-kaso-title-line {
        bottom: 24px;
    }
}

@media screen and (max-width: 768px) {
    .kaso-padding {
        padding-top: 168px;
    }

    .breadcrumb-container {
        display: none;
    }

    .kaso-title-ctnr {
        height: 46px;
    }

    .pj-kaso-title-ctnr {
        height: 57px;
    }

    .kaso-title {
        font-size: 6rem;
        padding-top: 47px;
    }

    .title-slide-up {
        transform: translateY(-61px);
    }

    .kaso-title-line {
        bottom: 1px;
    }

    .pj-kaso-title-line {
        bottom: 11px;
    }

    .privacy-mv-ttl {
        font-size: 4rem;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 370px) {
    .privacy-mv-ttl {
        font-size: 3rem;
    }
}

/* kaso MV end */


/* footer */
.ft-blk {
    padding: 350px 70px 85px 70px;
    position: relative;
    overflow: hidden;
}

.ft-img {
    max-width: 341px;
    width: 100%;
}

.ft-img-blk {
    width: fit-content;
}

.ft-lt-blk {
    display: flex;
    gap: 30px;
    padding-top: 80px;
    padding-bottom: 70px;
}

.ft-link {
    font-size: 2rem;
    font-weight: 500;
    color: #191812;
    letter-spacing: 0;
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    position: relative;
}

.ft-link::before {
    content: "";
    width: 0;
    height: 1.5px;
    background: #D0121B;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.ft-link:hover::before {
    width: 100%;
}

.ft-link:hover {
    color: #D0121B;
}

.cpt-txt {
    font-size: 1.4rem;
    font-weight: 400;
    color: #90857A;
    letter-spacing: 0;
}

.cp-blk {
    display: flex;
    gap: 30px;
}

.pol-txt {
    font-size: 1.4rem;
    font-weight: 400;
    color: #191812;
    letter-spacing: 0;
    text-decoration: underline !important;
}

.pol-txt:hover {
    color: #D0121B;
}

.footer-animate-logo {
    max-width: 1000px;
    position: absolute;
    top: -45px;
    right: -168px;
    z-index: -1;
}

@media screen and (max-width: 1100px) {
    .footer-animate-logo {
        max-width: 700px;
        top: 0px;
        right: -120px;
    }
}

@media screen and (max-width: 768px) {
    .ft-blk {
        padding: 15px 15px 21px;
    }

    .ft-img {
        max-width: 160px;
        margin: 0 auto;
    }

    .ft-lt-blk {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 15px;
        row-gap: 20px;
        padding: 60px 53px 350px 53px;
    }

    .cp-blk {
        justify-content: center;
    }

    .ft-link {
        font-size: 1.6rem;
    }

    .ft-img-blk {
        margin: 0 auto;
    }

    .cpt-txt {
        font-size: 1.2rem;
    }

    .footer-animate-logo {
        top: unset;
        right: -34px;
        z-index: -1;
        bottom: -24px;
        max-width: 500px;
    }
}

/* footer end */
/* Back to Top button  */
#scrollTopBtn {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    background-color: #191812;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s, transform 0.3s, height 0.3s ease;
    width: 80px;
    height: 80px;
}

.tp-txt {
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    top: 7px;
}

#scrollTopBtn:hover {
    height: 100px;
}

.tp-txt::before {
    content: "";
    background: url("/assets/img/common/ic_up.png") no-repeat center/contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    top: -7px;
    left: 30px;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    #scrollTopBtn {
        width: 60px;
        height: 55px;
    }

    .tp-txt::before {
        left: 21px;
        top: -7px;
        width: 18px;
        height: 18px;
    }

    #scrollTopBtn:hover {
        height: 80px;
    }

    .tp-txt {
        top: 12px;
    }
}