/*
Theme Name: カブトプラテク
Author: grasp
Description: カブトプラテクのテーマ
Version: 1.0
*/

:root {
    --plate-offset: 10px;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* overflow-x: hidden; */
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.9;
    /* overflow-x: hidden; */
    color: #FFFFFF;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*font-feature-settings: "palt";*/
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100dvh;
    left: 0;
    top: 0;
    background: url('../imgs/common/bg.jpg') no-repeat;
    background-size: cover;
    z-index: -2;
}

body {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.is-opening,
body.is-loaded {
    opacity: 1;
    visibility: visible;
}

.bg-geometric-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    perspective: 1200px;
    will-change: transform;
}

.bg-geometric {
    position: absolute;
    bottom: -100vh;
    right: -25vw;
    width: 140vw;
    height: 150vw;
    transform-origin: center center;
    transform-style: preserve-3d;
}

.bg-geometric>img {
    display: block;
    position: relative;
}

html.is-visited #js-opening {
    display: none !important;
}

#js-opening {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opening-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #01A1EA;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 1;
    transition: opacity 0.3s;
    display: block;
}

.opening-logo {
    width: 128px;
    height: 214px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    opacity: 0;
}

@media (max-width: 768px) {
    .opening-logo {
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.opening-logo>img {
    position: absolute;
    display: block;
    transition: opacity 0.5s ease, transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    will-change: transform;
    transform-origin: center center;
}

.opening-logo>:nth-child(1) {
    left: 0;
    top: 44px;
    transform: translate(-150%, 0%) scale(1.2) rotate(-180deg);
    transition-delay: 0.2s;
}

.opening-logo>:nth-child(2) {
    left: 0;
    top: 0px;
    transform: translate(70%, 0) scale(1.2);
    transition-delay: 0.5s;
}

.opening-logo>:nth-child(3) {
    left: 61px;
    top: 74px;
    transform: translate(100%, 0) scale(1.2);
    transition-delay: 1s;
}

.opening-logo>:nth-child(4) {
    left: 1px;
    top: 173px;
    transform: translate(0, 100%) scale(2.3);
    transition-delay: 1.2s;
}

.opening-logo>:nth-child(5) {
    left: 1px;
    top: 197px;
    transform: translate(0, 100%) scale(2.3);
    transition-delay: 1.5s;
}

.is-opening-start .opening-logo>img {
    transform: translate(0%, 0) scale(1) rotate(0deg);
    opacity: 1;
}

.is-opening .opening-spinner {
    opacity: 0;
}

.is-opening .opening-logo {
    opacity: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .bg-geometric {
        top: 35vh;
        bottom: auto;
        right: -60vw;
        width: 220vw;
        height: auto;
        min-height: 280vh;
    }

    .bg-geometric>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#webgl-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#global-header {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1003;
    transition: top 0.3s, background 0.3s, opacity 0.3s;
}

.home #global-header {
    top: 80px;
}

#global-header.is-fixed {
    position: fixed;
    top: 0;
}

body.is-menu-open #global-header.is-fixed,
body.is-menu-open #global-header {
    position: fixed;
    top: 20px;
    background: transparent;
}

.header-inner {
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 120px);
    max-width: 1320px;
    padding: 20px;
}

.header-inner h1 {
    position: absolute;
    display: block;
    width: 100px;
    height: 114px;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    left: 20px;
    top: 0;
    background: rgba(255, 255, 255, 0);
    transition: transform 0.5s, left 0.5s, top 0.5s, opacity 0.5s, background 0.5s 0.5s;
    transform: translateY(0%);
}

.home #global-header .header-inner h1 {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-200%);
}

body.sub-page #global-header .header-inner h1,
body.is-menu-open #global-header .header-inner h1,
body #global-header.is-fixed .header-inner h1 {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateY(0%);
    background: rgba(255, 255, 255, 0.9);
}

body #global-header.is-fixed .header-inner h1 {
    transition: transform 0.5s, left 0.5s, top 0.5s, opacity 0.5s, background 0.5s 0.5s;
}

body.is-menu-open #global-header .header-inner h1 {
    left: 30px;
    background: rgba(255, 255, 255, 0);
    transition: transform 0.5s, left 0.5s, top 0.5s, opacity 0.5s, background 0.5s;
}


.header-inner h1 a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header-inner h1>a img {
    position: relative;
    display: block;
    width: 55%;
    height: auto;
    margin: 0 auto;
}

.header-nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: opacity 0.3s;
}

.header-nav ul li {
    position: relative;
    display: block;
}

.header-nav a {
    text-decoration: none;
    font-size: 1.3rem;
    height: 38px;
    padding: 10px 23px;
}

.header-nav ul li:nth-child(1)>a {
    background: #161616;
}

.header-nav ul li:nth-child(3)>a {
    color: #07328A;
    background: url("../imgs/common/navi_recruit-bg.jpg") no-repeat;
    padding: 10px 30px 10px 60px;
}

.header-nav ul li:nth-child(3)>a .btn-content.hover-content {
    color: #FFFFFF;
}

.header-nav ul li:nth-child(3) .btn-img {
    width: 76px;
    height: 55px;
    position: absolute;
    display: block;
    left: -5px;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.header-nav ul li:nth-child(3) .btn-img>img {
    width: 94%;
    height: auto;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    transition: top 0.5s ease;
    top: 10px;

}

@media (min-width: 769px) {
    .header-nav ul li:nth-child(3):hover .btn-img>img {
        top: 0px;
        animation: wave 0.5s ease-in-out infinite alternate;
    }

    @keyframes wave {
        0% {
            transform: rotate(-2deg);
        }

        100% {
            transform: rotate(2deg);
        }
    }
}

.hamburger-btn {
    width: 60px;
    height: 60px;
    margin-left: 10px;
    position: relative;
    background: rgba(22, 22, 22, 1);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1004;
}

.hamburger-btn:before {
    content: '';
    position: absolute;
    display: block;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('../imgs/common/btn_bg.svg') no-repeat;
    background-size: cover;
    overflow: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.hamburger-btn span {
    position: absolute;
    transform-origin: center center;
    width: 22px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, background 0.4s ease;
}

.hamburger-btn span:before {
    content: '';
    position: absolute;
    display: block;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            #0B308E 0%,
            #0665B5 33%,
            #028CD2 62%,
            #00A5E4 86%,
            #00AEEB 100%);
    opacity: 0;
    border-radius: 2px;
    overflow: hidden;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.hamburger-btn span:nth-child(1) {
    top: 22px;
    opacity: 1;
    transform: rotate(-45deg);
    left: 19px;
}

.hamburger-btn span:nth-child(2) {
    opacity: 0;
    top: 22px;
    right: 19px;
}

.hamburger-btn span:nth-child(3) {
    opacity: 1;
    bottom: 22px;
    left: 19px;
    transform: rotate(-45deg);
}

@media (min-width: 769px) {
    .hamburger-btn:hover:before {
        opacity: 1;
    }

    .is-menu-open .hamburger-btn:hover:before {
        opacity: 0;
    }

    .is-menu-open .hamburger-btn:hover span::before {
        opacity: 1;
    }

    .hamburger-btn:hover span:nth-child(1) {
        transform: rotate(-30deg);
    }

    .hamburger-btn:hover span:nth-child(3) {
        transform: rotate(-30deg);
    }
}

body.is-menu-open .hamburger-btn {
    background: rgba(22, 22, 22, 0);
}

body.is-menu-open .hamburger-btn span {
    background: #161616;
    width: 30px;
}

body.is-menu-open .hamburger-btn span:nth-child(1) {
    transform: rotate(45deg);
    top: 28.5px;
    left: 15px;
}

body.is-menu-open .hamburger-btn span:nth-child(2) {
    opacity: 1;
    transform: rotate(-45deg) translateX(3px) translateY(-6.5px);
    top: 28.5px;
    width: 12px;
    right: 15px;
}

body.is-menu-open .hamburger-btn span:nth-child(3) {
    transform: rotate(-45deg) translateX(-3px) translateY(6.5px);
    bottom: 28.5px;
    width: 12px;
    left: 15px;
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#menu-plate {
    position: fixed;
    top: var(--plate-offset);
    left: var(--plate-offset);
    right: var(--plate-offset);
    bottom: auto;
    width: calc(100% - var(--plate-offset) * 2);
    max-height: calc(100vh - var(--plate-offset) * 2);
    display: flex;
    flex-direction: column;
    z-index: 1002;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease 0.3s, visibility 0s linear 0.6s;
    max-width: 1420px;
    margin: 0 auto;
}

body.is-menu-open #menu-plate {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear;
}

#menu-plate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    clip-path: inset(calc(var(--origin-y, 50) * 1px) 0 calc(100% - var(--origin-y, 50) * 1px) 0 round 24px);
    transition: clip-path 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-menu-open #menu-plate-bg {
    clip-path: inset(0 0 0 0 round 24px);
}

#menu-plate-bg:before {
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    max-width: 720px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 24px;
    overflow: hidden;
    background: url('../imgs/common/logo_bg.svg') no-repeat;
    background-size: 100% auto;
    background-position: 0 -15%;
    opacity: 0.4;
}

.menu-plate-inner-scroll {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: auto;
    display: block;
    z-index: 1;
}

.menu-plate-inner-scroll::-webkit-scrollbar {
    width: 6px;
}

.menu-plate-inner-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.menu-plate-inner-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.menu-plate-inner {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 160px 0 80px;
    justify-content: flex-end;
    display: flex;
    align-items: flex-start;
}

body.is-menu-open {
    overflow: hidden;
}

body.is-menu-open #menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.is-menu-open #menu-plate {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.1s ease 0s, visibility 0s linear 0s;
}

body.is-menu-open #menu-plate-bg {
    clip-path: inset(0 0 0 0 round 24px);
}

.menu-cols {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    width: 53%;
}

.menu-cols>:nth-child(1) li {
    font-size: 2.4rem;
}

.menu-cols>:nth-child(2) {
    padding-top: 8px;
}

.menu-cols>:nth-child(2) li {
    font-size: 1.6rem;
}

.header-nav.sp-only,
.menu-col {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

body.is-menu-open .header-nav.sp-only,
body.is-menu-open .menu-col {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-menu-open .menu-col:nth-child(1) {
    transition-delay: 0.2s;
}

body.is-menu-open .menu-col:nth-child(2) {
    transition-delay: 0.4s;
}

body.is-menu-open .header-nav.sp-only {
    transition-delay: 0.6s;
}


.menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}

.menu-col li {
    margin-bottom: 18px;
    padding-left: 26px;
    position: relative;
    display: block;
}

.menu-col li:before {
    content: '';
    position: absolute;
    display: block;
    background: url('../imgs/common/navi_icon.svg') no-repeat center center;
    width: 21px;
    height: 100%;
    left: 20px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transform: rotate(-135deg);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

@media (min-width: 769px) {
    .menu-col li:hover:before {
        transform: rotate(0deg);
        left: 0;
        opacity: 1;
    }
}

.menu-col a {
    text-decoration: none;
}

.section {
    width: 100%;
    position: relative;
    display: block;
    padding-bottom: 200px;
}

.section>.inner {
    width: calc(100% - 120px);
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.inner.whitePlate {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 110px 150px 100px;
}

.inner.blackPlate {
    background: rgba(19, 43, 67, 0.85);
    border-radius: 24px;
    padding: 110px 150px 100px;
}

@media (max-width: 1100px) {
    .header-inner {
        width: calc(100% - 40px);
    }

    .inner.blackPlate,
    .inner.whitePlate {
        padding: 110px 50px 100px;
    }
}

#top-home-img {
    overflow-x: hidden;
}

#top-home-img>.inner {
    margin-top: 60px;
    padding: 110px 50px 100px;
}

#top-home-img>.inner:before,
#top-home-img>.inner:after {
    content: '';
    position: fixed;
    display: block;
    height: auto;
    transition: transform 0.7s;
    z-index: 0;
}

#top-home-img>.inner:before {
    background: url('../imgs/common/part01.svg') no-repeat;
    width: 220px;
    aspect-ratio: 1 / 2;
    left: -66px;
    top: -122px;
}

#top-home-img>.inner:after {
    background: url('../imgs/common/part02.svg') no-repeat;
    width: 442px;
    aspect-ratio: 442 / 505;
    right: 0;
    bottom: 0;
}

.scrolled #top-home-img>.inner:before {
    transform: translateY(-150%);
    transition: transform 2s;
}

.scrolled #top-home-img>.inner:after {
    transform: translateX(150%);
    transition: transform 2s;
}


.white-box {
    background: #FFFFFF;
    display: inline-block;
    padding: 0 10px 3px;
}

.step-ul {
    display: flex;
    position: relative;
    gap: 40px;
    margin: 23px auto;
}

.step-ul li {
    font-size: clamp(1.2rem, 0.48vw + 1.05rem, 1.6rem);
    color: #FFFFFF;
    position: relative;
    display: block;
    width: 33.33%;
}

.step-ul li>span {
    position: relative;
    display: block;
    text-align: center;
}

.step-ul li:before {
    content: '';
    width: calc(100% + 30px);
    height: 100%;
    top: 0;
    left: -15px;
    background: linear-gradient(to right,
            #0B308E 0%,
            #0665B5 33%,
            #028CD2 62%,
            #00A5E4 86%,
            #00AEEB 100%);
    position: absolute;
    display: block;
    transform: skewX(-45deg);
}

.top-text p {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    width: 100%;
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 2.18vw + 0.78rem, 3.4rem);
    line-height: 1.2;
    color: #231815;
    gap: 8px;
    font-weight: 700;
}

.top-text p:last-child {
    font-size: clamp(2.2rem, 2.91vw + 1.31rem, 4.6rem);
    text-align: center;
    justify-content: center;
}

.top-text p>span {
    flex-shrink: 0;
    font-feature-settings: "palt";
}

.top-text p>span:last-child {
    width: 2em;
    text-align: right;
}

.top-text p .glowing-text {
    font-size: clamp(3.4rem, 4.36vw + 1.76rem, 7.0rem);
    font-weight: 700;
}

#top-home-img .content-box.flexBlock {
    justify-content: space-around;
    align-items: center;
    margin-bottom: 150px;
}

#top-home-img .content-box.flexBlock>.img {
    width: 23%;
    max-width: 300px;
}

#top-home-img .content-box.flexBlock>.text {
    width: 60%;
    max-width: 635px;
}

.wpcf7-turnstile {
    margin: 30px auto;
}

.btns-contact {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    width: 90%;
    max-width: 800px;
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 24px;
    z-index: 1;
}

.btns-contact:before,
.btns-contact:after {
    content: '';
    position: absolute;
    display: block;
    aspect-ratio: 1;
    width: 15%;
    height: auto;
    max-width: 120px;
    transform-origin: center center;
}

.btns-contact:before {
    background: #5a6fab;
    left: 0;
    top: 0;
    transform: rotate(45deg) translateX(-70%);
}

.btns-contact:after {
    background: #6fc4ed;
    bottom: 0;
    right: 0;
    transform: rotate(45deg) translateX(70%);
}

.btns-contact>.gradient-text {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    font-size: 2.4rem;
    line-height: normal;
}

.btns-contact .btns-area {
    justify-content: center;
    margin-bottom: 15px;
    gap: 20px;
}

.btns-contact .btns-area>div {
    display: flex;
    flex-direction: column;
    width: 50%;
    max-width: 264px;
    align-items: center;
}

.btns-contact .btns-area>div>span {
    color: #FF6600;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 3px;
    position: relative;
    display: flex;
    align-items: center;
}

.btns-contact .btns-area>div>span>span {
    padding: 0 10px;
}

.btns-contact .btns-area>div>span:before,
.btns-contact .btns-area>div>span:after {
    content: '';
    width: 2px;
    height: 15px;
    background: #FF6600;
    bottom: 0;
    position: relative;
    display: block;
}

.btns-contact .btns-area>div>span:before {
    left: 0;
    transform: rotate(-26deg);
}

.btns-contact .btns-area>div>span:after {
    right: 0;
    transform: rotate(26deg);
}

.btns-contact .btns-area .animated-btn {
    height: 50px;
    padding: 5px 24px;
    width: 100%;
    letter-spacing: 0.05em;
}

.btns-contact .btns-area>div:nth-child(1) .animated-btn .round {
    color: #FF6600;
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    z-index: 3;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #FFFFFF;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    transition: color 0.3s;
    font-feature-settings: "palt";
}

.btns-contact .btns-area>div:nth-child(1) .animated-btn .btn-content {
    justify-content: flex-end;
    width: 100%;
    gap: 24px;
    max-width: 216px;
}

.btns-contact .btns-area>div:nth-child(2) .animated-btn .btn-content {
    justify-content: flex-end;
    width: 100%;
    max-width: 216px;
}

@media (min-width: 769px) {
    .btns-contact .btns-area>div:nth-child(1) .animated-btn:hover .round {
        color: #0B308E;
    }
}

.btns-contact .tel-area {
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.btns-contact .tel-area>a,
.btns-contact .tel-area>span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.btns-contact .tel-area>:nth-child(1) {
    height: 28px;
    border-radius: 4px;
    background: #8DA3B8;
    font-size: 1.2rem;
    color: #FFFFFF;
    padding: 0 15px;
    line-height: normal;
}

@media (max-width: 900px) {
    .btns-contact .tel-area>:nth-child(1) {
        font-size: 1.0rem;
        padding: 0 10px 3px
    }
}

@media (max-width: 768px) {
    .btns-contact .tel-area>:nth-child(1) {
        font-size: 1.2rem;
    }
}

.btns-contact .tel-area>:nth-child(1):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background-color: #8DA3B8;
    border-top-right-radius: 4px;
}

.btns-contact .tel-area>:nth-child(2) {
    font-size: 2.8rem;
    color: #1F1F1F;
    margin: 0 10px 0 18px;
}

.btns-contact .tel-area>:nth-child(2)>img {
    margin-right: 5px;
}

.btns-contact .tel-area>:nth-child(3) {
    font-size: 1.3rem;
    color: #1F1F1F;
}


.content-box {
    width: 100%;
}

#topServices {
    height: auto;
    min-height: 100vh;
    display: block;
    position: relative;
}

.topServices-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    width: calc(100% - 120px);
}

@media (max-width: 1100px) {

    .topServices-container,
    .section>.inner {
        width: calc(100% - 40px);
    }

    #top-home-img .inner.whitePlate {
        padding: 110px 0px 100px;
    }

    #top-home-img .content-box.flexBlock>.text {
        margin-right: 0;
    }

    #top-home-img .content-box.flexBlock>.text {
        width: 56%;
    }

    .btns-contact {
        padding: 20px 20px 15px 20px;
    }
}

.topServices-left {
    width: calc(50% - 10px);
    position: sticky;
    top: 20vh;
    padding-right: 10px;
}

.grad-text {
    margin-bottom: 20px;
    display: inline-block;
    color: #0665B5;
    /*
    background: linear-gradient(90deg, #0B308E 0%, #0665B5 33%, #028CD2 62%, #00A5E4 86%, #00AEEB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
    */
}

.grad-text.white-text {
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: currentcolor !important;
    background: none;
    color: #FFFFFF;
}

.split-line {
    opacity: 0;
}

.is-split.split-line {
    opacity: 1;
}

.split-line span {
    display: inline-block;
    transform: scale(0) rotate(15deg);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.grad-text.is-visible .split-line span {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.topServices-left p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.bg-geometric-container,
.stack-card-wrapper {
    transform: translateZ(0);
}

.title-area {
    letter-spacing: 0.3em;
    line-height: 1.4;
}

.title-area>p.small {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.title-area h2 {
    font-size: clamp(3.0rem, 2.91vw + 0.85rem, 5.6rem);
}

.content-box.flexBlock {
    justify-content: space-between;
}

.faq-answer .animated-btn,
.content-box .animated-btn {
    width: calc(100% - 40px);
    font-size: 1.8rem;
    height: 70px;
    padding: 20px;
    max-width: 350px;
    margin-top: 60px;
}

.faq-answer .animated-btn {
    margin-top: 30px;
    height: 50px;
    max-width: 285px;
    font-size: 1.4rem;
    width: 100%;
}

.faq-answer .animated-btn .icon {
    position: absolute;
    right: 15px;
}

.content-box .animated-btn .icon {
    position: absolute;
    right: 35px;
}

.faq-answer .animated-btn .btn-content,
.content-box .animated-btn .btn-content {
    width: 100%;
    justify-content: flex-start;
    position: absolute;
    padding-left: 46px;
}

.topServices-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
    position: relative;
    width: 50%;
    margin-bottom: -20vh;
    overflow: visible;
}

.stack-card-wrapper {
    position: sticky;
    top: 20vh;
    margin-bottom: 20vh;
    height: auto;
    aspect-ratio: 1106 / 1160;
    width: 100%;
    perspective: 1200px;
}

.stack-card-wrapper:last-child {
    margin-bottom: 20vh;
}

.stack-card-scale {
    aspect-ratio: 1106 / 1160;
    width: 100%;
    padding-left: 10px;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
}

.stack-card-scale img.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.stack-card-scale img.plate {
    width: 53%;
    height: auto;
    position: absolute;
    display: block;
    left: 0;
    top: 3.8%;
}

.stack-card-scale .stack-button {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
}

.stack-card-scale .stack-button>.btn-content {
    width: 100%;
    justify-content: center;
}

.topNavigation {
    position: sticky;
    margin-bottom: 3vh;
    z-index: 10;
    margin-top: 10vh;
    transform: translateX(20px);
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-size: 1.2rem;
    font-weight: 700;
}

.topNavigation .nav-item {
    color: #8EA2E3;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    width: 33.33%;
    padding-bottom: 16px;
    text-align: center;
    cursor: pointer;
}

.topNavigation .nav-item:before,
.topNavigation .nav-item:after {
    content: '';
    position: absolute;
    display: block;
}

.topNavigation .nav-item:before {
    left: 0;
    width: 100%;
    height: 1px;
    background: #8EA2E3;
    bottom: 4px;
}

.topNavigation .nav-item:nth-child(1):before {
    left: 50%;
    width: 50%;
}

.topNavigation .nav-item:after {
    width: 8px;
    height: 8px;
    background: #8EA2E3;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    margin-left: -4px;
}

.topNavigation .nav-item.active {
    color: #FFFFFF;
}

.topNavigation .nav-item.active:after {
    background: #FFFFFF;
}

@media (min-width: 769px) {
    .topNavigation .nav-item:hover {
        color: #FFFFFF;
    }

    .topNavigation .nav-item:hover:after {
        background: #FFFFFF;
    }
}

#topEquipment .content-box>.img {
    width: 37.5%;
    transform: translateX(-60px);
}

#topEquipment .content-box>.text {
    width: 50%;
}

@media (max-width: 1100px) {
    #topEquipment .content-box>.img {
        transform: translateX(-20px);
    }
}

.whitePlate .title-area .small.semibold {
    color: #000000;
}

.whitePlate .content-box.flexBlock .text>p {
    color: #222222;
}

.clip-anim {
    overflow-x: hidden;
    perspective: 500px;
    transform-style: preserve-3d;
    -webkit-clip-path: inset(30% 30% 30% 30%);
    clip-path: inset(30% 30% 30% 30%);
    transition: -webkit-clip-path 1200ms;
    transition: clip-path 1200ms;
    transition: clip-path 1200ms, -webkit-clip-path 1200ms;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.is-visible.clip-anim {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

#topAbout .content-box.flexBlock>.text {
    width: calc(50% - 30px);
}

#topAbout .content-box.flexBlock>.img {
    width: 50%;
    margin-top: -80px;
}

#topAbout .content-box.flexBlock>.img img {
    border-radius: 4px;
}

#topAbout .title-area {
    z-index: 1;
}

#topAbout .title-area h2 {
    margin-bottom: 50px;
}

#topNews .title-area {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 68px;
}

#topNews .title-area .hover-gradient-text.hasIcon {
    margin-top: 7px;
}

.news-slider-wrapper {
    width: calc(60% + 60px);
    overflow: hidden;
    position: relative;
    padding-bottom: 68px;
    transform: translateX(60px);
}

.news-slider-wrapper .swiper-button-prev,
.news-slider-wrapper .swiper-button-next {
    bottom: 0;
    width: 38px;
    height: 38px;
    left: auto;
    top: auto;
    margin: 0;
}

.news-slider-wrapper .swiper-button-prev .stack-button,
.news-slider-wrapper .swiper-button-next .stack-button {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.news-slider-wrapper .btn-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-slider-wrapper .swiper-button-prev {
    right: 110px;
}

.news-slider-wrapper .swiper-button-next {
    right: 60px;
}

.newsSwiper {
    width: 100%;
}

#topNews .newsSwiper .swiper-slide {
    width: 320px;
    height: 340px;
    background: rgba(255, 255, 255, 1);
}

/*#topNews .newsSwiper .swiper-slide.cat-info {
    background: rgba(255, 255, 255, 1);
}*/

#topNews .newsSwiper .swiper-slide>a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px;
}

#topNews .newsSwiper .swiper-slide>a>.tag.flexBlock {
    position: absolute;
    top: 26px;
    left: 26px;
    height: 22px;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    gap: 5px;
    overflow: hidden;
}

#topNews .newsSwiper .swiper-slide>a>.tag.flexBlock>span {
    height: 100%;
    position: relative;
    display: block;
}

#topNews .newsSwiper .swiper-slide>a>.tag.flexBlock>span:nth-child(1) {
    width: 120px;
    margin-left: -10px;
    padding-left: 10px;
}

#topNews .newsSwiper .swiper-slide>a>.tag.flexBlock>span:nth-child(2) {
    width: 70px;
}

#topNews .newsSwiper .swiper-slide>a>.tag.flexBlock>span:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    transform: skew(-45deg);
    width: 100%;
    height: 100%;
    z-index: 1;
}

#topNews .newsSwiper .swiper-slide>a>.tag.flexBlock>span>span {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 0 20px;
}

#topNews .newsSwiper .swiper-slide.cat-info>a>.tag.flexBlock>span:before {
    background: #0290D5;
}

#topNews .newsSwiper .swiper-slide.cat-event>a>.tag.flexBlock>span:before {
    background: #8BA2B7;
}

#topNews .newsSwiper .swiper-slide.cat-cases>a>.tag.flexBlock>span:before {
    background: #002579;
}

#topNews .newsSwiper .swiper-slide>a>.tag.flexBlock>span:nth-child(2):before {
    background: #E93D40;
}

#topNews .newsSwiper .swiper-slide>a>.img {
    width: 100%;
    aspect-ratio: 326 / 226;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../imgs/news/thumbnail_news.jpg") no-repeat;
    background-size: contain;
    border-radius: 4px;
    overflow: hidden;
}

#topNews .newsSwiper .swiper-slide>a>.img>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#topNews .newsSwiper .swiper-slide>a>.date {
    font-size: 1.4rem;
    margin: 7px 0;
    position: relative;
}

#topNews .newsSwiper .swiper-slide>a>.text-ellipsis {
    font-size: 1.4rem;
    color: #000000;
    line-height: 1.6;
}

#topNews .swiper-button-prev .swiper-navigation-icon,
#topNews .swiper-button-next .swiper-navigation-icon {
    display: none;
}

#topFaq>.inner {
    max-width: 1120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#topFaq>.inner>.hover-gradient-text {
    align-self: flex-end;
}

.hover-gradient-text.hasIcon {
    letter-spacing: 0.1em;
}

#topFaq .title-area {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    border-radius: 14px;
    margin-bottom: 20px;
    padding: 4px;
    background: #fff;
    z-index: 1;
    color: #000000;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(to right, #0B308E 0%, #0665B5 33%, #028CD2 62%, #00A5E4 86%, #00AEEB 100%);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.faq-item::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 12px;
    background: #fff;
    z-index: -1;
}

@media (min-width: 769px) {
    .faq-item:hover::before {
        opacity: 1;
    }
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.8rem;
    font-weight: bold;
}

.faq-question .faq-text {
    padding-left: 50px;
    background: url('../imgs/common/q.svg') no-repeat;
    background-position: 0 6px;
    min-height: 35px;
    color: #000000;
}

.faq-icon-btn {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.faq-item.is-open .faq-icon-btn {
    transform: rotate(45deg);
}

.faq-icon-btn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
}

.faq-icon-btn .icon-hover {
    opacity: 0;
}

@media (min-width: 769px) {
    .faq-question:hover .icon-default {
        opacity: 0;
    }

    .faq-question:hover .icon-hover {
        opacity: 1;
    }
}

.faq-answer {
    display: none;
    overflow: hidden;
}

.faq-answer-inner {
    position: relative;
    padding: 40px 50px;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 500;
}

.faq-answer-inner>span {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: url('../imgs/common/a.svg') no-repeat;
    background-position: 0 0px;
    min-height: 35px;
    padding-left: 50px;
}

.faq-answer-inner>span a {
    margin-top: 20px;
}

.faq-answer-inner:before {
    content: '';
    position: absolute;
    width: calc(100% - 100px);
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #D2D2D2;
}


.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.marquee-inner {
    width: 100%;
    height: 282px;
    background-image: url('../imgs/common/marquee.jpg');
    background-repeat: repeat-x;
    background-position: left center;
    background-size: auto 282px;
    will-change: background-position;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    animation: scroll-pc 80s linear infinite;
}

@media (max-width: 768px) {
    .marquee-inner {
        height: 126px;
        background-size: auto 126px;
        animation: scroll-sp 80s linear infinite;
    }
}

@keyframes scroll-pc {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -3248px 0;
    }
}

@keyframes scroll-sp {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: calc(-3248px * (126 / 282)) 0;
    }
}

.page-top-area {
    width: 100%;
    margin: -100px auto -20px;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-top {
    position: relative;
    display: inline-block;
    width: 138px;
    height: 112px;
    background-image: url('../imgs/common/page-top.png');
    background-size: 300% 100%;
    background-position: 0% 0;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

#page-top:after {
    content: '';
    position: absolute;
    display: block;
    background: url('../imgs/common/huki.png') no-repeat;
    background-size: contain;
    width: 96px;
    height: 86px;
    transform: translate(-62%, -100%);
    transform-origin: right bottom;
}

#page-top.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.page-top-clone {
    position: fixed;
    width: 138px;
    height: 112px;
    background-image: url('../imgs/common/page-top.png');
    background-size: 300% 100%;
    background-repeat: no-repeat;
    z-index: 9999;
    pointer-events: none;
    will-change: transform, opacity;
    animation:
        sprite-anim 0.2s step-end infinite,
        fly-anim 1.2s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}

@media (max-width: 768px) {
    #page-top:after {
        width: 80px;
        height: 72px;
    }

    #page-top,
    .page-top-clone {
        width: calc(138px * (85 / 112));
        height: 85px;
    }
}

@keyframes sprite-anim {
    0% {
        background-position: 50% 0;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: 50% 0;
    }
}

@keyframes fly-anim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes float-right {

    0%,
    100% {
        transform: translate(-62%, -100%) rotate(0);
    }

    50% {
        transform: translate(-72%, -110%) rotate(8deg);
    }
}

.bottom-banner img {
    width: 100%;
}

.bottom-banner {
    position: relative;
    display: block;
    width: 640px;
    height: auto;
    margin: 80px auto 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bottom-banner .img-left {
    width: 215px;
    left: -110px;
    top: -43px;
}

.bottom-banner .img-right {
    width: 206px;
    right: -110px;
    bottom: -30px;
}

.bottom-banner .img-left,
.bottom-banner .img-right {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    height: auto;
}

@media (min-width: 769px) {

    .bottom-banner:hover {
        transform: scale(1.1);
    }

    .bottom-banner:hover .img-left {
        transform: translateY(-10px) rotate(-10deg) scale(1.05);
    }

    .bottom-banner:hover .img-right {
        transform: translateY(-10px) rotate(10deg) scale(1.05);
    }

    #page-top:hover:after {
        animation: float-right 1.2s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .bottom-banner {
        width: 100%;
        margin: 100px auto 80px;
    }

    .bottom-banner .img-left {
        width: 150px;
        left: -20px;
        top: -70px;
    }

    .bottom-banner .img-right {
        width: 160px;
        height: auto;
        right: -46px;
        bottom: -72px;
    }
}

.bottom-info-area {
    padding: 130px 20px 40px;
}

.bottom-info-area>.inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.bottom-link {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.4rem;
}

.bottom-link ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bottom-link ul:nth-child(1) {
    gap: 45px;
}

.bottom-link ul:nth-child(2) {
    gap: 20px;
}

.bottom-link ul li a {
    position: relative;
    display: inline-block;
}

.bottom-info-area>.inner>.flexBlock {
    align-items: flex-end;
}

.bottom-info-area>.inner>.flexBlock>.left {
    width: 58%;
}

.bottom-info-area>.inner>.flexBlock>.right {
    width: 42%;
}

.bottom-info-area>.inner>.flexBlock>.left>.flexBlock {
    background: rgba(255, 255, 255, 0.59);
    border-radius: 4px;
    padding: 20px;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    color: #0B308E;
    font-size: 1.2rem;
    max-width: 630px;
    line-height: 1.5;
}

.bottom-info-area>.inner>.flexBlock>.left>.flexBlock>:nth-child(1) {
    width: 216px;
}

.bottom-info-area>.inner>.flexBlock>.right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.bottom-info-area>.inner>.flexBlock>.right>:nth-child(2) {
    font-size: 4.0rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 600;
    margin-top: 15px;
    gap: 5px;
}

.bottom-info-area>.inner>.flexBlock>.right>:nth-child(2) {
    font-size: 2.4rem;
    font-weight: 500;
}

.bottom-info-area>.inner>.flexBlock>.right>:nth-child(3) {
    font-size: 1.6rem;
    font-weight: 400;
}

footer {
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 30px;
    position: relative;
}

.footer-graphics {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bottom-area.section {
    overflow-x: hidden;
}

.graphic-before,
.graphic-after {
    position: absolute;
    bottom: 0;
    transform: translateY(var(--move, 100%));
    background-size: cover !important;
}

.graphic-before {
    width: 90%;
    right: 0;
    background: url('../imgs/common/part-footer02.svg') no-repeat;
    aspect-ratio: 1440 / 1475;
}

.graphic-after {
    width: 20%;
    left: 0;
    background: url('../imgs/common/part-footer01.svg') no-repeat;
    aspect-ratio: 289 / 473;
}

#subTop-title {
    padding-top: 200px;
}

#subTop-title .inner {
    padding: 0 100px 0 200px;
}

#subTop-title .inner .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#subTop-title .inner .left .title-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#subTop-title .inner .left .title-area .logo {
    width: 80px;
}

@media (max-width: 1280px) {
    #subTop-title .inner {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --plate-offset: 10px;
    }

    #subTop-title {
        padding-top: 100px;
    }

    #subTop-title .inner .left .title-area .logo {
        width: 58px;
    }

    #subTop-title .inner.flexBlock {
        flex-direction: column;
        padding-left: 15px;
        padding-right: 15px;
    }

    #subTop-title .inner.flexBlock>.left {
        width: 100%;
    }

    #subTop-title .inner.flexBlock>.right {
        width: 100%;
        margin: 30px auto 0;
    }

    body.is-menu-open #global-header.is-fixed,
    body.is-menu-open #global-header {
        top: 15px;
    }

    .home #global-header,
    #global-header {
        top: 0;
        background: rgba(255, 255, 255, 0.9);
    }

    .home #global-header .header-inner h1 {
        pointer-events: all;
        opacity: 1;
        transform: translateY(0);
    }

    body.is-menu-open #global-header .header-inner h1 {
        left: 0px;
    }

    .header-inner h1>a img {
        width: 100%;
    }

    .hamburger-btn {
        transform: scale(0.87);
    }

    .header-inner {
        justify-content: space-between;
        padding: 0px 20px;
        width: 100%;
    }

    .is-menu-open .header-inner {
        padding: 0px 25px;
    }

    .header-inner h1 {
        position: relative;
        width: 46%;
        max-width: 172px;
        height: auto;
        border-radius: 0;
        overflow: hidden;
        left: 0px;
        background: none !important;
    }

    .header-nav {
        display: none;
    }

    .menu-cols {
        flex-direction: column;
        gap: 0px;
        width: 100%;
    }

    .menu-cols> :nth-child(1) li {
        font-size: 1.8rem;
    }

    .menu-cols> :nth-child(2) li {
        font-size: 1.4rem;
    }

    .menu-plate-inner {
        padding: 100px 0 70px;
        width: calc(100% - 60px);
        flex-direction: column;
    }

    #menu-plate-bg:before {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-size: 120% auto;
        background-position: 0 top;
    }

    .header-nav.sp-only {
        margin: 10vh auto 0;
        max-width: 400px;
    }

    .header-nav.sp-only>ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-nav.sp-only ul li:nth-child(1)>a {
        min-width: 100px;
    }

    .header-nav.sp-only ul li:nth-child(2)>a {
        min-width: 156px;
    }

    .header-nav.sp-only ul li:nth-child(3) {
        margin-top: 10px;
    }

    .header-nav.sp-only ul li:nth-child(3)>a {
        min-width: 186px;
    }

    .content-box {
        padding: 20px;
        width: 90%;
    }


    .topServices-container {
        flex-direction: column;
    }

    .topServices-left {
        width: 100%;
        position: relative;
        top: auto;
        margin-bottom: 40px;
        text-align: left;
    }

    #top-home-img>.inner:before {
        width: 110px;
        left: -33px;
        top: -69px;
        background-size: contain;
    }

    #top-home-img>.inner:after {
        width: 200px;
        background-size: contain;
    }

    #top-home-img .inner.whitePlate {
        padding: 60px 0px 50px;
    }

    #top-home-img>.inner {
        margin-top: 15px;
    }

    .topServices-container,
    .section>.inner {
        width: calc(100% - 30px);
    }

    #top-home-img .content-box.flexBlock {
        flex-direction: column-reverse;
        margin-bottom: 70px;
    }

    #top-home-img .content-box.flexBlock>.img {
        width: 36%;
    }

    #top-home-img .content-box.flexBlock>.text {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .step-ul {
        flex-direction: column;
        gap: 10px;
        margin: 0 auto 20px;
        max-width: 230px;
    }

    .step-ul li {
        width: 100%;
    }

    .content-box {
        padding: 15px 0;
        width: 100%;
    }

    #topServices .content-box {
        padding: 15px;
    }

    #top-home-img .top-text {
        margin-left: -15px;
    }

    .btns-contact .btns-area {
        flex-direction: column;
        align-items: center;
    }

    .btns-contact .btns-area>div {
        width: 100%;
    }

    .btns-contact>.gradient-text {
        font-size: 2.0rem;
        line-height: 1.6;
    }

    .btns-contact {
        padding: 30px 15px 25px;
        max-width: 320px;
        width: 100%;
    }

    .btns-contact .tel-area {
        flex-direction: column;
        gap: 7px;
        margin-top: 30px;
    }

    .btns-contact .tel-area> :nth-child(1):after {
        display: none;
    }

    .btns-contact .tel-area> :nth-child(2) {
        margin: 0 auto;
    }

    .btns-contact:before,
    .btns-contact:after {
        width: 40%;
    }

    .section {
        padding-bottom: 80px;
    }

    .title-area>p.small {
        font-size: 1.2rem;
    }

    .topNavigation {
        margin-bottom: 2vh;
        margin-top: 5vh;
        transform: translateX(0px);
        justify-content: center;
    }

    .topNavigation .nav-item:last-child:before {
        width: 50%;
    }

    .topServices-right {
        width: 100%;
        margin-bottom: 0vh;
    }

    .topNavigation.sp-only {
        position: sticky;
        top: 70px;
        z-index: 100;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
    }

    .content-box.flexBlock {
        flex-direction: column;
    }

    #top-home-img .content-box.flexBlock>.img,
    .content-box.flexBlock>.text {
        order: 1;
    }

    #top-home-img .content-box.flexBlock>.text,
    .content-box.flexBlock>.img {
        order: 2;
    }

    #topEquipment .content-box>.text {
        width: 100%;
    }

    #topEquipment .content-box>.img {
        width: 100%;
        transform: translateX(0px);
        margin-top: 40px;
    }

    .image-slider .swiper-pagination {
        padding-left: 0px !important;
    }

    .content-box .animated-btn.sp-only.flexBlock {
        margin: 30px auto;
    }

    .inner.blackPlate,
    .inner.whitePlate {
        padding: 60px 22px 40px;
        width: calc(100% - 20px);
    }

    #topAbout .content-box.flexBlock>.text {
        width: 100%;
    }

    #topAbout .content-box.flexBlock>.img {
        width: 100%;
        margin-top: 30px;
    }

    .content-box .animated-btn .icon {
        right: 40px;
    }

    .content-box .animated-btn {
        width: calc(100% - 20px);
        font-size: 1.6rem;
        height: 60px;
    }

    #topAbout .animated-btn.sp-only.flexBlock {
        order: 3;
    }

    .whitePlate .content-box {
        padding: 15px 0;
    }

    #topNews .title-area {
        width: 100%;
        align-items: center;
    }

    .news-slider-wrapper {
        width: 100%;
        transform: translateX(0px);
    }

    .faq-question {
        padding: 20px 15px;
        font-size: 1.4rem;
    }

    .faq-answer-inner {
        padding: 20px 15px;
        font-size: 1.3rem;
    }

    .faq-question .faq-text {
        padding-left: 30px;
        background-size: 18px;
        background-position: 0 3px;
        min-height: 30px;
    }

    .faq-answer-inner>span {
        min-height: 30px;
        padding-left: 30px;
        background-size: 18px;
        background-position: 0 3px;
    }

    .faq-answer-inner::before {
        width: calc(100% - 40px);
    }

    .page-top-area {
        margin: 0px auto -10px;
    }

    .bottom-info-area {
        padding: 60px 15px 30px;
    }

    .bottom-link {
        display: none !important;
    }

    .bottom-info-area>.inner>.flexBlock {
        align-items: center;
        flex-direction: column;
    }

    .bottom-info-area>.inner>.flexBlock>.left,
    .bottom-info-area>.inner>.flexBlock>.right {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .bottom-info-area>.inner>.flexBlock>.right {
        order: 1;
    }

    .bottom-info-area>.inner>.flexBlock>.left {
        order: 2;
        margin-top: 30px;
    }

    .bottom-info-area>.inner>.flexBlock>.left>.flexBlock {
        padding: 15px;
        gap: 20px;
        justify-content: center;
        flex-direction: column;
    }

    .bottom-info-area>.inner>.flexBlock>.left>.flexBlock {
        max-width: 263px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

.swiper-slide {
    border-radius: 4px;
}

.rel {
    position: relative;
    display: block;
}

.abs {
    position: absolute;
    display: block;
}

.flexBlock {
    display: flex;
}

.pc-only {
    display: block !important;
}

.pc-only.flexBlock {
    display: flex !important;
}

.sp-only,
.sp-only.flexBlock {
    display: none !important;
}

.tel-link {
    pointer-events: none;
    cursor: default;
}

@media (max-width: 768px) {
    .tel-link {
        pointer-events: auto;
    }

    .sp-only {
        display: block !important;
    }

    .sp-only.flexBlock {
        display: flex !important;
    }

    .pc-only,
    .pc-only.flexBlock {
        display: none !important;
    }
}