/* --------- Reset --------- */

*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
html {
    font-family: 'Noto Sans JP';
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style: none;
}
button {
    border: 0;
    background: linear-gradient(90deg, #00BAEB, #3F63AE);
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
}
button a {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    padding: 16px 24px;
    transition: all .5s;
}
button a img {
    display: inline-block;
    margin: 0 0 0 32px;
    transform: translateY(-4px);
    transition: all .5s;
}
button a:hover {
    text-shadow: 0 0 10px rgba(255,255,255,.5);
}
button a:hover img {
    transform: translateY(-4px) translateX(16px);
}
a {
    display: block;
    text-decoration: none;
    color: #3F63AE;
    font-weight: 700;
}
@media screen and (max-width:1280px) {
    html {
        font-size: 14px;
    }
}


/* --------- Common --------- */

.sp-only {
    display: none !important;
}
@media screen and (max-width:768px) {
    .sp-only {
        display: block !important;
    }
}

.pc-only {
    display: block !important;
}
@media screen and (max-width:768px) {
    .pc-only {
        display: none !important;
    }
}

/* header menu */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    z-index: 4;
    transition: all 0.3s ease;
}
header img {
    height: auto;
    width: 80px;
    margin-top: 10px;
}
header nav {
    margin-right: 120px;
}
header nav ul {
    display: flex;
}
header nav ul li a {
    font-family: "Inter 18pt";
    color: #FFF;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 3.4px;
    padding: 15px 44px;
    transition: all 0.3s ease;
}
header nav ul li a:hover {
    background: rgba(255, 255, 255, .1);
}
header.style-blur {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
}
header.style-b nav ul li a {
    color: #0068B7;
}
header ul.nav_lists {
    position: relative;
    display: flex;
}
header li.nav_list {
    position: relative;
    text-align: center;
    min-width: 240px;
}
header ul.dropdown_lists {
    display: block;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .3s;
    width: 100%;
    position: absolute;
    top: 56px;
    left: 0;
    border-bottom: 0.4px solid #fff;
}
header li.nav_list:hover ul.dropdown_lists {
    transform: scaleY(1);
}
header li.dropdown_list {
    display: flex;
    height: 56px;
    border-top: 0.4px solid #fff;
    transition: all .3s;
    position: relative;
}
header li.dropdown_list:hover {
    background: rgba(255, 255, 255, .1);
}
header.style-blur li.dropdown_list {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: #0068b4;
}
header.style-blur li.dropdown_list:first-child {
    border: 0;
}
header.style-blur li.dropdown_list:hover {
    background-color: rgba(255,255,255,1);
}
header li.dropdown_list a {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2.8px;
    padding: 0;
}

header .hamburger-menu {
    display: none;
}
header .menu-btn {
    position: fixed;
    top: 10px;
    right: 24px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
header .menu-btn span,
header .menu-btn span:before,
header .menu-btn span:after {
    content: '';
    display: block;
    height: 1.5px;
    width: 25px;
    background-color: #ffffff;
    position: absolute;
    transition: all .3s;
}
header.style-b .menu-btn span,
header.style-b .menu-btn span:before,
header.style-b .menu-btn span:after {
    background-color: #0068B7;
}
header .menu-btn span:before {
    bottom: 8px;
}
header .menu-btn span:after {
    top: 8px;
    right: 0;
    width: 20px;
}
header #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
header #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    width: 33px;
    background-color: #ffffff;
    transform: rotate(30deg);
}
header #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    right: revert-layer;
    width: 33px;
    background-color: #ffffff;
    transform: rotate(-30deg);
}
header #menu-btn-check {
    display: none;
}
header .menu-content {
    width: 100%;
    height: 100vh;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99;
    background-color: #0068B7;
    background: linear-gradient(90deg, #0075C2, #005BAC);
    background: -webkit-linear-gradient(90deg, #0075C2, #005BAC);
    transition: all 0.5s;
}
header .menu-content .bg_menu {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url(./../img/bg_sp-menu.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
}
header .menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 80px 40px 0;
}
header .menu-content .logo-wrap {
    display: inline-block;
    margin: 16px 0 0 20px;
}
header .menu-content .logo-wrap img {
    height: 40px;
    width: auto;
}
header .menu-content ul li a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    box-sizing: border-box;
    font-family: "Inter 18pt";
    color: #FFF;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
}
header .menu-content ul li ul {
    padding: 0;
    gap: 0px;
}
header .menu-content ul li ul li a {
    font-size: 12px;
    padding: 8px 0;
    margin: 4px 0;
    font-weight: 400;
}
header #menu-btn-check:checked ~ .menu-content {
    left: 0;
}
header p.text-mvv {
    position: absolute;
    bottom: 24px;
    right: 40px;
    font-family: "Inter 18pt";
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    mix-blend-mode: overlay;
}

@media screen and (max-width:768px) {
    header img {
        width: 40px;
        margin-top: 0;
    }
    header .hamburger-menu {
        display: block;
    }
    header nav {
        display: none;
    }
}

/* footer menu */
footer {
    background: #322B29;
    padding: 70px 50px 42px;
}
footer .text-mvv {
    font-family: "Inter 18pt";
    color: #fff;
    font-size: 31px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: 1.86px;
    margin-bottom: 136px;
}
footer nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 68px;
    color: #fff;
}
footer nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 42px;
    margin: 0;
}
footer nav ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 42px;
    font-family: "Inter 18pt";
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
footer nav ul li a {
    color: #fff;
    letter-spacing: 1.08px;
    border-bottom: 1px solid transparent;
}
footer nav ul li a:hover {
    border-color: #fff;
}
footer .logo-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

footer .logo-wrap img {
    width: 180px;
    height: auto;
}

@media screen and (max-width:1280px) {
    
}

@media screen and (max-width:768px) {
    footer {
        padding: 43px 27px 34px;
    }
    footer .text-mvv {
        font-size: 16px;
        line-height: 23px;
        letter-spacing: 0.96px;
        margin-bottom: 74px;
    }
    footer nav ul {
        gap: 24px;
    }
    footer nav ul li {
        gap: 12px;
        font-size: 12px;
    }
    footer .logo-wrap {
        justify-content: flex-start;
    }
    footer .logo-wrap img {
        width: 83px;
        margin-top: 104px;
    }
}

/* title */
.section-title {
    background: linear-gradient(180deg, #0075C2, #005BAC);
    padding: 327px 80px 0;
    overflow: hidden;
    z-index: 2;
}
.section-title h1 {
    font-family: "Inter 18pt";
    text-align: left;
    color: #70C4E4;
    font-weight: 600;
    font-size: 90px;
    line-height: 1;
    letter-spacing: 6.6px;
    transform: translateY(15px);
}
.section-title h1 span {
    position: relative;
    display: block;
    font-family: 'Noto Sans JP';
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 4.8px;
    padding-left: 320px;
    margin-bottom: 20px;
}
.section-title h1 span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    height: 1px;
    width: 300px;
    background: #fff;
}

@media screen and (max-width:768px) {
    .section-title {
        padding: 200px 30px 0;
    }
    .section-title h1 {
        font-size: 32px;
        letter-spacing: 1.62px;
        transform: translateY(5px);
    }
    .section-title h1 span {
        font-size: 10px;
        letter-spacing: 2.1px;
        padding-left: 83px;
        margin-bottom: 8px;
    }
    .section-title h1 span::before {
        width: 77px;
    }
}

.section-title_w {
    position: relative;
    background: #fff;
    padding: 327px 80px 0;
    z-index: 1;
}
.section-title_w h1 {
    position: relative;
    font-family: "Inter 18pt";
    text-align: left;
    color: #008ACF;
    font-weight: 600;
    font-size: 90px;
    line-height: 1;
    letter-spacing: 6.6px;
}
.section-title_w h1 span {
    position: relative;
    display: block;
    font-family: 'Noto Sans JP';
    color: #008ACF;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 4.8px;
    padding-left: 320px;
    margin-bottom: 20px;
}
.section-title_w h1 span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    height: 1px;
    width: 300px;
    background: #008ACF;
}
.section-title_w .decoration-box {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 0 0 20px 0;
    width: 80%;
    height: 80px;
    z-index: 1;
}
.section-title_w .decoration-box::after {
    position: absolute;
    left: 100%;
    display: block;
    content: '';
    background-image: url(./../img/kadomaru.svg);
    width: 20px;
    height: 20px;
}

@media screen and (max-width:768px) {
    .section-title_w {
        padding: 200px 30px 0;
    }
    .section-title_w h1 {
        font-size: 28px;
        letter-spacing: 1.62px;
        transform: translateY(4px);
    }
    .section-title_w h1 span {
        font-size: 9px;
        letter-spacing: 2.1px;
        padding-left: 52px;
        margin-bottom: 8px;
    }
    .section-title_w h1 span::before {
        width: 40px;
    }
    .section-title_w .decoration-box {
        border-radius: 0 0 10px 0;
        width: 70%;
        height: 40px;
    }
    .section-title_w .decoration-box::after {
        width: 10px;
        height: 10px;
    }
}

/* more button */
.btn-more {
    width: 288px;
}
.btn-more a {
    display: flex;
    justify-content: space-between;
    padding: 22px 47px;
    border: 1px solid #0068B7;
    border-radius: 40px;
    transition: all .3s;
}
.btn-more a:hover {
    background: #00AFCC;
    border-color: transparent;
}
.btn-more a p {
    font-family: "Inter 18pt";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.28px;
    color: #0068B7;
    transition: color .3s;
}
.btn-more a:hover p {
    color: #fff;
}
.btn-more img {
    transform-origin: left;
    transition: transform .3s;
}
.btn-more a:hover img {
    transform: scaleX(1.2);
    content: url("./../img/btn-more_arrow_w.svg");
}

@media screen and (max-width:768px) {
    .btn-more {
        width: 168px;
    }
    .btn-more a {
        padding: 16px 24px;
        border: 1px solid #0068B7;
    }
    .btn-more a p {
        font-size: 12px;
    }
    .btn-more img {
        width: 16px;
        height: auto;
    }
}

/* --------- animation --------- */

main {
    position: relative;
    overflow: hidden;
}
.circle-line {
    position: absolute;
    width: 100vw;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-image: linear-gradient(90deg, #00B2BC 0%, #0075C2 51%, #005BAC 100%);
    box-sizing: border-box;
    animation: circle 1s linear infinite;
    opacity: .17;
    z-index: -1;
}
.circle-line.circle1 {
    top: 0;
    left: -25%;
}
.circle-line.circle2 {
    right: -35%;
    bottom: -35%;
}
.circle-line.circle3 {
    top: 20%;
    right: -20%;
    opacity: .07;
}
.circle-line::before {
    position: absolute;
    content: '';
    top: 200px;
    left: 200px;
    bottom: 200px;
    right: 200px;
    border-radius: 50%;
    background-color: #fff;
}
@keyframes circle {
    0% {
        transform: rotate(0deg)
    }

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

.circle-wrap {
    position: absolute;
    content: '';
    top: 0;
    left: -30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    min-width: 160%;
}
.b-bk_circle {
    background-image: url(./../img/b-bk_circle.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    aspect-ratio: 1 / 1;
    animation: spin 4s linear infinite;
    margin-top: -25vh;
}
.b-bk_circle:first-child {
    margin-top: 0;
}
.b-bk_circle:nth-child(odd) {
    align-self: flex-start;
}
.b-bk_circle:nth-child(even) {
    align-self: flex-end;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bg-line {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    border-radius: 24px;
    transform: rotate(45deg);
    opacity: 0.3;
    z-index: 0;
}
.bg-line.line1 {
    top: 30%;
    right: 10%;
    height: 600px;
    width: 24px;
}
.bg-line.line2 {
    top: 70%;
    left: 10%;
    height: 400px;
    width: 24px;
}
.bg-line.line3 {
    bottom: 0.5%;
    right: 15%;
    height: 800px;
    width: 12px;
}
.bg-line.line4 {
    top: 30%;
    left: 15%;
    height: 720px;
    width: 12px;
}
.bg-line.line5 {
    top: 5%;
    left: 15%;
    height: 600px;
    width: 12px;
}
.bg-line.line6 {
    bottom: 30%;
    right: 25%;
    height: 400px;
    width: 24px;
}
.bg-line.line7 {
    top: 20%;
    left: 75%;
    height: 200px;
    width: 12px;
}
.bg-line.line8 {
    bottom: 10%;
    left: 15%;
    height: 120px;
    width: 24px;
}
.bg-line::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg, #00B2BC -18%, rgba(0, 117, 194, 0.3) 38.46%, #005BAC 92.71%);
    border-radius: 24px;
    transform: translateY(100%);
}
.bg-line.line1::before {
    animation: diagonal-line 3s cubic-bezier(.72, 0, .29, 1) infinite;
}
.bg-line.line2::before {
    animation: diagonal-line 2.5s cubic-bezier(.72, 0, .29, 1) infinite;
}
.bg-line.line3::before {
    animation: diagonal-line 3.5s cubic-bezier(.72, 0, .29, 1) infinite;
}
.bg-line.line4::before {
    animation: diagonal-line 3.5s cubic-bezier(.72, 0, .29, 1) infinite;
}
.bg-line.line5::before {
    animation: diagonal-line 3.5s cubic-bezier(.72, 0, .29, 1) infinite;
}
.bg-line.line6::before {
    animation: diagonal-line 3.5s cubic-bezier(.72, 0, .29, 1) infinite;
}
.bg-line.line7::before {
    animation: diagonal-line 3.5s cubic-bezier(.72, 0, .29, 1) infinite;
}
.bg-line.line8::before {
    animation: diagonal-line 3.5s cubic-bezier(.72, 0, .29, 1) infinite;
}
@keyframes diagonal-line {
    0% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(0);
    }
    90% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

@media screen and (max-width:768px) {
    .circle-line {
        width: 600px;
        height: 600px;
    }
    .circle-line::before {
        top: 80px;
        left: 80px;
        bottom: 80px;
        right: 80px;
    }
    .circle-line.circle1 {
        top: 20%;
        left: -60%;
    }
    .circle-line.circle2 {
        right: -45%;
        bottom: -15%;
    }
    .circle-line.circle3 {
        top: 50%;
        right: -55%;
        opacity: .07;
    }
    .bg-line.line1 {
        top: 50%;
        right: 20%;
        height: 200px;
        width: 24px;
    }
    .bg-line.line2 {
        top: 70%;
        left: 10%;
        height: 100px;
        width: 24px;
    }
    .bg-line.line3 {
        bottom: 0.5%;
        right: 15%;
        height: 300px;
        width: 12px;
    }
    .bg-line.line4 {
        top: 40%;
        left: 15%;
        height: 120px;
        width: 12px;
    }
    .bg-line.line5 {
        top: 22%;
        left: 55%;
        height: 120px;
        width: 12px;
    }
    .bg-line.line6 {
        bottom: 30%;
        right: 25%;
        height: 320px;
        width: 12px;
    }
    .bg-line.line7 {
        top: 10%;
        left: 25%;
        height: 80px;
        width: 24px;
    }
    .bg-line.line8 {
        bottom: 10%;
        left: 15%;
        height: 100px;
        width: 12px;
    }
}


/* --------- top page --------- */

#toppage #fv {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: #fff;
    padding: 80px 120px;
    overflow: hidden;
    z-index: 0;
    background-image: url(./../img/top_bg_fv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}
#toppage #fv h1 {
    display: none;
}
#toppage #fv .content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
#toppage #fv h2.text-mvv {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 7.5px;
}
#toppage #fv .btn-more a {
    border: 1px solid #fff;
}
#toppage #fv .btn-more a p {
    color: #fff;
}
#toppage #fv p.text-mvv {
    position: absolute;
    bottom: 48px;
    right: 70px;
    font-family: "Inter 18pt";
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 3.24px;
    color: #fff;
    mix-blend-mode: overlay;
    opacity: .8;
}
#toppage #fv .bg-color {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    background: radial-gradient(circle at 30% 50%, rgba(0, 225, 255, 0.65), transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(0, 235, 128, 0.5), transparent 45%),
                radial-gradient(circle at 50% 50%, rgba(0, 155, 255, 0.3), transparent 50%);
    background-blend-mode: lighten;
    animation: moveAurora 3s ease-in-out infinite alternate;
    filter: blur(50px);
    z-index: -1;
}

@keyframes moveAurora {
    0% {
        transform: scale(1) translate(0%, 0%) rotate(0deg);
    }
    50% {
        transform: scale(1.1) translate(-15%, -10%) rotate(12deg);
    }
    100% {
        transform: scale(1) translate(10%, 5%) rotate(-10deg);
    }
}

@media screen and (max-width:768px) {
    #toppage #fv {
        padding: 40px 40px;
        background-position: left top;
    }
    #toppage #fv .content-wrap {
        gap: 8px;
        align-items: flex-start;
    }
    #toppage #fv h2.text-mvv {
        font-size: 14px;
        letter-spacing: 3.3px;
    }
    #toppage #fv .lottie {
        height: 38px;
    }
    #toppage #fv p.text-mvv {
        bottom: 33px;
        right: 40px;
        font-size: 18px;
        line-height: 1.8;
        letter-spacing: 1.08px;
    }
    #toppage #fv .btn-more {
        width: 160px;
    }
    #toppage #fv .btn-more a {
        padding: 12px 20px;
    }
    #toppage #fv .btn-more a p {
        font-size: 12px;
    }
    #toppage #fv .btn-more img {
        width: 12px;
        height: auto;
    }
}

/* main */
#toppage #top-service {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 160px 0;
}
#toppage #top-service .top-title {
    margin: 0 auto;
}
#toppage #top-service .top-title h2 {
    font-family: "Inter 18pt";
    font-size: 85px;
    font-weight: 600;
    letter-spacing: 5.1px;
    color: #0068B7;
}
#toppage #top-service .top-title h2 span {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4.8px;
    padding-left: 32px;
}
#toppage #top-service .top-title h2 span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    height: 1px;
    width: 20px;
    background-color: #0068B7;
}
#toppage #top-service .content-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}
#toppage #top-service .content-wrap h3 {
    font-size: 26px;
    font-weight: 500;
    color: #0068B7;
    letter-spacing: 9px;
}
#toppage #top-service .content-wrap h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 42px;
    color: #0068B7;
    letter-spacing: 5px;
    margin: 56px 0 64px;
}
#toppage #top-service .content-wrap .img-wrap {
    position: relative;
}
#toppage #top-service .content-wrap .img-wrap .img-bg {
    position: absolute;
    top: -64px;
    left: -56px;
    z-index: -1;
}
#toppage #top-service .content-wrap .img-wrap .top-service_img {
    width: 600px;
    height: auto;
}

@media screen and (max-width:768px) {
    #toppage #top-service {
        gap: 40px;
        padding: 80px 0;
    }
    #toppage #top-service .top-title h2 {
        font-size: 32px;
        letter-spacing: 1.92px;
    }
    #toppage #top-service .top-title h2 span {
        font-size: 10px;
        letter-spacing: 2.1px;
    }
    #toppage #top-service .content-wrap {
        flex-direction: column;
        gap: 40px;
    }
    #toppage #top-service .content-wrap .img-wrap .img-bg {
        top: -24px;
        left: -24px;
    }
    #toppage #top-service .content-wrap .img-wrap .top-service_img {
        width: 256px;
        height: auto;
    }
    #toppage #top-service .content-wrap .content-wrap-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #toppage #top-service .content-wrap h3 {
        display: inline-block;
        font-size: 15px;
        text-align: center;
        letter-spacing: 4.5px;
        padding: 8px 24px;
        border-bottom: 1px solid #0068B7;
    }
    #toppage #top-service .content-wrap h4 {
        font-size: 12px;
        text-align: center;
        line-height: 2;
        margin: 40px 0;
        letter-spacing: 4px;
    }
}

#cta-section.bg2 {
    position: relative;
    z-index: 1;
    background: linear-gradient(0deg, #0075C2, #005BAC);
    background: -webkit-linear-gradient(0deg, #0075C2, #005BAC);
}
#cta-section.bg3 {
    position: relative;
}
#cta-section .content-wrap {
    width: 100%;
    height: 100%;
    padding: 200px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/contact-bg.svg);
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
}
#cta-section.bg2 .content-wrap {
    background-image: url(../img/contact-bg_2.svg);
}
#cta-section.bg3 .content-wrap {
    padding-top: 320px;
    background-image: url(../img/contact-bg_3.svg);
}
#cta-section .content-wrap .contact-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0068B4;
    border-radius: 160px;
    height: 270px;
    width: 674px;
    overflow: hidden;
    z-index: 1;
}
#cta-section .content-wrap .contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #00B2BC 0%, #0075C2 50%, #005BAC 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: -1;
}
#cta-section .content-wrap .contact-btn:hover::before {
    opacity: 1;
}
#cta-section .content-wrap .contact-btn h2 {
    color: #fff;
    font-family: "Inter 18pt";
    font-size: 39px;
    font-weight: 600;
    letter-spacing: 2.34px;
}
#cta-section .content-wrap .contact-btn p {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.3px;
    text-align: center;
}
#cta-section .content-wrap .contact-arrow {
    position: absolute;
    right: 90px;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 84px;
    width: 84px;
    transform: translateY(-50%);
}
#cta-section .content-wrap .contact-arrow img {
    transform-origin: left;
    transition: transform .3s;
}
#cta-section .content-wrap .contact-btn:hover .contact-arrow img {
    transform: scaleX(1.2);
}

@media screen and (max-width:768px) {
    #cta-section .content-wrap {
        padding: 80px 24px;
    }
    #cta-section.bg3 .content-wrap {
        padding-top: 120px;
    }
    #cta-section .content-wrap .contact-btn {
        border-radius: 160px;
        height: 102px;
        width: 270px;
    }
    #cta-section .content-wrap .contact-btn h2 {
        font-size: 18px;
        letter-spacing: 0.9px;
        text-align: center;
        margin-right: 24px;
    }
    #cta-section .content-wrap .contact-btn p {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 1.2px;
        margin-right: 24px;
        text-align: center;
    }
    #cta-section .content-wrap .contact-arrow {
        right: 30px;
        height: 30px;
        width: 30px;
        border: 0.5px solid #fff;
    }
    #cta-section .content-wrap .contact-arrow img {
        width: 10px;
        height: auto;
    }
}


/* --------- contact page --------- */

#contact-wrap iframe {
    border: 0;
}

/* --------- company page --------- */

#company #mvv {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 70px;
    background: linear-gradient(90deg, rgba(173, 222, 248, 0.2), rgba(0, 40, 172, 0.2));
    background: -webkit-linear-gradient(0deg, rgba(173, 222, 248, 0.2), rgba(0, 40, 172, 0.2));
    padding: 200px 0;
}
#company .circle-wrap {
    top: -15%;
    height: 120%;
    opacity: .1;
    z-index: -1;
}
#company #mvv .circle-line {
    width: 90vw;
}
#company #mvv .content-wrap {
    background: rgba(255, 255, 255, .6);
    border-radius: 0 120px 120px 0;
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 0 170px 0 0;
    padding: 160px 24px;
}
#company #mvv .content-wrap:nth-child(odd) {
    border-radius: 120px 0 0 120px;
    margin: 0 0 0 170px;
}
#company #mvv .content-wrap:nth-child(2) .img-wrap {
    width: 280px;
}
#company #mvv .content-wrap:nth-child(3) .img-wrap {
    width: 360px;
}
#company #mvv .content-wrap:nth-child(4) .img-wrap {
    width: 320px;
}
#company #mvv .content-wrap .content-inner h2 {
    position: relative;
    display: inline-block;
    font-family: "Inter 18pt";
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    letter-spacing: 2.12px;
    color: #0068B7;
    padding: 0 0 64px;
    z-index: 2;
}
#company #mvv .content-wrap .content-inner h2 span {
    display: block;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 6px;
    margin-bottom: 20px;
}
#company #mvv .content-wrap .content-inner h2 img {
    position: absolute;
    max-width: unset;
    z-index: -1;
}
#company #mvv .content-wrap .content-inner h2 .lottie {
    position: absolute;
    max-width: unset;
    height: auto;
    z-index: -1;
}
#company #mvv .content-wrap .content-inner.mission h2 .lottie {
    width: 130%;
    transform: translate(-15%, -10px);
}
#company #mvv .content-wrap .content-inner.vision h2 .lottie {
    width: 130%;
    top: 20px;
    left: 100%;
}
#company #mvv .content-wrap .content-inner.value h2 .lottie {
    top: -50%;
    left: -32px;
}
#company #mvv .content-wrap .content-inner h3 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 500;
    font-size: 28px;
    line-height: 54px;
    letter-spacing: 12.9px;
    color: #0068B7;
}
#company #mvv .content-wrap .content-inner.value h3 {
    border-bottom: 1px solid #0068B7;
}
#company #mvv .content-wrap .content-inner h3 span {
    font-family: "Inter 18pt";
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
}
#company #mvv .content-wrap .content-inner p {
    font-weight: 500;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 9px;
    margin-top: 24px;
    color: #0068B7;
}
#company #mvv .content-wrap .content-inner.value p {
    margin-top: 16px;
    margin-bottom: 51px;
}
#company .info-wrap {
    position: relative;
    padding-top: 240px;
    overflow: hidden;
}
#company .info-wrap .bg-line {
    z-index: -1;
}
#company .info-wrap .bg-info {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(./../img/bg-border.svg);
    background-position: center;
    z-index: -1;
}

#company #info,
#company #access {
    max-width: 1200px;
    margin: 0 auto;
}
#company #info dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: left;
}
#company #info dl dt,
#company #info dl dd {
    display: flex;
    align-items: center;
    padding: 0 60px;
    margin: 2px;
    height: 72px;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2.88px;
}
#company #info dl dt {
    width: 238px;
    background: rgba(32, 174, 229, 1);
    border-radius: 40px 0 0 40px;
}
#company #info dl dd {
    width: calc(100% - 240px - 6px);
    background: linear-gradient(0deg, #0075C2, #005BAC);
    background: -webkit-linear-gradient(0deg, #0075C2, #005BAC);
    border-radius: 0 40px 40px 0;
}

#company #access {
    margin-top: 160px;
}
#company #access h2 {
    font-family: "Inter 18pt";
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: #0068B7;
}
#company #access .map-wrap {
    max-width: 1200px;
    margin: 16px auto 120px;
}
#company #access .map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
}
#company #access .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width:768px) {
    #company #mvv {
        padding: 80px 0;
    }
    #company #mvv .content-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 0 80px 80px 0;
        gap: 48px;
        margin: 0 26px 0 0;
        padding: 80px 24px;
    }
    #company #mvv .content-wrap:nth-child(odd) {
        border-radius: 80px 0 0 80px;
        margin: 0 0 0 26px;
    }
    #company #mvv .content-wrap:nth-child(2) .img-wrap {
        width: 140px;
    }
    #company #mvv .content-wrap:nth-child(3) .img-wrap {
        width: 180px;
    }
    #company #mvv .content-wrap:nth-child(4) .img-wrap {
        width: 180px;
    }
    #company #mvv .content-wrap .content-inner h2 {
        font-size: 24px;
        letter-spacing: 0.96px;
        padding: 0 0 40px;
    }
    #company #mvv .content-wrap .content-inner h2 span {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    #company #mvv .content-wrap .content-inner.mission h2 .lottie {
        transform: translate(-10%, -5px);
    }
    #company #mvv .content-wrap .content-inner.vision h2 .lottie {
        top: 32px;
        left: 35%;
    }
    #company #mvv .content-wrap .content-inner.value h2 .lottie {
        top: -25%;
        left: 0px;
    }
    #company #mvv .content-wrap .content-inner.value p {
        margin-bottom: 40px;
    }
    #company #mvv .content-wrap .content-inner h3 {
        justify-content: center;
        font-size: 19px;
        line-height: 2;
        letter-spacing: 5.7px;
        border: 0;
    }
    #company #mvv .content-wrap .content-inner.value h3 {
        position: relative;
        margin-bottom: 16px;
        border-bottom: 1px solid #0068B7;
    }
    #company #mvv .content-wrap .content-inner h3 span {
        position: absolute;
        right: 0;
        bottom: 8px;
        font-size: 13px;
        letter-spacing: 0.52px;
    }
    #company #mvv .content-wrap .content-inner p {
        font-size: 13px;
        line-height: 2;
        letter-spacing: 3.9px;
        margin-top: 16px;
    }

    #company .info-wrap {
        padding-top: 80px;
    }
    #company #info,
    #company #access {
        max-width: 95%;
    }
    #company #info dl dt,
    #company #info dl dd {
        padding: 0 8px;
        margin: 2px 1px;
        height: 30px;
        font-size: 8px;
        letter-spacing: 0.64px;
    }
    #company #info dl dt {
        width: 69px;
    }
    #company #info dl dd {
        width: calc(100% - 67px - 6px);
    }

    #company #access {
        margin-top: 63px;
    }
    #company #access h2 {
        font-size: 9px;
        text-align: center;
    }
}


/* --------- service page --------- */

#service #service-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 300px 0;
    background: linear-gradient(0deg, #0075C2, #005BAC);
    background: -webkit-linear-gradient(0deg, #0075C2, #005BAC);
}
#service #service-section .content-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: initial;
    gap: 64px;
    padding: 120px 24px 0 120px;
    margin: 0 0 0 10vw;
    border-radius: 100px 0 0 100px;
    background: #fff;
    background-image: url(./../img/bg-border.svg);
    overflow: hidden;
    z-index: 1;
}
#service #service-section .content-wrap:nth-child(odd) {
    flex-direction: row;
}
#service #service-section .content-wrap:nth-child(even) {
    padding: 120px 120px 0 24px;
    margin: 0 10vw 0 0;
    border-radius: 0 100px 100px 0;
}
#service #service-section .content-wrap .service-img-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 30%;
    margin-bottom: 120px;
    z-index: 3;
}
#service #service-section .content-wrap .service-img-inner {
    display: block;
    width: 100%;
    max-width: 410px;
    min-width: 250px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(0, #00B2BC 0%, #0075C2 51%, #005BAC 100%);
    background: -webkit-linear-gradient(0, #00B2BC 0%, #0075C2 51%, #005BAC 100%);
    overflow: hidden;
}
#service #service-section .content-wrap .service-img-wrap img {
    display: block;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    padding: 4px;
}
#service #service-section .content-inner {
    position: relative;
    display: flex;
    max-width: 60%;
}
#service #service-section .content-core {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-bottom: 150px;
}
#service #service-section .content-wrap h2 {
    color: #0068B7;
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
    padding: 0 24px 0 0;
}
#service #service-section .content-wrap h2 span {
    display: block;
    font-family: "Inter 18pt";
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.38px;
    margin-bottom: 38px;
}
#service #service-section .content-wrap h2 p {
    position: relative;
    line-height: 1.6;
    z-index: 2;
}
#service #service-section .content-wrap .content-core>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 2.64px;
}
#service #service-section .content-wrap h3 {
    position: absolute;
    bottom: 0;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 120px;
    line-height: 1;
    color: #82C1EA;
    transform: translateY(12px);
}

@media screen and (max-width:768px) {
    #service #service-section {
        gap: 40px;
        padding: 130px 0;
    }
    #service #service-section .content-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding: 64px 40px 0 40px;
        margin: 0 0 0 24px;
        border-radius: 64px 0 0 64px;
    }
    #service #service-section .content-wrap:nth-child(odd) {
        flex-direction: column;
    }
    #service #service-section .content-wrap:nth-child(even) {
        padding: 64px 40px 0 40px;
        margin: 0 24px 0 0;
        border-radius: 0 64px 64px 0;
    }
    #service #service-section .content-wrap .service-img-wrap {
        max-width: 80%;
        width: 80%;
        margin-bottom: 0;
    }
    #service #service-section .content-inner {
        max-width: unset;
    }
    #service #service-section .content-core {
        align-items: center;
        gap: 17px;
        padding-bottom: 81px;
        max-width: 100%;
    }
    #service #service-section .content-wrap h2 {
        font-size: 18px;
        padding: 0;
        letter-spacing: 3.6px;
    }
    #service #service-section .content-wrap h2 span {
        font-size: 9px;
        letter-spacing: 0.18px;
        margin-bottom: 17px;
    }
    #service #service-section .content-wrap .content-core>p {
        font-size: 10px;
        line-height: 2;
        letter-spacing: 1px;
    }
    #service #service-section .content-wrap h3 {
        left: 50%;
        font-size: 42px;
        letter-spacing: 0.84px;
        transform: translate(-50%, 5px);
    }
}

/* --------- service-detail page --------- */

#service-detail #section1-title {
    z-index: 2;
}

#service-detail #section1-title h1 {
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 2.5px;
}

#service-detail #section1-title h1 span {
    margin-bottom: 36px;
}

#service-detail #service-section {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 300px 0;
    background: linear-gradient(0deg, #0075C2, #005BAC);
    background: -webkit-linear-gradient(0deg, #0075C2, #005BAC);
}
#service-detail #service-section .introduction {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    z-index: 0;
}
#service-detail #service-section .introduction p {
    position: relative;
    color: #fff;
    font-size: 20px;
    line-height: 64px;
    letter-spacing: 2px;
    margin-right: 80px;
}
#service-detail #service-section.service-softwareproduct .introduction p {
    text-align: center;
}
#service-detail #service-section .introduction p::before {
    position: absolute;
    content: '01';
    left: -160px;
    top: -40px;
    font-family: 'Barlow Condensed';
    font-size: 290px;
    color: #0093D4;
    z-index: -1;
}
#service-detail #service-section.service-systemengineering .introduction p::before {
    content: '02';
}
#service-detail #service-section.service-softwareproduct .introduction p::before {
    content: '03';
}
#service-detail #service-section.service-softwareproduct img {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 40px;
    z-index: 1;
}
#service-detail #service-section .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 92px;
    margin: 0 160px 0 0;
    border-radius: 0 120px 120px 0;
    padding: 80px 64px 100px 0;
    background: #fff;
    background-image: url(./../img/bg-border.svg);
    overflow: hidden;
    z-index: 1;
}
#service-detail #service-section .content-wrap:nth-child(even) {
    padding: 80px 0 100px 64px;
    margin: 0 0 0 160px;
    border-radius: 120px 0 0 120px;
}
#service-detail #service-section .content {
    display: flex;
    gap: 92px;
}
#service-detail #service-section .content-wrap:nth-child(even) .content {
    flex-direction: row-reverse;
}
#service-detail #service-section h2 {
    position: relative;
    display: flex;
    align-items: flex-end;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 1.9px;
    color: #0068B7;
    border-bottom: 1px solid #8AA3D4;
}
#service-detail #service-section h2 span {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 92px;
    line-height: 1;
    letter-spacing: 12px;
    padding-left: 80px;
    color: #0093D4;
    display: inline-block;
    transform: translateY(10px);
}
#service-detail #service-section h2 .freepen {
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    right: 48px;
    bottom: -24px;
}
#service-detail #service-section h2 .freepen p {
    display: inline-block;
    font-family: Free Pen;
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-10deg);
}
#service-detail #service-section h2 .freepen p:nth-child(2) {
    transform: rotate(-10deg) translateX(40px);
}
#service-detail #service-section .content>img {
    max-width: 40%;
    margin-bottom: 15%;
    height: auto;
    object-fit: cover;
    border-radius: 0 40px 40px 0;
}
#service-detail #service-section .content-wrap:nth-child(even) .content>img {
    border-radius: 40px 0 0 40px;
}
#service-detail #service-section .content-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 60%;
}
#service-detail #service-section .content-wrap h3 {
    color: #36B7AA;
    font-weight: 500;
    font-size: 25px;
    line-height: 46px;
    letter-spacing: 3px;
}
#service-detail #service-section .content-wrap .hr {
    width: 100%;
    border-bottom: 1px solid #8AA3D4;
}
#service-detail #service-section .content-wrap .content-inner>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 1.4px;
}
#service-detail #service-section .content.skills {
    flex-direction: row !important;
    padding: 0 24px;
}
#service-detail #service-section .content.skills .content-inner {
    max-width: unset;
}
#service-detail #service-section .content.skills .content-inner>div {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
#service-detail #service-section .content.skills h3 {
    font-family: 'Barlow Condensed';
    color: #0093D4;
    letter-spacing: 0.6px;
}
#service-detail #service-section .content.skills h3 span {
    font-family: 'Inter 18pt';
    margin-right: 4px;
}

@media screen and (max-width:768px) {
    #service-detail #section1-title h1 {
        font-size: 16px;
        letter-spacing: 0.8px;
        z-index: 2;
    }
    #service-detail #section1-title h1 span {
        margin-bottom: 20px;
    }
    #service-detail #service-section {
        gap: 40px;
        padding: 130px 0;
    }
    #service-detail #service-section .introduction p {
        font-size: 12px;
        line-height: 2;
        letter-spacing: 2px;
        text-align: center;
        margin-right: 0;
    }
    #service-detail #service-section .introduction p::before {
        left: 50%;
        top: -56px;
        line-height: 1;
        font-size: 80px;
        transform: translateX(-50%);
    }
    #service-detail #service-section.service-softwareproduct img {
        max-width: 80%;
        border-radius: 20px;
        z-index: 1;
    }
    #service-detail #service-section .content-wrap {
        gap: 40px;
        margin-right: 24px;
        padding-top: 48px;
        padding-bottom: 48px;
        padding-right: 0;
        border-radius: 0 40px 40px 0;
    }
    #service-detail #service-section .content-wrap:nth-child(even) {
        padding: 40px 0 80px;
        margin: 0 0 0 24px;
        border-radius: 40px 0 0 40px;
    }
    #service-detail #service-section h2 {
        font-size: 16px;
        letter-spacing: 1.7px;
        z-index: 0;
    }
    #service-detail #service-section h2 span {
        font-size: 36px;
        letter-spacing: 6px;
        padding-left: 40px;
        transform: translateY(4px);
    }
    #service-detail #service-section h2 .freepen {
        right: unset;
        left: 24px;
        top: -24px;
        bottom: unset;
        z-index: -1;
    }
    #service-detail #service-section h2 .freepen p {
        font-size: 38px;
        color: #BBDCF4;
        z-index: 0;
        transform: rotate(-4deg);
    }
    #service-detail #service-section h2 .freepen p:nth-child(2) {
        transform: rotate(-4deg) translateX(40px);
    }
    #service-detail #service-section .content {
        flex-direction: column;
        gap: 24px;
        padding: 0 40px;
    }
    #service-detail #service-section .content-wrap:nth-child(even) .content {
        flex-direction: column;
    }
    #service-detail #service-section .content>img {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        margin-bottom: 24px;
    }
    #service-detail #service-section .content-wrap:nth-child(even) .content>img {
        border-radius: 20px;
    }
    #service-detail #service-section .content-inner {
        max-width: unset;
    }
    #service-detail #service-section .content-wrap h3 {
        font-size: 14px;
        line-height: 1;
        letter-spacing: 2px;
    }
    #service-detail #service-section .content-wrap .content-inner>p {
        font-size: 11px;
        line-height: 1.8;
        letter-spacing: 0.5px;
    }
    #service-detail #service-section .content.skills {
        flex-direction: column !important;
        padding: 0 24px;
    }
    #service-detail #service-section .content.skills .content-inner img {
        max-width: 20%;
    }
    #service-detail #service-section .content.skills .content-inner:nth-child(2) img {
        max-width: 25%;
    }
}

/* --------- flow page --------- */

#flow .fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#flow .fade-in-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

#flow #section1-title {
    z-index: 2;
}
#flow .section-title_w h1 span {
    padding-left: 120px;
}
#flow .section-title_w h1 span::before {
    width: 88px;
}
#flow .circle-wrap {
    opacity: .3;
}
#flow .flow-outer {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
#flow #flow-section {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 240px 120px;
    background: linear-gradient(0deg, #0075C2, #005BAC);
    background: -webkit-linear-gradient(0deg, #0075C2, #005BAC);
}
#flow #flow-section .introduction p {
    color: #fff;
    font-size: 20px;
    line-height: 56px;
    letter-spacing: 2px;
}
#flow #flow-section .content-wrap {
    position: relative;
    max-width: 600px;
}
#flow #flow-section .content-wrap:nth-child(odd) {
    margin-left: auto;
}
#flow #flow-section .content-wrap:nth-child(even) {
    margin-right: auto;
}
#flow #flow-section .content-wrap span {
    display: block;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 1.6px;
    text-align: center;
    color: #36B7AA;
}
#flow #flow-section .content-wrap h2 {
    position: relative;
    font-weight: 500;
    font-size: 28px;
    line-height: 70px;
    letter-spacing: 5.2px;
    text-align: center;
    color: #CFDD4C;
    padding: 4px 0;
    margin: 16px 0 40px;
}
#flow #flow-section .content-wrap h2::before,
#flow #flow-section .content-wrap h2::after {
    position: absolute;
    content: '';
    left: 0;
    height: 1px;
    width: 100%;
    background-image : linear-gradient(to right, #fff 10px, transparent 10px);
    background-size: 20px 1px;
    background-repeat: repeat-x; 
    background-position: left bottom;
}
#flow #flow-section .content-wrap h2::before {
    top: 0;
}
#flow #flow-section .content-wrap h2::after {
    bottom: 0;
}
#flow #flow-section .content-wrap h2 p {
    display: inline-block;
    font-size: 20px;
}
#flow #flow-section .content-wrap .flow-icon {
    position: absolute;
    height: auto;
    right: 50%;
    bottom: 100%;
    max-width: 20%;
    transform: translate(180%, 64px);
}
#flow #flow-section .content-wrap:nth-child(even) .flow-icon {
    right: unset;
    left: 50%;
    transform: translate(-180%, 64px);
}
#flow #flow-section .content-wrap:nth-child(1) .flow-icon {
    max-width: 15%;
    right: 40%;
}
#flow #flow-section .content-wrap:nth-child(2) .flow-icon {
    max-width: 25%;
}
#flow #flow-section .content-wrap .content-inner p {
    font-weight: 500;
    font-size: 18px;
    line-height: 48px;
    letter-spacing: 2px;
    text-align: center;  
    color: #fff;  
}
#flow #flow-section .content-wrap .content-inner p.text-yellow {
    color: #CFDD4C;
}
#flow #flow-section .content-wrap .content-inner ul {
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 40px 80px;
    margin-top: 40px;
}
#flow #flow-section .content-wrap .content-inner ul li {
    font-weight: 500;
    font-size: 18px;
    line-height: 48px;
    letter-spacing: 2px;
    color: #fff;
}
#flow #flow-section .content-wrap .content-inner h3 {
    border-radius: 40px;
    border: 1px solid #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 56px;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
    margin: 40px 0 24px;
}
#flow #flow-section .content-wrap .flow-arrow {
    margin: 24px auto;
    max-width: 60%;
}
#flow #flow-section .content-wrap:nth-child(odd) .flow-arrow {
    margin-left: 20%;
}
#flow #flow-section .content-wrap:nth-child(even) .flow-arrow {
    margin-right: 20%;
}
#flow #flow-section .content-wrap .arrow-wrapper {
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
}
@keyframes revealDown {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

#flow #flow-section .content-wrap .arrow-wrapper.arrow-animate {
    animation: revealDown .8s ease-out forwards;
    animation-delay: 0.6s;
}

#flow #flow-section .strong-point {
    max-width: 80%;
    margin: 0 auto;
}
#flow #flow-section picture {
    z-index: 1;
}

@media screen and (min-width:1440px) {
    #flow #flow-section {
        padding: 240px 240px;
    }
}

@media screen and (max-width:768px) {
    #flow #flow-section {
        gap: 80px;
        padding: 130px 24px;
    }
    #flow .section-title_w h1 span {
        padding-left: 48px;
    }
    #flow .section-title_w h1 span::before {
        width: 40px;
    }
    #flow #flow-section .introduction {
        z-index: 1;
    }
    #flow #flow-section .introduction p {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 1px;
    }
    #flow #flow-section .content-wrap {
        position: relative;
        width: 85%;
    }
    #flow #flow-section .content-wrap:nth-child(odd) {
        margin-left: 15%;
    }
    #flow #flow-section .content-wrap:nth-child(even) {
        margin-right: 15%;
    }
    #flow #flow-section .content-wrap span {
        font-size: 28px;
        letter-spacing: 1px;
    }
    #flow #flow-section .content-wrap h2 {
        font-size: 18px;
        line-height: 2.5;
        letter-spacing: 2px;
    }
    #flow #flow-section .content-wrap h2::before,
    #flow #flow-section .content-wrap h2::after {
        background-image : linear-gradient(to right, #fff 5px, transparent 5px);
        background-size: 10px 1px;
    }
    #flow #flow-section .content-wrap h2 p {
        font-size: 12px;
    }
    #flow #flow-section .content-wrap:nth-child(even) .flow-icon {
        transform: translate(-180%, 24px);
    }
    #flow #flow-section .content-wrap:nth-child(odd) .flow-icon {
        transform: translate(180%, 24px);
    }
    #flow #flow-section .content-wrap .content-inner p {
        font-size: 12px;
        line-height: 2;
        letter-spacing: 1px;
    }
    #flow #flow-section .content-wrap .content-inner ul {
        border-radius: 20px;
        padding: 16px 24px;
        margin-top: 24px;
    }
    #flow #flow-section .content-wrap .content-inner ul li {
        font-size: 12px;
        line-height: 2;
        letter-spacing: 1px;
    }
    #flow #flow-section .content-wrap .content-inner h3 {
        font-size: 14px;
        line-height: 2.5;
        letter-spacing: 1px;
    }
    #flow #flow-section .content-wrap .flow-arrow {
        max-width: 30%;
    }
    #flow #flow-section .content-wrap:nth-child(even) .flow-arrow {
        margin-left: 30%;
    }
    #flow #flow-section .content-wrap:nth-child(odd) .flow-arrow {
        margin-right: 30%;
    }
    #flow #flow-section .strong-point {
        max-width: 95%;
    }
}

/* --------- works page --------- */

#works #works-section {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 80px;
}
#works #works-section .content-wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
#works #works-section .img-wrap {
    position: relative;
}
#works #works-section .img-wrap span {
    position: absolute;
    top: -40px;
    left: -24px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 200px;
    line-height: 1;
    color: #0093D4;
}
#works #works-section .img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 300px;
}
#works #works-section .content-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#works #works-section h2 {
    display: flex;
    align-items: baseline;
    font-weight: 500;
    font-size: 32px;
    line-height: 70px;
    letter-spacing: 2px;
    color: #0068B7;
    border-bottom: 1px solid #0093D4;
}
#works #works-section h2 span {
    font-family: 'Barlow Condensed';
    font-weight: 700;
    font-size: 90px;
    line-height: 1;
    letter-spacing: 9px;
    white-space: nowrap;
    color: #0093D4;
    margin-right: 4px;
}
#works #works-section ul.category-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
#works #works-section ul.category-wrap li {
    background: #0068B7;
    color: #fff;
    border-radius: 10px;
    padding: 16px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}
#works #works-section .content-inner p {
    font-weight: 500;
    font-size: 20px;
    line-height: 2.4;
    letter-spacing: 2px;
    color: #0068B7;
}
#works #works-section .content-inner span.stack {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
    color: #322B29;
}
#works #cta-section.bg2 {
    background: transparent;
}

@media screen and (max-width:768px) {
    #works #works-section {
        gap: 80px;
        padding: 80px 24px;
    }
    #works #works-section .content-wrap {
        gap: 40px;
    }
    #works #works-section .img-wrap span {
        top: -24px;
        left: 0;
        font-size: 64px;
    }
    #works #works-section .img-wrap img {
        height: 160px;
        border-radius: 100px;
    }
    #works #works-section h2 {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 1px;
        padding-bottom: 4px;
    }
    #works #works-section h2 span {
        font-size: 24px;
        letter-spacing: 1px;
    }
    #works #works-section ul.category-wrap li {
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    #works #works-section .content-inner {
        gap: 24px;
    }
    #works #works-section .content-inner p {
        font-size: 14px;
        letter-spacing: 1px;
    }
    #works #works-section .content-inner span.stack {
        font-size: 11px;
        line-height: 1.8;
        letter-spacing: 0;
    }
}