@charset "utf-8";

:root {
    --main-color: #069EEB;
    --accent-color: #079eeb;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #000000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
}

p {
    font-size: 18px;
    position: sticky;
    z-index: 10;
}

h2 {
    font-size: 108px;
    padding: 0 0 46px;
    position: sticky;
    z-index: 10;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 120px;
    /*transform: scaleY(0.8);*/
    display: inline-block;
    letter-spacing: -2px;
    margin: -20px 0 0;
    position: sticky;
    z-index: 10;
}

.title-s {
    font-size: 50px;
    transform: none;
    margin: -3px 0 0 0;
    letter-spacing: 2px;
}

h4 {
    font-size: 50px;
    margin: 92px 0 0 0;
}

.section-subtitle {
    font-size: 30px;
    letter-spacing: -0.3px;
}

.section-subtitle-s {
    font-size: 16px;
    padding: 69px 0 0 0;
}

.text {
    font-size: 30px;
    padding: 0 0 55px;
    line-height: 1.6;
    z-index: 10;
    position: sticky;
}

.text-s {
    padding: 0 0 41px;
    line-height: 2.2;
}



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

color

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


.blue {
    color: #069EEB;
}

.white {
    color: #FFFFFF;
}

.black {
    color: #000000;
}

.bg-gray {
    background-color: #F7F6F6;
}

.bg-grade-blue {
    background: linear-gradient(to bottom, rgba(2, 61, 149, 1) 0%, rgba(2, 38, 95, 1) 100%);
}

.bg-black {
    background-color: #202020;
}

.bg-blue {
    background-color: #069EEB;
}

.bg-white {
    background-color: #fff;
}


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

layout

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

.l-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav.l-flex.pc ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.l-flex-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.l-flex-end {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.l-section-wrapper {
    max-width: 1330px;
    margin: 0 auto;
    margin-top: 200px;
    padding: 0 20px;
}

.l-section-wrapper.second {
    margin-top: 0px;
}

.l-section-wrapper2 {
    max-width: 1440px;
    margin: 0 auto;
}

.l-section-wrapper3 {
    max-width: 1200px;
    padding: 35px 80px;
    margin: 0 auto;
}

.l-section-wrapper4 {
    max-width: 1250px;
    margin: 0 auto;
}

.l-side-ttl {
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    position: sticky;
    top: 4%;
    padding: 5% 0 0 70px;
}

.l-side-content {
    margin: 380px 0 0 0;
    /*overflow: hidden;
    overflow-y: scroll;
    height: 450px;*/
    display: flex;
    flex-direction: column;
    gap: 50px;
}




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

BUTTON

//////////////////////////////////////*/
.btn {
    width: 265px;
    height: 70px;
    cursor: pointer;
    perspective: 500px;
    -webkit-perspective: 500px;
    display: block;
    position: relative;
    /*margin: 0 auto !important;*/
}

.btn div {
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: 0.25s;
    -webkit-transition: 0.25s;
}

.btn:hover div {
    transform: rotateX(-90deg);
}

.btn span {
    width: 100%;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    background-color: #069EEB;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 0;
}

.btn span:nth-child(1) {
    color: #fff;
    transform:
        translate3d(0, 0, 30px);
    -webkit-transform: translate3d(0, 0, 32px);
    padding: 12px 0;
}

.btn span:nth-child(2) {
    color: #069EEB;
    background: #fff;
    border: 5px solid #069EEB;
    transform: rotateX(90deg) translate3d(0, 0, 32px);
    -webkit-transform: rotateX(90deg) translate3d(0, 0, 32px);
    padding: 8px 0;
}

.btn span img {
    position: absolute;
    right: 15px;
    top: 33px;
}

.btn-arrow2 {
    position: absolute;
    top: 29px !important;
}





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

HEADER

//////////////////////////////////////*/
header {
    margin: 0 auto;
    padding: 13px 10px;
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    gap: 18px;
}

.header-btn {
    width: 180px;
    height: 54px;
    display: inline-flex !important;
    text-align: center;
    padding: 13px 0;
    margin: 0 0 0 20px;
    align-items: center;
    justify-content: space-around;
}

.header-btn:hover {
    color: #FFFFFF;
}

.header-btn img {
    transition: transform 0.3s ease;
    /* アニメーションを滑らかに */
}

.header-btn:hover img {
    transform: translateX(10px);
    /* 右に10px動かす */
}

/* スクロール後に追加するクラス */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    /* 白背景に */
}

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

ハンバーガーメニュー

//////////////////////////////////////*/
.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
}

.nav-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    min-width: 200px;
}

.nav-items__item a {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 24px;
}

.nav-items__item:last-child a {
    margin-bottom: 0;
}

.header__hamburger {
    width: 48px;
    height: 100%;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #069EEB;
    position: relative;
    transition: ease .4s;
    display: block;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    margin: 8px 0;
}

.hamburger span:nth-child(3) {
    top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}






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

MAIN

///////////////////////////////////////*/
main {
    /*background-image: url(../img/top-bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;*/
    /*padding: 100px 0 0 0;
    /*padding: 0 0 26% 0;*/
    position: relative;
}


/*.bg-holder {
    position: sticky;   
    top: 0;
    height: 100vh;      
    background-image: url(../img/top-bg.png);
    background-size: cover;
}*/

/*.main-space{
    height: 80vh;
    transition: height .4s ease;
}
*/

[data-aos="fade-up"] {
    transform: translate3d(0, 100%, 0);
    /* FVの下端から */
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}


.light-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    /* ← これがないと初期表示で見切れやすい */
    pointer-events: none;
    background-image: url(../img/top-bg.webp);
    background-size: cover;
}

/* 初期状態（非表示） */
.light-img {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 1s;
    /* ← これが data-aos-delay="200" 相当 */
}

/* 表示ON（フェードイン） */
.light-img.is-on {
    opacity: 1;
    transform: scale(1);
    mix-blend-mode: screen;
}

/* 非表示（保険） */
.light-img.is-off {
    opacity: 0;
    transform: scale(.98);
}


.main-space.is-collapsed {
    height: 0;
}

.main-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* position: absolute; */
    top: 100px;
    left: 50%;
    /* transform: translateX(-50%); */
    width: 100%;
    margin: -70vh 0 0 0;
}

.cube-section {
    position: relative;
    /* height: 100vh; */
    /* height: 70vh; */
    overflow: hidden;
    overflow: unset;
}

.cube-section2 {
    /* height: 100vh; */
    /* height: 60vh; */
    height: 30vh;
    position: sticky;
    z-index: 20;
}

.cube-img {
    position: absolute;
    width: 50%;
    width: 65vw;
    will-change: transform;
}

.cube-right,
.cube-left {
    transition: transform 2s ease 0s;
}


/* 右下スタート */
.cube-right {
    top: 100%;
    left: 100%;
    display: none;
}

/* 左下スタート */
.cube-left {
    top: 100%;
    left: -55%;
    display: none;
}

.top-parts {
    position: sticky;
    z-index: 10;
}

/* クリップ用ラッパー：横はみ出しを切る */
.aos-clip {
    overflow: hidden;
}

/* 念のため画像ははみ出さないように */
.aos-clip img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media(max-width:768px) {

    .cube-section {
        /* height: 100vh; */
        overflow: hidden;
    }

    .cube-section2 {
        /* height: 100vh; */
        height: 10vh;
        overflow: hidden;
    }

    .social .l-section-wrapper {
        margin-top: 0px;
    }
    .l-section-wrapper.first {
    margin-top: 50px;
}

}







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

ABOUT

///////////////////////////////////////*/
.about-bg-parts {
    background-image: url(../img/about-bg-parts.png);
    background-position: top;
    background-size: cover;
    padding: 30% 0 0 0;
    padding-top: 15%;
    margin: -30% 0 0 0;
}

.about {
    padding: 15px 0 0;
    position: relative;
}

.about2 {
    padding: 0 0 200px 0;
}

.about-title {
    padding: 92px 0 118px 0;
    position: sticky;
    z-index: 10;
    margin: 0;
}

/*/// 背景幾何学 */
canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 960px;
    max-width: 1030px;
}

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

.about-btn {
    margin: 25px 0 0 0;
    position: sticky;
    z-index: 10;
}





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

SERVICE

//////////////////////////////////////*/
.service {
    padding: 0 0 245px 0;
}

.service-content {
    align-items: flex-start;
    gap: 20px;
}

.slide-content-box {
    position: relative;
}

.cat2 {
    font-size: 14px;
    position: absolute;
    left: 2%;
    bottom: 25px;
    padding: 10px 15px;
}

.ttl2 {
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    padding: 18px 37px;
    position: absolute;
    left: 2%;
    bottom: 85px;
}

.space {
    display: block;
    height: 200px;
}





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

FLOW

//////////////////////////////////////*/
.flow {
    margin: -242px 0 0;
}

.flow-swiper {
    width: 100%;
    padding: 20px 0;
    max-width: 765px;
    margin: 0 0 0 40px;
}

/* スライドの動き等速 */
.swiper-wrapper {
    transition-timing-function: linear;
}

.flow-swiper a {
    display: block;
    text-decoration: none;
    color: inherit;
}





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

SICIAL

//////////////////////////////////////*/
.social {
    padding: 200px 0 210px 0;
}

.social-h4 {
    padding: 0 0 112px 0;
}

.social-img {
    width: 40%;
    max-width: 600px;
}





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

FAQ

//////////////////////////////////////*/
.faq {
    padding: 130px 10px 205px 10px;
}

/*.faq__wrapper{
    padding: 0 0 0 25px;
}*/

.faq-flex {
    gap: 3%;
}

.faq-flex2 {
    gap: 30px;
}

.faq-flex2 img {
    margin: 10px 0 0 0;
}

.faq-btn {
    display: flex;
    justify-content: end;
    margin: 60px 0 0
}

.faq-btn::after {
    content: "";
    display: inline-block;
    /* または block */
    width: 8px;
    /* 必ず幅と高さを指定する */
    height: 10px;
    background-image: url("../img/btn-arrow-icon.svg");
    background-size: contain;
    /* 画像全体を縮小 */
    background-repeat: no-repeat;
    margin: 10px 0 0 11px;
}




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

BLOG

//////////////////////////////////////*/
.blog {
    padding: 150px 0 195px 0;
}

.blog-wrapper {
    margin: 0 0 0 8%;
}

.blog-swiper {
    width: 100%;
    margin: 40px 0 0 0;
}

.blog-swiper a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-img {
    position: relative;
    max-width: 350px;
}

.blog-img img {
    height: auto;
}

.blog-swiper .cat {
    display: inline-block;
    font-size: 10px;
    color: #fff;
    background: #000000;
    padding: 3px 8px;
    position: absolute;
    top: 0;
    right: 0;
}

.blog-swiper .ttl {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 25px;
}





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

CTA

//////////////////////////////////////*/
.cta {
    background-image: url(../img/cta-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta__wrapper {
    padding: 75px 20px 0 10px;
}

.cta-text {
    margin: -30px 0 30px 0;
}





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

FOOTER

//////////////////////////////////////*/
footer {
    padding: 105px 10px 0 10px;
}

.footer__wrapper {
    padding: 0;
}

.footer-flex {
    gap: 25px;
}

.footer-nav {
    max-width: 790px;
    width: 100%;
    gap: 20px;
    justify-content: space-around;
}

.footer-nav2 {
    max-width: 408px;
}

.footer-nav2 .l-flex-top {
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    text-align: center;
    padding: 35px 0;
    font-size: 16px;
    margin: 100px 0 0 0;
}

footer nav ul li a, footer nav a {
    font-weight: 700;
}







@media(max-width:1024px) {
    a {
        font-size: 16px;
    }

    h2 {
        font-size: 50px;
        padding: 0 0 25px;
    }

    h3 {
        font-size: 90px;
        margin: -5px 0 0;
        line-height: 1;
    }

    h4 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }

    .text {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 25px;
    }

    .l-side-ttl {
        padding: 8% 0 0 30px;
        top: 8%;
    }

    .header-btn {
        margin: 0;
    }

    .faq-flex {
        flex-direction: column;
    }

    .cta-text {
        margin: 0;
    }

    .footer-nav2 {
        max-width: 176px;
    }

    .footer-nav2 .l-flex-top {
        gap: 0;
    }

    .light-img {
        width: 64%;
        top: 0;
    }

    .top-parts {
        width: 50%;
    }

    /*main{
        padding: 75px 0 0 0;
    }*/
    .cube-img {
        width: 80%;
    }
}

.sp {
    display: none;
}

@media(max-width:768px) {
    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 50px;
        margin: 0;
        line-height: 1;
        letter-spacing: -1.3px;
    }

    h4 {
        font-size: 20px;
        margin: 60px 0 0 0;
    }

    p {
        font-size: 14px;
    }

    .text {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .l-flex, .l-flex-top, .l-flex-end {
        flex-direction: column;
    }

    .l-side-ttl {
        padding: 100px 10px 0;
        top: auto;
        height: auto;
    }

    .l-side-content {
        margin: 0 auto;
        gap: 30px;
        padding: 0 10px 60px;
    }

    .l-section-wrapper3 {
        padding: 0 10px;
    }

    header {
        padding: 0 10px;
    }

    header h1 {
        display: flex;
        align-items: center;
    }

    header.header h1 img {
        width: 150px;
    }

    .mv-catch-wrapper {
        width: 50vw;
    }

    .service-title {
        padding: 0 0 30px 0;
    }

    .ttl2 {
        font-size: 20px;
        padding: 5px 20px;
        position: absolute;
        left: 2%;
        bottom: 50px;
    }

    .cat2 {
        font-size: 10px;
        position: absolute;
        left: 2%;
        bottom: 17px;
        padding: 4px;
    }

    .flow-swiper {
        margin: 0;
    }

    .social {
        padding: 100px 0 110px 0;
    }

    .social .l-flex-end {
        flex-direction: column-reverse;
    }

    .social-img {
        width: 100%;
        margin: 0 auto 40px auto;
    }

    .flow {
        margin: -150px 0 0;
    }

    .faq {
        padding: 50px 10px 100px 10px;
    }

    .faq-btn {
        margin: 0;
    }

    .blog {
        padding: 50px 0 95px 0;
    }

    .blog-wrapper {
        margin: 0;
        padding: 0 10px;
    }

    .cta__wrapper {
        padding: 30px 10px;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .light-img {
        top: 50px;
    }

    .cube-img {
        width: 100%;
    }

    .about-bg-parts {
        /* margin: -33% 0 0 0; */
        margin: -50% 0 0 0;
    }

    .main-flex {
        margin: -90vh 0 0 0;
    }
}



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

FIXED PAGES

//////////////////////////////////////*/
.smb-section__body>*:not(:first-child) {
    margin-top: 20px;
}

section.mv-2nd {
    background-image: url(../img/top-bg.webp);
    background-size: cover;
}

.smb-section__header {
    display: flex;
    flex-direction: column-reverse;
}

.smb-section__subtitle {
    text-align: left !important;
    font-size: 50px !important;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    line-height: 1 !important;
}

.smb-section__subtitle:first-letter {
    color: var(--main-color);
}

.mv-2nd .smb-section__subtitle {
    text-align: center !important;
    font-size: 120px !important;
}

.mv-2nd .smb-section__subtitle:first-letter {
    color: var(--main-color);
}

h1.smb-section__title {
    font-size: 30px;
}

h2.smb-section__title {
    font-size: 16px ! IMPORTANT;
    padding: 0;
    text-align: left;
}

.wp-block-snow-monkey-blocks-section.breadcrumbs {
    background: #f7f6f6;
    padding: 20px 0 20px 0;
}

h3.wp-block-heading {
    margin-top: 0;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding-left: 10px;
    border-left: 5px solid var(--main-color);
}

h3.wp-block-heading+* {
    margin-top: 20px;
}

figure.wp-block-table.company-table td {
    border: none;
    padding: 20px 10px;
    line-height: 2;
}

figure.wp-block-table.company-table td:first-child {
    font-weight: 700;
    color: var(--main-color);
}

figure.wp-block-table.company-table tr {
    border-bottom: 1px solid var(--main-color);
}

p.section-text {
    line-height: 2;
    letter-spacing: .1em;
    font-weight: 400;
}

p.section-text:not(:first-child) {
    margin-top: 20px;
}

h3.smb-items__item__title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 0;
}

.wp-block-snow-monkey-blocks-buttons.smb-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    margin-top: 40px;
}

a.smb-btn {
    background-color: var(--accent-color);
}

.wp-block-snow-monkey-blocks-section.gray {
    background-color: #f7f6f6;
}

.wp-block-snow-monkey-blocks-media-text.smb-media-text.smb-media-text--mobile-text:not(:first-child) {
    margin-top: 40px;
}

.fixed-page-content p {
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .mv-2nd .smb-section__subtitle {
        font-size: 40px !important;
    }

    section.mv-2nd {
        background-size: auto;
    }

    .smb-section__subtitle {
        font-size: 40px !important;
    }

    figure.wp-block-table.company-table td {
        display: block;
    }

    figure.wp-block-table.company-table td:first-child {
        padding-bottom: 5px;
    }

    figure.wp-block-table.company-table td:last-child {
        padding-top: 5px;
    }
}