/* fonts */

/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
}

section {
    position: relative;
}

a {
    text-decoration: none;
}

button {
    padding: 0;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

body {
    font-family: var(--font);
    font-size: 1em;
    color: var(--black-primary);
    font-weight: 400;
    letter-spacing: .03em;
    background-color: #EEF1F5;
    overflow-x: hidden;
    line-height: 28px;
}

section {
    position: relative;
}


/* variable */

 :root {
    --brand: #0062AD;
    --black-primary: #242429;
    --btn-primary: rgba(0, 98, 173, 0.8);
    --mute: rgba(0, 98, 173, 0.25);
    --gradient: linear-gradient(111.78deg, #34C5F0 -7.66%, #0062AD 95.23%);
    --nav-link: #657595;
/*    --font: 'Poppins', sans-serif; */
    --font: 'Noto Sans JP', sans-serif;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin-top: 100px;
}

.section-2 {
    margin-top: 200px;
}

.flex {
    display: flex;
    column-gap: 60px;
    /* align-items: center; */
    /* flex-wrap: wrap; */
}

.reverse {
    flex-direction: row-reverse;
}

.align-center {
    align-items: center;
}

.section-content {
    width: 50%;
}

.w {
    width: 99%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-top {
    margin-top: 10%;
}

.mr {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-right: -3%;
    white-space: nowrap;
}

.t {
    margin-right: -20% !important;
}

.ml {
    position: relative;
    margin-left: -10%;
    white-space: nowrap;
}

.hide {
    overflow: hidden;
}

.center {
    text-align: center;
}

.section-top-title {
    font-size: 3.5em;
    line-height: 72px;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.top-title {
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    letter-spacing: .04em;
}

.title {
    color: var(--mute);
    font-size: 8.75em;
    line-height: 200px;
    font-weight: 600;
}

.top-big-title {
    z-index: -1;
}

.small-title {
    font-size: 2em;
    line-height: 67px;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    font-size: 1.5em;
    line-height: 30px;
    color: var(--brand);
}

.subtitle {
    color: var(--black-secondary);
    margin-top: 10px;
    line-height: 30px;
}

.absolute {
    position: absolute;
    right: 0;
    /* inset: 0 0 auto auto; */
}

.full {
    width: 100% !important;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: .95em;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.btn-primary {
    background-color: var(--btn-primary);
    font-weight: 700;
    color: #fff;
}

.btn-primary:hover {
    background-color: rgba(0, 98, 173);
}

.btn-navbar {
    padding: 12px 32px !important;
    border: 1px solid var(--brand);
    font-weight: 600;
    color: var(--brand);
    background-color: transparent;
}

.btn-navbar:hover {
    color: #fff;
    background-color: var(--brand);
}

.btn-transparent {
    display: flex;
    color: var(--brand);
    column-gap: 10px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.btn-transparent:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.decor {
    position: absolute;
    z-index: -1;
}

.top {
    top: -8%;
    left: 0;
}

.btm {
    bottom: -8%;
    right: 0;
}

.right {
    right: 0;
}

.d-left {
    left: 0;
}

.bottom {
    bottom: 0;
}


/* ------ NAVBAR ------ */

.navbar {
    padding: 20px 0;
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 99;
    box-sizing: border-box;
    transform: translateZ(1000px);
    /* transition: 500ms ease;
    background-color: #fff;
    -webkit-transition: 500ms ease;
    -moz-transition: 500ms ease;
    -ms-transition: 500ms ease;
    -o-transition: 500ms ease; */
    -webkit-transform: translateZ(1000px);
    -moz-transform: translateZ(1000px);
    -ms-transform: translateZ(1000px);
    -o-transform: translateZ(1000px);
}

.nav-bg {
    position: absolute;
    width: 100%;
    height: 80px;
    z-index: -1;
    /* padding: 20px 0; */
    inset: 0 auto auto 0;
    background-color: #fff;
    box-sizing: border-box;
    transition: opacity .1s linear;
    opacity: 0;
    box-shadow: 1px 1px 12px rgb(0 0 0 / 15%);
    -webkit-transition: opacity .1s linear;
    -moz-transition: opacity .1s linear;
    -ms-transition: opacity .1s linear;
    -o-transition: opacity .1s linear;
}

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

.nav-menu {
    display: inline-flex;
    align-items: center;
    column-gap: 40px;
    margin-left: auto;
}

.nav-colored {
    /* background-color: #fff !important;
    box-shadow: 0px -2px 7px -3px #000;
    padding: 20px 0; */
    opacity: 1;
}

.nav-link {
    color: var(--nav-link);
    font-size: .95em;
    font-weight: 600;
    transition: .3s ease;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.nav-link.active {
    color: #33C4EF;
    border-bottom: 2px solid #33C4EF;
}

.sub-wrap {
    display: none;
    position: absolute;
    z-index: 87;
    margin-left: -3%;
}

.sub-menu {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.25);
    padding: 21px 29px;
    margin-top: 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.dropdown-menu:hover .sub-wrap {
    display: block;
}

.sub-menu a {
    display: block;
    margin-bottom: 10px;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #242429;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.dropbtn {
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
  }
/*
  .dropbtn:hover {
    background-color: #2980B9;
  } */

  .dropdown, .language-btn {
    position: relative;
    display: flex;
  }

  .language {
    display: none;
    position: absolute;
    background-color: #fff;
    /* min-width: 10%; */
    width: 120px;
    cursor: pointer;
    top: 0;
    margin-top: 40px;
    margin-left: -3%;
    z-index: 1;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  #language-btm {
    display: none;
    position: absolute;
    background-color: #fff;
    /*min-width: 10%;
    */width: 120px;
    bottom: 0;
    left: 150%;
    /* margin-bottom: 40%; */
    margin-left: -3%;
    z-index: 1;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

#language-btm.show {
    display: block;
}

  .language a, #language-btm a {
    float: none;
    color: var(--black-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .show {display: block;}


.dropdown:hover .dropdown-content {
    display: block;
}

.nav-link:hover {
    color: #33C4EF;
    border-bottom: 2px solid #33C4EF;
}


/* ----- HERO ----- */

.hero {
    margin-top: 8%;
}

.hero .grid {
    gap: 50px;
}

.hero-title {
    font-size: 5.5em;
    line-height: 114px;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-img {
    position: relative;
    /* background-image: url('../images/hero-blue.svg'); */
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    /* width: max-content; */
}

.img-hero {
    position: absolute;
    /* position: relative; */
    z-index: 2;
    margin-right: 20px;
    max-width: 50vw !important;
    right: 0;
    bottom: 0;
}

.img-hero:nth-child(2) {
    margin-left: 20px;
    /* margin-top: -60px; */
    left: 0;
    top: 0;
}

.blob {
    width: 650px;
    height: 550px;
}

.blob-1 {
    width: 400px;
    height: 300px;
}

.blob-2 {
    width: 400px;
    height: 500px;
}

.blob-3 {
    width: 500px;
    height: 400px;
}

.blob, .blob-1, .blob-2, .blob-3 {
    /* position: absolute; */
    background: linear-gradient(111.78deg, #34C5F0 -7.66%, #0062AD 95.23%), linear-gradient(0deg, #C4C4C4, #C4C4C4);
    transition: all .3s ease;
    border-radius: 50%;
    animation: blob 20s infinite linear;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    /* -webkit-animation: blob 20s infinite linear ; */
}

@keyframes blob {
    12.5% {
        border-radius: 37% 63% 70% 30% / 30% 62% 38% 70%;
    }
    25% {
        border-radius: 50% 50% 70% 30% / 52% 62% 38% 48%;
    }
    37.5% {
        border-radius: 33% 67% 18% 82% / 52% 75% 25% 48%;
    }
    50% {
        border-radius: 73% 27% 18% 82% / 52% 32% 68% 48%;
    }
    62.5% {
        border-radius: 73% 27% 74% 26% / 64% 32% 68% 36%;
    }
    75% {
        border-radius: 84% 16% 15% 85% / 55% 79% 21% 45%;
    }
    87.5% {
        border-radius: 12% 88% 69% 31% / 10% 66% 34% 90%;
    }
}

.lottie-hero {
    position: absolute;
    inset: 0;
    width: 600px;
    height: 600px;
}

.scroll {
    display: inline-flex;
    justify-content: center;
    margin-top: 50px;
    align-items: center;
    color: var(--brand);
    font-weight: 700;
    cursor: pointer !important;
}


/* ----- TOTAL SERVICES ----- */

#services {
    overflow: hidden;
}

.tab-menu {
    padding-bottom: 10%;
}

.content-body {
    width: 50%;
    position: relative;
    min-height: 40px;
    transition: .3s ease-in;
    height: max-content;
    line-height: 40px;
    display: none;
    overflow: hidden;
    transition-delay: 10s;
    margin-left: auto;
    margin-bottom: 90px;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    -o-transition: .3s ease-in;
}

.tab-link.active .content-body,
.tab-link.active .tab-content {
    display: block;
}

/* .tab-link.active .content-body, */
.tab-link.active h2 {
    border-top: 4px solid var(--brand);
}

.tab-link h2:hover, .tab-link.active h2, .tab-link .tab-title:hover svg {
    color: var(--brand);
}

.tab-link .tab-title svg {
    transition: .3s ease;
    color: #000;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.tab-link.active .tab-title svg {
    transform: rotate(180deg);
    color: var(--brand);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.tab-accordion {
    margin-left: 30px;
}

.tab-link {
    margin-top: 30px;
    position: relative;
    z-index: 3;
}

.tab-link h2 {
    cursor: pointer;
    border-top: 3px solid #fff;
    margin-left: auto;
    width: 50%;
    padding-top: 20px;
    line-height: 40px;
    transition: .3s ease;
    display: flex;
    justify-content: space-between;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}


.tab-content {
    position: absolute;
    left: 5%;
    top: 0;
    min-height: 100%;
    /* overflow: hidden; */
    /* display: none; */
    opacity: 0;
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
}

.tab-content .decor {
    left: -30%;
    bottom: -5%;
}

.tab-link.active .tab-content {
    transform: translateX(0);
    transition-delay: .3s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}

.tab-list img {
    margin-right: 5px;
}


/* ----- COMMUNICATION ------ */

#communication {
    padding: 5% 0;
}


/* ----- WORK ------ */

#work .grid {
    justify-items: flex-end;
}

#work .swiper {
    margin-top: 60px;
    padding: 0 5%;
}

#work .swiper::before, #work .swiper::after {
    content: '';
    width: 75px;
    background: #EEF1F5;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
}

#work .swiper::before {
    left: 0;
}

#work .swiper::after {
    right: 0;
}

#work .swiper-slide {
    display: flex;
    justify-content: center;
}

#work .card {
    width: 85%;
}

#work .swiper-slide:nth-child(2n) {
    margin-top: 20px;
}

#work .swiper-slide:nth-child(3n) {
    margin-top: 40px;
}

.btn-next,
.btn-prev {
    background-color: var(--brand);
    color: #fff;
    width: 53px !important;
    height: 53px !important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 78;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-next {
    right: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.btn-prev {
    left: 0;
}

#work .swiper-button-disabled {
    opacity: .7;
}

.name {
    color: var(--brand);
    font-weight: 700;
    margin-top: 10px;
}

.card-body {
    margin-top: 20px;
}


/* ----- CONTACT ----- */

.contact {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    margin-top: 20%;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.contact-form {
    width: 65%;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid transparent;
    width: 100%;
    padding: 16px 24px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(36, 36, 41, 0.3);
    font-family: var(--font);
}

.contact-form .grid {
    gap: 20px;
}

.contact-form textarea {
    width: 100%;
    margin-top: 20px;
    font-family: var(--font);
    resize: none;
}
/*
.input-control.success input {
    border-color: #09c372;
} */

.input-control.er input, .input-control.er textarea {
    border-color: red;
}

.input-control.scs input, .input-control.scs textarea {
    border-color: transparent;
}

.input-control .error {
    color: red;
    text-align: left;
    font-size: .65em;
    /* height: 13px; */
}

.danger, .success {
    display: none;
    margin-top: 20px;
}

.danger {
    color: red;
}

.success {
    color: green;
}

.danger.active {
    display: block;
}

.success.active {
    display: block;
}

@keyframes showUp {
    0% {
        display: block;
    }
    100% {
        display: none;
    }
}


/* ----- FOOTER ------ */

footer {

    background: linear-gradient(108.42deg, #34C5F0 -11.68%, #0062AD 107.03%), #FFFFFF;
    margin-top: 10%;
    padding-bottom: 5%;
    color: #fff;
}

#svg {
    margin-top: -5%;
}

.path-0 {
    animation: pathAnim-0 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    /* -webkit-animation: pathAnim-0 8s; */
}

@keyframes pathAnim-0 {
    0% {
        d: path("M 0,400 C 0,400 0,200 0,200 C 142.26666666666665,190 284.5333333333333,180 434,175 C 583.4666666666667,170 740.1333333333334,170 909,175 C 1077.8666666666666,180 1258.9333333333334,190 1440,200 C 1440,200 1440,400 1440,400 Z");
    }
    25% {
        d: path("M 0,400 C 0,400 0,200 0,200 C 121.86666666666667,159.06666666666666 243.73333333333335,118.13333333333335 402,127 C 560.2666666666667,135.86666666666665 754.9333333333334,194.53333333333333 934,215 C 1113.0666666666666,235.46666666666667 1276.5333333333333,217.73333333333335 1440,200 C 1440,200 1440,400 1440,400 Z");
    }
    50% {
        d: path("M 0,400 C 0,400 0,200 0,200 C 156.40000000000003,188.4 312.80000000000007,176.8 465,160 C 617.1999999999999,143.2 765.2,121.19999999999999 927,127 C 1088.8,132.8 1264.4,166.4 1440,200 C 1440,200 1440,400 1440,400 Z");
    }
    75% {
        d: path("M 0,400 C 0,400 0,200 0,200 C 193.59999999999997,166.66666666666666 387.19999999999993,133.33333333333331 529,147 C 670.8000000000001,160.66666666666669 760.8,221.33333333333334 904,238 C 1047.2,254.66666666666666 1243.6,227.33333333333331 1440,200 C 1440,200 1440,400 1440,400 Z");
    }
    100% {
        d: path("M 0,400 C 0,400 0,200 0,200 C 142.26666666666665,190 284.5333333333333,180 434,175 C 583.4666666666667,170 740.1333333333334,170 909,175 C 1077.8666666666666,180 1258.9333333333334,190 1440,200 C 1440,200 1440,400 1440,400 Z");
    }
}

footer .grid {
    gap: 50px;
}

.footer-menu li a {
    color: #fff;
}

.footer-menu li {
    margin-top: 10px;
}

.footer-menu li:nth-child(1) {
    margin-bottom: 20px;
    font-weight: 700;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
}

.footer-btm {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.copyright {
    font-size: .85em;
}

.copyright a {
    color: #fff;
    margin: 0 5px;
}

.socmed {
    display: flex;
    column-gap: 20px;
}

.socmed>a {
    display: flex;
    transition: .3s ease-in-out;
}

.socmed>a:hover {
    transform: translateY(-8px);
}

.language-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
}

.language-btn img {
    position: relative;
    z-index: 2;
    cursor: pointer;
}


/* ------ COMPANY PAGE ------ */

.glass-box {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    counter-reset: list;
}

.c {
    display: flex;
    column-gap: 30px;
}

.c::before {
    counter-increment: list;
    content: '0' counter(list);
    font-size: 1.25em;
    font-weight: 500;
}

.mr-2 {
    margin-right: 40px;
}

.com-list li {
    display: grid;
    grid-template-columns: .5fr 1fr;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}


/* ------ WORK PAGE ------ */

#work-page .flex {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 100px;
    row-gap: 80px;
}

#work-page .card-wp {
    width: 33%;
    max-width: 100%;
}

#work-page .card-wp .w-link {
    color: inherit;
}

#work-page .card-wp:nth-child(even) {
    margin-top: 100px !important;
}


/* ----- WORK DETAIL ----- */

.client {
    margin-top: 40px;
    text-align: end;
}

.id-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.id-content:nth-child(even) {
    align-items: flex-end;
}

.detail-list {
    margin-top: 10px;
}

.detail-list li {
    list-style: inside;
    color: rgba(36, 36, 41, 0.5);
}

.swiper {
    margin-top: 90px;
}

.swiper-slide .glass-box {
    padding: 48px 60px;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #fff;
    width: 53px !important;
    height: 53px !important;
    border-radius: 50%;
    display: flex;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

#work-detail .swiper-slide {
    color: inherit;
    z-index: 1;
}

#work-detail .swiper-button-next {
    right: 5px !important;
}

#work-detail .swiper-button-prev {
    left: 5px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: inherit !important;
    font-weight: 700;
}

.blue {
    color: var(--brand);
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/* Media querry */

@media screen and (max-width: 370px) {
    .hero-title {
        font-size: 2.5em !important;
        line-height: 60px !important;
    }
    .img-hero {
        width: 36vw !important;
    }
    .title {
        font-size: 2em !important;
    }
    .blob-2, .blob-3 {
        height: 300px !important;
    }
    #communication .right {
        margin-right: -7% !important;
    }
    #work .swiper {
        padding: unset !important;
    }
    #work .btn-next, #work .btn-prev {
        top: 33% !important;
    }
    .contact {
        text-align: center;
    }
    .contact-form {
        width: 85% !important;
    }
    footer {
        margin-top: 30% !important;
    }
    .footer-left .flex {
        row-gap: 50px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 100%;
    }
    .section {
        margin-top: 40px;
    }
    .section-2 {
        margin-top: 100px;
    }
    .hero .grid {
        margin-top: 100px;
    }
    .hero-title {
        font-size: 3.375em;
        line-height: 70px;
    }
    .blob {
        width: 100%;
        height: 230px;
    }
    .blob-2 {
        height: 400px;
    }
    .navbar-wrap {
        align-items: unset;
    }
    .section-top-title {
        font-size: 3em;
        line-height: 64px;
    }
    .t {
        margin-right: 0 !important;
    }
    .ml {
        margin-left: 0;
    }
    .img-hero {
        max-width: 40vw !important;
    }
    .grid-3:not(footer .grid-3) {
        display: flex;
        flex-direction: column;
    }
    .absolute {
        position: relative;
    }
    .tab-list {
        display: flex;
        flex-direction: column;
    }
    #communication .right {
        margin-right: -5%;
    }
    #communication img {
        width: inherit !important;
    }
    .contact {
        margin-top: 40%;
    }
    #work .grid {
        display: flex;
        justify-content: space-between;
    }
    #work .swiper {
        margin-bottom: 150px;
    }
    #work .swiper-slide:nth-child(2n), #work .swiper-slide:nth-child(3n) {
        margin-top: unset;
    }
    #work-page .card-wp:nth-child(even) {
        margin-top: 0 !important;
    }
    #work .card {
        width: 100%;
    }
    #work .btn-prev, #work .btn-next {
        width: 45px !important;
        height: 45px !important;
    }
    #work .btn-next, #work .btn-prev {
        top: 35%;
    }
    #work .btn-next {
        right: 0;
    }
    #work .btn-prev {
        left: 0;
    }
    .mt-top {
        margin-top: 25%;
    }
    .flex {
        flex-direction: column;
    }
    .tab-link {
        margin-top: 20px;
    }
    .tab-content {
        position: relative;
        display: none;
        left: 0;
    }
    .tab-link h2 {
        margin-left: unset;
        width: unset;
        margin-top: 20px;
    }
    .tab-content img:not(.decor) {
        width: inherit !important;
    }
    .tab-content .decor {
        bottom: 0 !important;
    }
    .content-body {
        width: unset;
    }
    .section-content {
        width: 100%;
    }
    .small-title {
        font-size: 2em;
        line-height: 38px;
        background: var(--gradient);
        background-clip: text;
        -webkit-background-clip: text;
        -moz-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .w {
        width: 100%;
    }
    .contact-form {
        width: 80%;
    }
    footer {
        margin-top: 30% !important;
    }
    footer .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    #language-btm {
        left: 130%;
    }
    .copyright span {
        display: block;
    }
    footer .brand {
        margin-top: 80px;
        display: block;
    }
    .socmed {
        margin-bottom: 20px;
    }
    /* COMPANY PAGE */
    .compro-dec {
        display: none;
    }
    /* WORK PAGE */
    #work-page .flex {
        flex-direction: column;
    }
    #work-page .card-wp {
        width: 100%;
    }
}

@media screen and (max-width: 990px) {
    .container {
        max-width: 720px;
    }
    .on-mobo {
        display: inline-flex;
        align-items: center;
        column-gap: 10px;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        padding: 8%;
        flex-direction: column;
        row-gap: 30px;
        align-items: flex-start;
        background: #EEF1F5;
        width: 100%;
        border-radius: 10px;
        transition: 0.3s ease-out;
        -webkit-transition: 0.3s ease-out;
        -moz-transition: 0.3s ease-out;
        -ms-transition: 0.3s ease-out;
        -o-transition: 0.3s ease-out;
    }
    .nav-menu.active {
        left: 0;
        z-index: 999;
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .grid:not(#work .grid) {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-img {
        margin-top: 15%;
    }
    #services .grid {
        gap: 50px;
    }
    .tab-content img:not(.decor) {
        width: 40vw;
    }
    .tab-content .decor {
        bottom: 30%;
    }
    #work .swiper::after, #work .swiper::before {
        width: unset !important;
    }
    .hero {
        margin-top: 15%;
    }
    .title {
        font-size: 3em;
        line-height: 67px;
    }
    footer {
        margin-top: 15%;
    }
}

@media screen and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 1390px) {
    .container {
        max-width: 1140px;
    }
    /* .absolute {
        position: relative;
    } */
    #communication img {
        width: 50vw;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

img {
    -webkit-backface-visibility: hidden;
}

th,td {
    border: solid 1px;  /* 枠線指定 */
    border-color: #5f6062;  /* カラー */
    padding: 15px;      /* 余白指定 */
    color: #5f6062;
}

table {
    border-collapse:  collapse;     /* セルの線を重ねる */
}

th {
    width:  1000px;              /* 幅指定 */
    height: 50px;               /* 高さ指定 */
}
