@charset "UTF-8";

/*--------------------------------------------------------------------

    Global Reset

--------------------------------------------------------------------*/

/* Sections */

body {
    margin: 0;
    padding: 0;
}

section {
    margin: 0;
    padding: 0;
}

nav {
    margin: 0;
    padding: 0;
}

article {
    margin: 0;
    padding: 0;
}

aside {
    margin: 0;
    padding: 0;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    margin: 0;
    padding: 0;
}

h3 {
    margin: 0;
    padding: 0;
}

h4 {
    margin: 0;
    padding: 0;
}

h5 {
    margin: 0;
    padding: 0;
}

h6 {
    margin: 0;
    padding: 0;
}

header {
    margin: 0;
    padding: 0;
}

footer {
    margin: 0;
    padding: 0;
}

address {
    margin: 0;
    padding: 0;
}

/* Grouping content */

p {
    margin: 0;
    padding: 0;
}

hr {
    vertical-align: top;
}

ol {
    list-style-position: outside;
    margin: 0;
    padding: 0 0 0 2em;
}

ul {
    list-style-position: outside;
    margin: 0;
    padding: 0 0 0 2em;
}

li {
    margin: 0;
    padding: 0;
}

dl {
    margin: 0;
    padding: 0;
}

dt {
    margin: 0;
    padding: 0;
}

dd {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
    padding: 0;
}

figcaption {
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
}

/* Text-level semantics */

em {
    font-style: italic;
    font-weight: bold;
}

strong {
    font-weight: bold;
}

br {
    letter-spacing: 0;
}

/* Embedded content */

img {
    vertical-align: top;
}

a img {
    border: none;
}

iframe {
    vertical-align: top;
}

embed {
    vertical-align: top;
}

object {
    vertical-align: top;
}

/* Tabular data */

caption {
    display: none;
}

th {
    text-align: left;
}

/* Forms */

input {
    font-family: inherit;

    &[type="checkbox"],
    &[type="radio"] {
        margin: 0 0.5em 0 0;
    }
}

button {
    font-family: inherit;
}

select {
    font-family: inherit;
}

textarea {
    font-family: inherit;
    resize: vertical;
}

fieldset {
    border: none;
}

legend {
    display: none;
}

/*--------------------------------------------------------------------

    Template

--------------------------------------------------------------------*/

:root {
    --color-gray-01 : #9DA3AC;
    --color-gray-02 : #99A3B1;
    --color-gray-03 : #E5E5E5;
    --color-gray-04 : #EEEDED;
    --color-gray-05 : #F4F4F4;
    --color-blue-01 : #001F4E;
    --color-blue-02 : #294D88;
    --color-blue-03 : #2763C1;
    --color-blue-04 : #4C76BC;
    --color-blue-05 : #5891DC;
    --color-blue-06 : #8DAFE0;
    --color-blue-07 : #A5C1DA;
    --color-blue-08 : #D6E2ED;
    --color-blue-09 : #E8F1F9;
    --color-blue-10 : #EAEFF4;
}

body {
    background-color: #FFFFFF;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    line-height: 1.5;
    word-break: break-all;
    -webkit-text-size-adjust: 100%;

    color: #333;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    overflow-x: hidden;
}

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

@media screen and (max-width: 768px) {
    .sp {}

    .pc {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }

    .pc {}
}

.barlow-regular {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*--------------------------------------
    #siteHeader
--------------------------------------*/

#siteHeader {
    nav.global {
        align-items: center;
        box-sizing: border-box;
        display: flex;
        position: fixed;
        top: 0;
        transition: all 0.2s ease-in-out;
        width: 100%;
        z-index: 10;

        .logo {
            img {
                display: block;
                height: auto;
            }
        }

        .link {
            display: flex;
            flex-grow: 1;
            flex-wrap: wrap;
            font-weight: 700;
            gap: 0 40px;
            justify-content: center;
            list-style: none;
            padding: 0;

            li {
                a {
                    position: relative;

                    &::after {
                        background-color: var(--color-blue-04);
                        content: "";
                        display: block;
                        height: 2px;
                        position: absolute;
                        transform-origin: right top;
                        transform: scale(0, 1);
                        transition: transform 0.2s ease;
                        width: 100%;
                    }

                    &:hover {
                        &::after {
                            transform-origin: left top;
                            transform: scale(1, 1);
                        }
                    }
                }
            }
        }

        .menu {
            a {
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                span {
                    background-color: var(--color-blue-02);
                    display: block;
                }
            }
        }

        &[data-state="top"] {
            background-color: transparent;
        }

        &[data-state="scroll"] {
            background-color: #fff;
        }
    }

    nav.toggle {
        height: 100%;
        overflow: hidden;
        pointer-events: none;
        position: fixed;
        top: 0;
        transition: background-color 0.2s ease;
        width: 100vw;
        z-index: 10;

        .wrap {
            pointer-events: auto;

            .content {
                height: 100%;
                position: absolute;
            }

            .inner {
                height: 100%;
                overflow-x: hidden;
                overflow-y: auto;
            }

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

                .menu {
                    a {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        position: relative;

                        span {
                            background-color: var(--color-blue-02);
                            display: block;
                            position: absolute;

                            &:nth-child(1) {
                                transform: rotateZ(45deg);
                            }

                            &:nth-child(2) {
                                display: none;
                            }

                            &:nth-child(3) {
                                transform: rotateZ(-45deg);
                            }
                        }
                    }
                }
            }

            .body {
                .primary {
                    border-top: 1px solid #d1d1d1;
                    list-style: none;
                    padding: 0;

                    li {
                        border-bottom: 1px solid #d1d1d1;

                        a {
                            align-items: center;
                            color: var(--color-blue-03);
                            display: flex;
                            font-weight: 700;
                            justify-content: space-between;
                            text-decoration: none;
                            transition: all 0.2s ease;

                            &::after {
                                aspect-ratio: 13 / 6;
                                background-color: var(--color-blue-06);
                                content: "";
                                display: block;
                                flex-shrink: 0;
                                mask-image: url(../img/icon_arrow_right.svg);
                                mask-repeat: no-repeat;
                                mask-size: 100% 100%;
                                transform-origin: left center;
                                transition: all 0.2s ease;
                                width: 1em;
                            }

                            &:hover {
                                background-color: #f0f5f8;

                                &::after {
                                    transform: scale(1.4);
                                }
                            }
                        }
                    }
                }

                .secondary {
                    display: flex;
                    flex-direction: column;
                    list-style: none;
                    padding: 0;

                    li {
                        a {
                            color: var(--color-blue-03);
                            position: relative;
                            text-decoration: none;

                            &::after {
                                background-color: var(--color-blue-04);
                                content: "";
                                display: block;
                                height: 4px;
                                position: absolute;
                                transform-origin: right top;
                                transform: scale(0, 1);
                                transition: transform 0.2s ease;
                                width: 100%;
                            }

                            &:hover {
                                &::after {
                                    transform-origin: left top;
                                    transform: scale(1, 1);
                                }
                            }
                        }
                    }
                }
            }
        }

        &[data-state="close"] {
            .wrap {
                .content {
                    transform: translateX(100%);
                }
            }
        }

        &[data-state="open"] {
            .wrap {
                .content {
                    transform: translateX(0);
                }
            }
        }
    }

    .keyvisual {
        &[data-role="top"] {
            overflow: hidden;
            position: relative;

            .ornament {
                &[data-index="1"] {
                    div {
                        &::before {
                            border-color: var(--color-blue-10) transparent transparent var(--color-blue-10);
                            border-style: solid;
                        }
                    }
                }

                &[data-index="2"] {
                    div {
                        &::before {
                            border-color: var(--color-blue-10);
                            border-style: solid;
                        }
                    }
                }
            }

            .content {
                .text {
                    h1 {
                        color: var(--color-blue-02);
                        font-weight: 600;
                        letter-spacing: 0.05em;
                        line-height: 1.4;

                        span {
                            color: var(--color-blue-03);
                        }
                    }

                    p {
                        font-weight: 700;
                        color: var(--color-blue-02);
                        line-height: 1.8;
                    }
                }

                figure {}
            }
        }

        &[data-role="service"] {
            position: relative;

            .content {
                .text {
                    h1 {
                        color: var(--color-blue-03);
                        font-weight: 600;
                        line-height: 1.4;
                    }

                    p {
                        font-weight: 700;
                        color: var(--color-blue-02);
                        line-height: 2;
                    }
                }

                figure {}
            }

            .base {
                background-color: var(--color-blue-10);
                overflow: hidden;
                position: relative;
                width: 100%;
            }

            .ornament {
                z-index: 0;

                &[data-index="1"] {
                    div {
                        &::before {
                            border-color: var(--color-blue-08);
                            border-style: solid;
                        }
                    }
                }

                &[data-index="2"] {
                    div {
                        &::before {
                            background-color: var(--color-blue-08);
                        }
                    }
                }

                &[data-index="3"] {
                    div {
                        &::before {
                            background-color: var(--color-blue-07);
                            border-color: #C9D9E8;
                            border-style: solid;
                        }
                    }
                }
            }
        }

        & + .breadcrumb {
            margin-top: 0;
        }
    }

    .breadcrumb {
        box-sizing: border-box;

        ol {
            display: flex;
            flex-wrap: wrap;
            gap: 1em;
            list-style: none;
            padding: 0;

            li {
                align-items: center;
                display: flex;

                & + li {
                    gap: 1em;

                    &::before {
                        aspect-ratio: 1;
                        background-color: var(--color-blue-04);
                        border-radius: 9999px;
                        content: "";
                        display: block;
                    }
                }

                a {
                    color: var(--color-blue-03);
                    text-decoration: none;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    #siteHeader {
        nav.global {
            justify-content: space-between;
            height: 55px;
            padding: 0 20px;

            .logo {
                img {
                    display: block;
                    width: 178px;
                }
            }

            .link {
                display: none;
            }

            .button {
                display: none;
            }

            .menu {
                a {
                    height: 18px;
                    width: 30px;

                    span {
                        height: 2px;
                        width: 30px;
                    }
                }
            }
        }

        nav.toggle {
            .wrap {
                .content {
                    background-color: #fff;
                    right: 0;
                    transition: transform 0.2s ease;
                    width: 85vw;
                }

                .head {
                    display: flex;
                    flex-direction: column;

                    .logo {
                        align-items: center;
                        align-self: flex-start;
                        display: flex;
                        height: 50px;
                        order: 2;
                        padding: 0 20px;

                        img {
                            width: 222px;
                        }
                    }

                    .menu {
                        align-items: center;
                        align-self: flex-end;
                        display: flex;
                        height: 55px;
                        order: 1;
                        padding: 0 20px;

                        a {
                            height: 18px;
                            width: 30px;

                            span {
                                height: 2px;
                                width: 30px;
                            }
                        }
                    }
                }

                .body {
                    margin-top: 30px;

                    .primary {
                        li {
                            a {
                                font-size: 14px;
                                min-height: 50px;
                                padding: 0 20px;

                                &::after {
                                }
                            }
                        }
                    }

                    .secondary {
                        gap: 20px;
                        margin: 20px 20px 0;

                        li {
                            a {
                                font-size: 14px;
                            }
                        }
                    }

                    .button {
                        margin-bottom: 30px;
                        margin-top: 30px;
                        padding: 0 20px;

                        .buttonRound {
                            font-size: 15px;
                            height: 50px;
                            margin: 0 auto;
                            max-width: 275px;

                            &::after {
                                right: 20px;
                            }

                            &:hover {
                            }
                        }
                    }
                }
            }

            &[data-state="close"] {
                background-color: rgba(0, 0, 0, 0);
            }

            &[data-state="open"] {
                background-color: rgba(0, 0, 0, 0.6);

                .wrap {
                    height: 100%;
                }
            }
        }

        .keyvisual {
            padding-top: 55px;

            &[data-role="top"] {
                &::before {
                    border-width: 75px 140px;
                }

                &::after {
                    border-width: 30px;
                    height: 130px;
                    right: -60px;
                    top: 65px;
                    width: 130px;
                }

                .ornament {
                    &[data-index="1"] {
                        height: 150px;
                        top: 0;
                        width: 280px;

                        div {
                            &::before {
                                border-width: 75px 140px;
                            }
                        }
                    }

                    &[data-index="2"] {
                        height: 130px;
                        top: 65px;

                        div {
                            &::before {
                                border-width: 30px;
                                right: -55px;
                            }
                        }
                    }
                }

                .content {
                    .text {
                        padding: 50px 30px 0;

                        h1 {
                            font-size: 30px;

                            span {
                                font-size: 35px;
                            }
                        }

                        p {
                            font-size: 12px;
                            margin-top: 25px;
                        }
                    }

                    figure {
                        margin-top: 30px;
                    }
                }
            }

            &[data-role="service"] {
                padding-top: 55px;

                .content {
                    position: relative;
                    z-index: 1;

                    .text {
                        .wrap {
                            padding: 30px 30px 0;
                        }

                        h1 {
                            font-size: 24px;
                        }

                        p {
                            font-size: 12px;
                            margin-top: 10px;
                        }
                    }

                    figure {
                        margin-top: 10px;
                        transform: translateY(15px);
                    }
                }

                .base {
                    height: calc(100% - 55px);
                    position: absolute;
                    top: 55px;
                }

                .ornament {
                    &[data-index="1"] {
                        bottom: -45px;
                        height: 200px;

                        div {
                            &::before {
                                border-width: 50px;
                                right: -100px;
                            }
                        }
                    }

                    &[data-index="2"] {
                        bottom: -108px;
                        height: 222px;

                        div {
                            &::before {
                                left: -38px;
                            }
                        }
                    }

                    &[data-index="3"] {
                        display: none;
                    }
                }
            }
        }

        .breadcrumb {
            font-size: 12px;
            margin-top: 55px;
            padding: 25px 15px 30px;

            ol {
                li {

                    & + li {
                        &::before {
                            height: 4px;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    #siteHeader {
        nav.global {
            height: 120px;
            justify-content: space-between;
            padding: 0 50px;

            .logo {
                img {
                    width: 356px;
                }
            }

            .link {
                display: none;
                font-size: 16px;
                gap: 5px 20px;
                padding: 0 40px;

                li {
                    a {
                        color: #042351;
                        text-decoration: none;
                    }
                }
            }

            .button {
                display: none;

                .buttonRound {
                    font-size: 18px;

                    &::after {
                        right: 40px;
                    }
                }
            }

            .menu {
                a {
                    height: 36px;
                    width: 60px;

                    span {
                        height: 4px;
                        width: 60px;
                    }
                }
            }
        }

        nav.toggle {
            .wrap {
                .content {
                    width: 100%;
                }

                .head {
                    height: 120px;
                    padding: 0 50px;

                    .logo {
                        img {
                            width: 358px;
                        }
                    }

                    .menu {
                        a {
                            height: 36px;
                            width: 60px;

                            span {
                                height: 4px;
                                width: 60px;
                            }
                        }
                    }
                }

                .body {
                    margin: 0 auto;
                    max-width: 1000px;
                    padding: 0 100px 100px;

                    .primary {
                        li {
                            a {
                                font-size: 24px;
                                min-height: 100px;
                                padding: 0 40px;

                                &::after {
                                }
                            }
                        }
                    }

                    .secondary {
                        gap: 20px;
                        margin: 30px 40px 0;

                        li {
                            a {
                                font-size: 24px;
                            }
                        }
                    }

                    .button {
                        margin-bottom: 40px;
                        margin-top: 40px;

                        .buttonRound {
                            background-color: #fff;
                            color: var(--color-blue-01);
                            font-size: 30px;
                            height: 100px;
                            margin: 0 auto;
                            width: 550px;

                            &::after {
                                right: 40px;
                                width: 40px;
                            }

                            &:hover {
                                background-color: var(--color-blue-01);
                                color: #fff;
                            }
                        }
                    }
                }
            }

            &[data-state="close"] {
                background-color: rgba(255, 255, 255, 0);
            }

            &[data-state="open"] {
                background-color: rgba(255, 255, 255, 1);

                .wrap {
                    height: 100svh;
                }
            }
        }

        .keyvisual {
            padding-top: 120px;

            &[data-role="top"] {
                height: calc(864px + 20px);
                margin-bottom: -90px;

                .ornament {
                    &[data-index="1"] {
                        height: 436px;
                        top: 0;
                        width: 542px;

                        div {
                            &::before {
                                border-width: 218px 271px;
                            }
                        }
                    }

                    &[data-index="2"] {
                        bottom: 0;
                        height: 352px;

                        div {
                            &::before {
                                border-width: 80px;
                                left: -52px;
                            }
                        }
                    }
                }

                .content {
                    display: flex;
                    height: 698px;
                    margin: 0 auto;
                    max-width: 1920px;
                    position: relative;

                    .text {
                        align-self: center;
                        box-sizing: border-box;
                        display: flex;
                        justify-content: center;
                        padding: 0 65px;
                        position: relative;
                        /*transition: all 0.2s ease-in-out;*/
                        width: auto;
                        z-index: 1;

                        .wrap {
                            position: relative;
                            text-shadow: 0 0 3px #ffffff;
                            z-index: 1;

                            &::after {
                                backdrop-filter: blur(2px);
                                background-color: rgba(255, 255, 255, 0.7);
                                content: "";
                                display: block;
                                height: 100%;
                                left: -20px;
                                padding: 20px;
                                position: absolute;
                                top: -20px;
                                width: 100%;
                                z-index: -1;
                            }
                        }

                        h1 {
                            font-size: 76px;

                            span {
                                font-size: 84px;
                            }
                        }

                        p {
                            font-size: 24px;
                            margin-top: 30px;
                        }
                    }

                    figure {
                        height: 864px;
                        max-width: 998px;
                        position: absolute;
                        right: 0;
                        z-index: 0;
                    }
                }
            }

            &[data-role="service"] {

                .content {
                    display: flex;
                    height: 500px;
                    margin: 0 auto;
                    max-width: 1200px;
                    position: relative;
                    z-index: 1;

                    .text {
                        align-self: center;
                        box-sizing: border-box;
                        display: flex;
                        justify-content: center;
                        padding: 0 50px;
                        position: relative;
                        transition: all 0.2s ease-in-out;
                        width: auto;
                        z-index: 1;

                        .wrap {
                        }

                        h1 {
                            font-size: 48px;
                        }

                        p {
                            font-size: 20px;
                            margin-top: 30px;
                        }
                    }

                    figure {
                        aspect-ratio: 255 / 283;
                        height: 566px;
                        position: absolute;
                        right: 0;
                        transition: all 0.2s ease-in-out;
                        z-index: 0;
                    }
                }

                .base {
                    height: 500px;
                    position: absolute;
                    top: calc(calc(120 / 1500) * 100vw);
                }

                .ornament {
                    &[data-index="1"] {
                        bottom: -90px;
                        height: 445px;

                        div {
                            &::before {
                                border-width: 100px;
                                left: -130px;
                            }
                        }
                    }

                    &[data-index="2"] {
                        bottom: -108px;
                        height: 378px;

                        div {
                            &::before {
                                right: 425px;
                            }
                        }
                    }

                    &[data-index="3"] {
                        bottom: -104px;
                        height: 544px;

                        div {
                            &::before {
                                border-width: 144px;
                                right: -240px;
                            }
                        }
                    }
                }
            }
        }

        .breadcrumb {
            font-size: 16px;
            margin:  120px auto 0;
            max-width: 1200px;
            padding: 40px 50px 100px;

            ol {
                li {

                    & + li {
                        &::before {
                            height: 6px;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 1201px) {
    #siteHeader {
        nav.global {
            height: calc(calc(120 / 1500) * 100vw);
            padding: 0 calc(calc(50 / 1500) * 100vw);

            .logo {
                width: calc(calc(264 / 1500) * 100vw);

                img {
                    width: 100%;
                }
            }

            .link {
                display: flex;
                font-size: calc(calc(18 / 1500) * 100vw);
                gap: 0 calc(calc(30 / 1500) * 100vw);
                padding: 0;
            }

            .button {
                display: block;
                width: calc(calc(250 / 1500) * 100vw);
                
                .buttonRound {
                    aspect-ratio: 25 / 7;
                    font-size: calc(calc(20 / 1500) * 100vw);
                    width: 100%;

                    &::after {
                        right: 1em;
                    }
                }
            }

            .menu {
                display: none;
            }

            &[data-state="scroll"] {
                height: 80px;

                .button {
                    .buttonRound {
                        aspect-ratio: 29 / 5;
                    }
                }
            }
        }

        .keyvisual {
            padding-top: calc(calc(120 / 1500) * 100vw);

            &[data-role="top"] {
                .content {
                    .text {
                        width: 900px;
                    }

                    figure {
                    }
                }
            }
        }

        .breadcrumb {
            margin-top: calc(calc(120 / 1500) * 100vw);
        }
    }
}

@media screen and (min-width: 1501px) {
    #siteHeader {
        nav.global {
            height: 120px;
            padding: 0 min(50px, calc(calc(50 / 1920) * 100vw));

            .logo {
                width: min(358px, calc(calc(358 / 1920) * 100vw));
            }

            .link {
                font-size: min(20px, calc(calc(20 / 1920) * 100vw));
                gap: 0 min(60px, calc(calc(60 / 1920) * 100vw));
                justify-content: flex-end;
                padding-right: min(40px, calc(calc(40 / 1920) * 100vw));
            }

            .button {
                width: min(290px, calc(calc(290 / 1920) * 100vw));

                .buttonRound {
                    aspect-ratio: 29 / 9;
                    font-size: min(22px, calc(calc(22 / 1920) * 100vw));

                    &::after {
                        right: min(40px, calc(calc(40 / 1920) * 100vw));
                    }
                }
            }

            &[data-state="scroll"] {
                height: min(80px, calc(calc(80 / 1920) * 100vw));
            }
        }

        .keyvisual {
            padding-top: 120px;

            &[data-role="top"] {
                .content {
                    .text {
                        width: 1150px;
                    }

                    figure {
                    }
                }
            }

            &[data-role="service"] {
                .base {
                    top: 120px;
                }
            }
        }

        .breadcrumb {
            margin-top: 120px;
        }
    }
}

/*--------------------------------------
    #siteFooter
--------------------------------------*/

#siteFooter {
    background-color: var(--color-blue-01);

    .recommend {
        .heading {
            align-items: center;
            color: #fff;
            display: flex;
            justify-content: center;
        }

        .column {
            display: flex;

            .item {
                width: 100%;

                a {
                    background-color: var(--color-gray-03);
                    color: var(--color-blue-01);
                    display: block;
                    position: relative;
                    text-decoration: none;
                    transition: all .3s ease-in-out;

                    &::after {
                        aspect-ratio: 1;
                        background-color: var(--color-blue-06);
                        content: "";
                        mask-image: url(../img/icon_arrow_top_right.svg);
                        mask-repeat: no-repeat;
                        mask-size: 100% 100%;
                        position: absolute;
                        width: 1em;
                    }

                    &:hover {
                        background-color: #fff;

                        figure {
                            img {
                                transform: scale(1.08);
                            }
                        }
                    }
                }

                .wrap {
                    figure {
                        overflow: hidden;

                        img {
                            transition: all .3s ease-in-out;
                        }
                    }

                    .content {
                        .logo {
                            text-align: center;
                        }

                        .description {
                            font-weight: 700;
                            text-align: center;
                        }
                    }
                }
            }
        }
    }

    .sitemap {
        .logo {}

        .link {
            color: #fff;

            a {
                color: #fff;
                text-decoration: none;

                &[target="_blank"] {
                    display: inline-flex;

                    &::after {
                        aspect-ratio: 1;
                        background-color: var(--color-blue-06);
                        content: "";
                        mask-image: url(../img/icon_arrow_top_right.svg);
                        mask-repeat: no-repeat;
                        mask-size: 100% 100%;
                        width: 1em;
                    }
                }

                &:hover {
                    text-decoration: underline;
                }
            }

            ul {
                display: flex;
                flex-direction: column;
                font-weight: 700;
                list-style: none;
                padding: 0;

                ul {
                    font-weight: 400;
                }
            }
        }
    }

    .policy {
        border-top: 1px solid #244973;
        font-weight: 400;
        list-style: none;
        padding: 0;

        a {
            color: #fff;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }
    }

    .copy {
        color: #fff;
        font-family: "Barlow", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    #siteFooter {
        padding-bottom: 80px;

        .recommend {
            .heading {
                font-size: 20px;
                padding: 25px 10px;
            }

            .column {
                flex-direction: column;
                gap: 3px;
                margin: 0 8px;

                .item {
                    a {
                        &::after {
                            right: 8px;
                            top: 10px;
                            width: 12px;
                        }
                    }

                    .wrap {
                        align-items: center;
                        display: flex;

                        figure {
                            aspect-ratio: 28 / 27;
                            flex-shrink: 0;
                            width: 140px;
                        }

                        .content {
                            width: 100%;

                            .logo {
                                img {
                                    height: 49px;
                                    width: auto;
                                }
                            }

                            .description {
                                font-size: 12px;
                                margin-top: 13px;
                            }
                        }
                    }
                }
            }
        }

        .sitemap {
            margin: 80px 50px 0;

            .logo {
                margin: 0 auto;
                width: 150px;
            }

            .link {
                display: grid;
                grid-column-gap: 50px;
                grid-row-gap: 20px;
                margin-top: 42px;

                a {
                    &[target="_blank"] {
                        gap: 5px;
                        &::after {
                            width: 10px;
                        }
                    }
                }

                ul {
                    font-size: 12px;
                    gap: 20px;

                    &:nth-child(1) {
                        grid-area: 1 / 1 / 3 / 2;
                    }

                    &:nth-child(2) {
                        grid-area: 1 / 2 / 2 / 3;
                    }

                    &:nth-child(3) {
                        grid-area: 2 / 2 / 3 / 3;
                    }

                    ul {
                        margin-top: 20px;
                    }
                }
            }
        }

        .policy {
            display: inline-flex;
            flex-wrap: wrap;
            font-size: 12px;
            gap: 12px 26px;
            justify-content: center;
            margin: 30px 15px 0;
            padding: 30px 0 0 0;
        }

        .copy {
            font-size: 12px;
            margin-top: 28px;
        }
    }
}

@media screen and (min-width: 769px) {
    #siteFooter {
        padding-bottom: 90px;

        .recommend {
            .heading {
                font-size: 34px;
                height: 150px;
            }

            .column {
                background-color: #fff;
                border: 2px solid #fff;
                gap: 2px;
                justify-content: space-evenly;

                .item {
                    a {
                        height: 100%;

                        &::after {
                            bottom: 35px;
                            right: 35px;
                            width: 18px;
                        }
                    }

                    .wrap {
                        figure {}

                        .content {
                            padding: 46px 15px 58px;

                            .logo {
                                aspect-ratio: 3 /1;
                                margin: 0 auto;
                                max-width: 300px;
                            }

                            .description {
                                font-size: 24px;
                                margin-top: 30px;
                            }
                        }
                    }
                }
            }
        }

        .sitemap {
            display: flex;
            margin: 120px auto 0;
            max-width: 970px;

            .logo {
                margin-right: 95px;
                width: 214px;
            }

            .link {
                display: flex;
                flex-grow: 1;
                justify-content: space-between;

                a {
                    &[target="_blank"] {
                        gap: 13px;
                        &::after {
                            width: 18px;
                        }
                    }
                }

                ul {
                    font-size: 20px;
                    gap: 20px;

                    ul {
                        font-size: 18px;
                        margin-top: 20px;
                    }
                }
            }
        }

        .policy {
            display: flex;
            font-size: 16px;
            gap: 54px;
            justify-content: center;
            margin: 38px auto 0;
            max-width: 1070px;
            padding: 36px 0 0;
        }

        .copy {
            font-size: 16px;
            margin-top: 40px;
        }
    }
}

/*--------------------------------------------------------------------

    Buttons

--------------------------------------------------------------------*/

/*--------------------------------------
    .buttonRound
--------------------------------------*/

.buttonRound {
    align-items: center;
    background-color: var(--color-blue-01);
    border-color: var(--color-blue-01);
    border-radius: 9999px;
    border-style: solid;
    box-sizing: border-box;
    color: #fff;
    justify-content: center;
    display: flex;
    text-decoration: none;
    transition: all 0.2s ease;

    &:hover {
        background-color: #fff;
        color: var(--color-blue-01);
    }

    &[data-role="more"] {
        font-family: "Barlow", sans-serif;
        font-style: normal;
        font-weight: 400;
        position: relative;

        &::after {
            aspect-ratio: 13 / 6;
            background-color: var(--color-blue-06);
            content: "";
            mask-image: url(../img/icon_arrow_right.svg);
            mask-repeat: no-repeat;
            mask-size: 100% 100%;
            position: absolute;
            width: 1em;
        }
    }
}

@media screen and (max-width: 768px) {
    .buttonRound {
        border-width: 2px;
    }
}

@media screen and (min-width: 769px) {
    .buttonRound {
        border-width: 4px;
    }
}

/*--------------------------------------------------------------------

    Labels

--------------------------------------------------------------------*/

/*--------------------------------------
    .labelCircle
--------------------------------------*/

.labelCircle {
    align-items: center;
    aspect-ratio: 1;
    background-color: var(--color-blue-01);
    border-radius: 9999px;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-style: normal;
    font-weight: 400;
    justify-content: center;
    display: flex;
    max-width: 200px;
}

/*--------------------------------------------------------------------

    Lists

--------------------------------------------------------------------*/

/*--------------------------------------
    .listFaq
--------------------------------------*/

.listFaq {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;

    > li {
        background-color: #fff;

        &[data-state="close"] {
            .question {
                .text {
                    &::before {
                        background-color: var(--color-blue-01);
                    }

                    &::after {
                        mask-image: url(../img/icon_plus.svg);
                    }
                }

                &:hover {
                    .text {
                        &::before {
                            background-color: #fff;
                        }

                        &::after {
                            background-color: var(--color-blue-01);
                        }
                    }
                }
            }

            .answer {
                height: 0;
                margin: 0;
                opacity: 0;
                padding: 0;
            }
        }

        &[data-state="open"] {
            .question {
                .text {
                    &::before {
                        background-color: #fff;
                    }

                    &::after {
                        background-color: var(--color-blue-01);
                        mask-image: url(../img/icon_minus.svg);
                    }
                }
            }

            .answer {
                height: 100%;
                opacity: 1;
            }
        }
    }

    .question {
        cursor: pointer;
        display: flex;
        font-weight: 700;

        &::before {
            color: var(--color-blue-05);
            content: "Q.";
            flex-shrink: 0;
            font-weight: 600;
        }

        .text {
            flex-grow: 1;
            position: relative;

            &::before,
            &::after {
                content: "";
                display: block;
                position: absolute;
                right: 0;
                top: 0;
            }

            &::before {
                border: 1px solid var(--color-blue-01);
                border-width: 2px;
                border-radius: 9999px;
                box-sizing: border-box;
                transition: all 0.2s ease;
            }

            &::after {
                background-color: #ffffff;
                mask-repeat: no-repeat;
                mask-size: 100% 100%;
                transition: all 0.2s ease;
            }

            p {
            }
        }
    }

    .answer {
        border-top: 1px solid #d1d1d1;
        display: flex;
        font-weight: 500;
        transition: all 0.2s ease;

        &::before {
            color: var(--color-blue-01);
            content: "A.";
            font-weight: 600;
        }

        .text {
            flex-grow: 1;

            p {
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .listFaq {
        font-size: 14px;
        gap: 10px;

        > li {
            border-radius: 15px;
            padding: 15px 20px;
        }

        .question {
            gap: 10px;

            .text {
                padding-right: 30px;

                &::before,
                &::after {
                    height: 20px;
                    width: 20px;
                }

                p {
                }
            }
        }

        .answer {
            gap: 10px;
            margin-top: 15px;
            padding-top: 15px;

            .text {
                padding-right: 30px;

                p {
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .listFaq {
        font-size: 20px;
        gap: 20px;

        > li {
            border-radius: 30px;
            padding: 30px 50px;
        }

        .question {
            gap: 50px;

            .text {
                padding-right: 90px;

                &::before,
                &::after {
                    height: 40px;
                    transform: translateY(-5px);
                    width: 40px;
                }

                p {
                }
            }
        }

        .answer {
            gap: 50px;
            margin-top: 30px;
            padding-top: 30px;

            .text {
                padding-right: 90px;

                p {
                }
            }
        }
    }
}

/*--------------------------------------
    .listNews
--------------------------------------*/

.listNews {
    border-top: 1px solid var(--color-gray-03);
    list-style: none;
    padding: 0;

    > li {
        border-bottom: 1px solid var(--color-gray-03);
        display: flex;

        .c-btn.slide {
            background: #fff;
            color: #ff701e;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .c-btn.slide::after {
            background: #ff701e;
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            width: 100%;
            height: 100%;
            transform: scale(0, 1);
            transform-origin: left top;
            transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
            z-index: -1;
        }
        .c-btn.slide:hover {
            color: #fff;
        }
        .c-btn.slide:hover::after {
            transform: scale(1, 1);
        }


        a {
            display: block;
            overflow: hidden;
            position: relative;
            text-decoration: none;
            z-index: 1;
            width: 100%;

            &::after {
                background: var(--color-blue-10);
                content: '';
                height: 100%;
                left: 0;
                position: absolute;
                top: 0;
                transform: scale(0, 1);
                transform-origin: left top;
                transition: .2s ease;
                z-index: -1;
                width: 100%;
            }

            &:hover {
                &::after {
                    transform: scale(1, 1);
                }
            }

            &[data-icon] {
                .text {
                    &::after {
                        background-color: var(--color-blue-06);
                        content: "";
                        display: inline-block;
                        height: 0.8em;
                        margin-left: 0.4em;
                        mask-repeat: no-repeat;
                        mask-size: 100% 100%;
                        width: 0.8em;
                    }
                }
            }

            &[data-icon="outer"] {
                .text {
                    &::after {
                        mask-image: url(../img/icon_arrow_top_right.svg);
                    }
                }
            }

            &[data-icon="pdf"] {
                .text {
                    &::after {
                        mask-image: url(../img/icon_pdf.svg);
                    }
                }
            }
        }

        .wrap {
            &::after {
                aspect-ratio: 13 / 6;
                background-color: var(--color-blue-06);
                /*content: "";*/
                flex-shrink: 0;
                mask-image: url(../img/icon_arrow_right.svg);
                mask-repeat: no-repeat;
                mask-size: 100% 100%;
                width: 1em;
            }
        }

        .head {
            font-weight: 700;

            .date {
                color: #333;
            }

            .tag {
                color: var(--color-gray-01);
            }
        }

        .text {
            color: #333;
            display: -webkit-box;
            max-height: 3em;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }
    }
}

@media screen and (max-width: 768px) {
    .listNews {
        font-size: 14px;

        > li {
            a {
                padding: 15px;

                .wrap {
                    padding: 0;
                }
            }

            .wrap {
                padding: 15px;

                &::after {
                    margin-left: 18px;
                    width: 20px;
                }
            }

            .head {
                display: flex;
                gap: 15px;
                margin-bottom: 1em;
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .listNews {
        > li {
            display: flex;
            font-size: 18px;

            a {
                padding: 20px 30px 20px 20px;

                .wrap {
                    padding: 0;
                }
            }

            .wrap {
                display: flex;
                padding: 20px 30px 20px 20px;
                width: 100%;

                &::after {
                    margin-left: 30px;
                    width: 26px;
                }
            }

            .head {
                flex-shrink: 0;
                width: 140px;

                .date {
                    margin-bottom: 5px;
                }

                .tag {
                    font-size: 16px;
                }
            }

            .text {
                flex-grow: 1;
            }
        }
    }
}

/*--------------------------------------------------------------------

    Unique Sections

--------------------------------------------------------------------*/

/*--------------------------------------
    .ornament
--------------------------------------*/

.ornament {
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: -1;

    div {
        height: 100%;
        position: absolute;
        width: 100%;

        &[data-design="circle"] {
            &::before {
                aspect-ratio: 1;
                border-radius: 9999px;
                box-sizing: border-box;
                content: "";
                display: block;
                height: 100%;
                position: absolute;
                transition: all 0.2s ease;
                width: fit-content;
            }
        }

        &[data-design="triangle"] {
            &::before {
                border-color: var(--color-blue-10) transparent transparent var(--color-blue-10);
                border-style: solid;
                box-sizing: border-box;
                content: "";
                display: block;
                height: 100%;
                position: absolute;
                transition: all 0.2s ease;
            }
        }
    }
}

/*--------------------------------------
    #common-cta
--------------------------------------*/

.common-cta {
    color: #fff;

    .body {
        position: relative;

        &::before {
            background: linear-gradient(to bottom,  rgba(240,245,248,0) 0%,rgba(240,245,248,1) 25%,rgba(240,245,248,1) 100%);
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            top: 0;
            z-index: -1;
        }

        .labelCircle {
            background-color: var(--color-gray-02);
            left: 50%;
            position: absolute;
            transform: translateX(-50%);
        }

        .content {
            background-color: var(--color-blue-01);
            overflow: hidden;
            position: relative;

            &::before,
            &::after {
                aspect-ratio: 1;
                border-radius: 9999px;
                content: "";
                display: block;
                position: absolute;
                z-index: 0;
            }

            &::before {
                background-color: #1f3e6c;
            }

            &::after {
                border-color: #1f3e6c;
                border-style: solid;
                box-sizing: border-box;
            }
        }

        header {
            position: relative;
            z-index: 1;

            h2 {
                font-weight: 700;
                text-align: center;
            }
        }

        p {
            font-weight: 500;
            line-height: 2;
            position: relative;
            text-align: center;
            z-index: 1;
        }

        nav {
            position: relative;
            z-index: 1;

            .buttonRound {
                background-color: var(--color-blue-03);
                font-weight: 700;
                margin: 0 auto;
            }
        }
    }

    &[data-role="top"] {
        position: relative;

        .ornament {
            &[data-index="1"] {
                div {
                    &::before {
                        border-color: var(--color-gray-05);
                        border-style: solid;
                    }
                }
            }

            &[data-index="2"] {
                div {
                    &::before {
                        background-color: var(--color-blue-08);
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .common-cta {
        .wrap {
            padding: 150px 15px 0;
        }

        .body {
            &::before {
                height: 100px;
                margin-left: -20px;
                top: -125px;
                width: 40px;
            }

            .labelCircle {
                top: -50px;
                width: 100px;
            }

            .content {
                border-radius: 23px;
                padding: 0 25px 59px;

                &::before {
                    left: -71px;
                    top: -91px;
                    width: 220px;
                }

                &::after {
                    border-width: 40px;
                    bottom: -70px;
                    right: -93px;
                    width: 205px;
                }
            }

            header {
                padding-top: 90px;

                h2 {
                    font-size: 24px;
                    margin-bottom: 50px;
                }
            }

            p {
                font-size: 14px;
            }

            nav {
                margin-top: 50px;

                .buttonRound {
                    font-size: 15px;
                    height: 50px;

                    &[data-role="more"] {
                        &::after {
                            right: 15px;
                        }
                    }
                }
            }
        }

        &[data-role="top"] {
            margin-top: 25px;

            .wrap {
                padding-top: 122px;
            }

            .ornament {
                &[data-index="1"] {
                    height: 168px;
                    top: 0;

                    div {
                        &::before {
                            border-width: 38px;
                            left: -60px;
                        }
                    }
                }

                &[data-index="2"] {
                    display: none;
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .common-cta {
        .wrap {
            margin-left: auto;
            margin-right: auto;
            max-width: 1790px;
            padding: 0 65px;
        }

        .body {
            &::before {
                height: 200px;
                margin-left: -50px;
                top: -250px;
                width: 100px;
            }

            .labelCircle {
                top: -100px;
                width: 200px;
            }

            .content {
                border-radius: 46px;
                padding: 0 46px 120px;

                &::before {
                    left: -226px;
                    top: -110px;
                    width: 605px;
                }

                &::after {
                    border-width: 143px;
                    bottom: -472px;
                    right: -334px;
                    width: 738px;
                }
            }

            header {
                padding-top: 150px;

                h2 {
                    font-size: 48px;
                    margin-bottom: 50px;
                }
            }

            p {
                font-size: 30px;
            }

            nav {
                margin-top: 50px;

                .buttonRound {
                    font-size: 30px;
                    height: 130px;
                    max-width: 860px;

                    &[data-role="more"] {
                        &::after {
                            right: 50px;
                        }

                        &:hover {
                            background-color: #fff;
                        }
                    }
                }
            }
        }

        &[data-role="top"] {
            .wrap {
                margin-top: 60px;
                padding-top: 250px;
            }

            .ornament {
                &[data-index="1"] {
                    height: 520px;
                    top: -400px;

                    div {
                        &::before {
                            border-width: 116px;
                            right: -175px;
                        }
                    }
                }

                &[data-index="2"] {
                    height: 94px;
                    top: -12px;

                    div {
                        &::before {
                            left: 180px;
                        }
                    }
                }
            }
        }

        &[data-role="service"] {
            margin-top: 60px;

            .wrap {
                padding-top: 250px;
            }
        }
    }
}

/*--------------------------------------
    .common-error
--------------------------------------*/

.common-error {
    .wrap {
        box-sizing: border-box;

        header {
            color: var(--color-blue-02);

            .code {
                font-weight: 700;
                line-height: 1;
                text-align: center;
            }

            .text {
                font-weight: 700;
                line-height: 1;
                text-align: center;
            }

            h1 {
                font-weight: 700;
            }
        }

        .content {
            line-height: 2;
        }

        nav {
            display: flex;
            justify-content: center;
        }
    }
}

@media screen and (max-width: 768px) {
    .common-error {
        .wrap {
            padding: 0 30px 50px;

            header {
                margin-bottom: 20px;

                .code {
                    font-size: 100px;
                    margin-bottom: 20px;
                }

                .text {
                    font-size: 26px;
                    margin-bottom: 40px;
                }

                h1 {
                    font-size: 19px;
                }
            }

            .content {
                font-size: 12px;
            }

            nav {
                margin-top: 40px;

                .buttonRound {
                    font-size: 14px;
                    height: 40px;
                    width: 215px;

                    &::after {
                        right: 17px;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .common-error {
        .wrap {
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 50px 150px;

            header {
                margin-bottom: 40px;

                .code {
                    font-size: 150px;
                    margin-bottom: 30px;
                }

                .text {
                    font-size: 34px;
                    margin-bottom: 50px;
                }

                h1 {
                    font-size: 34px;
                    text-align: center;
                }
            }

            .content {
                font-size: 20px;
                text-align: center;
            }

            nav {
                margin-top: 45px;

                .buttonRound {
                    font-size: 20px;
                    height: 50px;
                    width: 290px;

                    &::after {
                        right: 20px;
                    }
                }
            }
        }
    }
}

/*--------------------------------------
    .common-flow
--------------------------------------*/

.common-flow {
    position: relative;

    .wrap {
        header {
            align-items: center;
            display: flex;
            flex-direction: column;
            position: relative;

            &::before {
                background: linear-gradient(to bottom,  rgba(240,245,248,0) 0%,rgba(240,245,248,1) 25%,rgba(240,245,248,1) 100%);
                content: "";
                display: block;
                position: absolute;
                top: 0;
                z-index: -1;
            }

            .labelCircle {
                background-color: var(--color-blue-04);
            }

            h2 {
                color: var(--color-blue-02);
            }
        }
        
        .article {
            display: flex;
            flex-direction: column;

            section {
                display: flex;
                position: relative;

                &::after {
                    background-color: #f0f5f8;
                    content: "";
                    display: block;
                    height: 100%;
                    position: absolute;
                    z-index: -1;
                }

                &:last-child {
                    &::after {
                        display: none;
                    }
                }

                h3 {
                    align-items: center;
                    background-color: #fff;
                    border-color: #d8e3ee;
                    border-radius: 9999px;
                    border-style: solid;
                    box-sizing: border-box;
                    color: var(--color-blue-02);
                    display: flex;
                    flex-shrink: 0;
                    justify-content: center;
                    text-align: center;
                }

                p {
                    line-height: 2;
                }
            }
        }
    }

    .ornament {
        &[data-index="1"] {
            div {
                &::before {
                    border-color: var(--color-gray-05);
                    border-style: solid;
                }
            }
        }

        &[data-index="2"] {
            div {
                &::before {
                    background-color: var(--color-blue-09);
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .common-flow {
        padding: 20px 0 0;

        .wrap {
            padding: 0 15px;

            header {
                margin-bottom: 30px;
                padding-top: 80px;

                &::before {
                    height: 100px;
                    width: 40px;
                }

                .labelCircle {
                    font-size: 16px;
                    margin-bottom: 20px;
                    width: 100px;
                }

                h2 {
                    font-size: 24px;
                }
            }

            .article {
                gap: 36px 0;

                section {
                    gap: 0 20px;

                    &::after {
                        left: 45px;
                        top: 90px;
                        width: 10px;
                    }

                    h3 {
                        border-width: 3px;
                        font-size: 14px;
                        height: 100px;
                        width: 100px;
                    }

                    p {
                        font-size: 14px;
                    }
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                height: 135px;
                top: 8px;

                div {
                    &::before {
                        border-width: 30px;
                        right: -50px;
                    }
                }
            }

            &[data-index="2"] {
                display: none;
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .common-flow {
        padding: 20px 0 0;

        .wrap {
            padding: 0 65px;

            header {
                margin-bottom: 50px;
                padding-top: 160px;

                &::before {
                    height: 200px;
                    width: 100px;
                }

                .labelCircle {
                    font-size: 32px;
                    margin-bottom: 60px;
                    width: 200px;
                }

                h2 {
                    font-size: 48px;
                }
            }

            .article {
                gap: 30px 0;
                margin: 0 auto;
                max-width: 1040px;

                section {
                    align-items: center;
                    gap: 0 40px;

                    &::after {
                        left: 90px;
                        top: 190px;
                        width: 20px;
                    }

                    h3 {
                        border-width: 5px;
                        font-size: 24px;
                        height: 200px;
                        width: 200px;
                    }

                    p {
                        font-size: 20px;
                    }
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                height: 490px;
                top: -190px;

                div {
                    &::before {
                        border-width: 110px;
                        left: -134px;
                    }
                }
            }

            &[data-index="2"] {
                height: 333px;
                top: 480px;

                div {
                    &::before {
                        right: -112px;
                    }
                }
            }
        }

        &[data-role="service"] {
            .ornament {
                &[data-index="1"] {
                    top: 0;
                }
            }
        }
    }
}

/*--------------------------------------
    .common-intro
--------------------------------------*/

.common-intro {
    .mainvisual {
        position: relative;

        h2 {
            color: var(--color-blue-02);
        }

        .ornament {
            &[data-index="1"] {
                div {
                    &::before {
                        background-color: var(--color-blue-08);
                    }
                }
            }

            &[data-index="2"] {
                div {
                    &::before {
                        background-color: var(--color-blue-09);
                    }
                }
            }
        }
    }

    .article {
        section {
            position: relative;

            .wrap {
                .content {
                    .inner {
                        h3 {
                            display: flex;

                            &::before {
                                aspect-ratio: 5 / 4;
                                content: "";
                                display: block;
                                mask-repeat: no-repeat;
                                mask-size: 100% 100%;
                            }
                        }

                        h4 {
                            color: var(--color-blue-02);
                        }

                        h5 {
                            border-top: 2px solid #d3d3d3;
                            color: var(--color-blue-02);
                        }

                        p {
                            line-height: 2;
                        }

                        ul {
                            display: grid;
                            grid-template-columns: repeat(2, auto);
                            padding-left: 1em;
                        }

                        nav {
                            a {
                                color: var(--color-blue-03);
                                font-weight: 700;
                                position: relative;
                                text-decoration: none;

                                &::before {
                                    background-color: var(--color-blue-04);
                                    bottom: -0.2em;
                                    content: "";
                                    display: block;
                                    height: 4px;
                                    position: absolute;
                                    transform-origin: right top;
                                    transform: scale(0, 1);
                                    transition: transform 0.2s ease;
                                    width: 100%;
                                }

                                &:hover {
                                    &::before {
                                        transform-origin: left top;
                                        transform: scale(1, 1);
                                    }
                                }

                                &[target="_blank"] {
                                    display: inline-flex;

                                    &::after {
                                        aspect-ratio: 1;
                                        background-color: var(--color-blue-06);
                                        content: "";
                                        margin-left: 0.4em;
                                        mask-image: url(../img/icon_arrow_top_right.svg);
                                        mask-repeat: no-repeat;
                                        mask-size: 100% 100%;
                                        width: 0.8em;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.consulting {
                .wrap {
                    .content {
                        .inner {
                            h3 {
                                color: #40b3bc;

                                &::before {
                                    background-color: #40b3bc;
                                    mask-image: url(../img/icon_consulting.svg);
                                }
                            }
                        }
                    }
                }

                .ornament {
                    &[data-index="1"] {
                        div {
                            &::before {
                                background-color: var(--color-gray-05);
                            }
                        }
                    }

                    &[data-index="2"] {
                        div {
                            &::before {
                                background-color: var(--color-blue-07);
                            }
                        }
                    }
                }
            }

            &.design {
                .wrap {
                    .content {
                        .inner {
                            h3 {
                                color: #5e81d1;
                                
                                &::before {
                                    background-color: #5e81d1;
                                    mask-image: url(../img/icon_design.svg);
                                }
                            }
                        }
                    }
                }

                .ornament {
                    &[data-index="1"] {
                        div {
                            &::before {
                                border-color: var(--color-blue-09);
                                border-style: solid;
                            }
                        }
                    }

                    &[data-index="2"] {
                        div {
                            &::before {
                                background-color: var(--color-blue-08);
                            }
                        }
                    }
                }
            }

            &.server {
                .wrap {
                    .content {
                        .inner {
                            h3 {
                                color: #0f78ce;
                                
                                &::before {
                                    background-color: #0f78ce;
                                    mask-image: url(../img/icon_server.svg);
                                }
                            }
                        }
                    }
                }

                .ornament {
                    &[data-index="1"] {
                        div {
                            &::before {
                                background-color: var(--color-gray-05);
                            }
                        }
                    }

                    &[data-index="2"] {
                        div {
                            &::before {
                                background-color: var(--color-blue-08);
                            }
                        }
                    }
                }
            }

            &.support {
                .wrap {
                    .content {
                        .inner {
                            h3 {
                                color: #309ce5;
                                
                                &::before {
                                    background-color: #309ce5;
                                    mask-image: url(../img/icon_support.svg);
                                }
                            }
                        }
                    }
                }
            }

            .decoration {
                display: flex;
                justify-content: center;
                position: absolute;
                top: 0;
                width: 100%;

                .wrap {
                    span {
                        background: linear-gradient(to bottom,  rgba(240,245,248,0) 0%,rgba(240,245,248,1) 25%,rgba(240,245,248,1) 80%,rgba(240,245,248,0) 100%);
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .common-intro {
        .mainvisual {
            h2 {
                font-size: 19px;
                margin-bottom: 20px;
                padding: 0 30px;
            }

            p {
                font-size: 14px;
                padding: 0 30px;
            }

            figure {
                margin-top: 25px;
                padding: 0 8px;
            }
        }

        .article {
            section {
                margin-top: 20px;
                padding-top: 135px;

                .wrap {
                    .content {
                        padding: 0 15px;

                        .inner {
                            h3 {
                                font-size: 24px;
                                margin: 0 15px;
                                gap: 15px;

                                &::before {
                                    width: 30px;
                                }
                            }

                            h4 {
                                font-size: 18px;
                                margin: 15px 15px 20px;
                            }

                            h5 {
                                font-size: 15px;
                                margin: 15px 15px 10px;
                                padding-top: 15px;
                            }

                            p {
                                font-size: 14px;
                                margin: 0 15px;
                            }

                            ul {
                                font-size: 14px;
                                gap: 5px 2em;
                                margin: 0 15px;
                            }

                            nav {
                                font-size: 14px;
                                margin: 20px 15px 0;
                            }
                        }
                    }
                }

                &.consulting {
                    .ornament {
                        &[data-index="1"] {
                            height: 125px;
                            top: -55px;

                            div {
                                &::before {
                                    left: -50px;
                                }
                            }
                        }

                        &[data-index="2"] {
                            height: 30px;
                            top: 290px;

                            div {
                                &::before {
                                    right: 50px;
                                }
                            }
                        }
                    }
                }

                &.design {
                    .ornament {
                        &[data-index="1"] {
                            height: 132px;
                            top: -20px;

                            div {
                                &::before {
                                    border-width: 30px;
                                    right: -42px;
                                }
                            }
                        }

                        &[data-index="2"] {
                            height: 48px;
                            top: 516px;

                            div {
                                &::before {
                                    left: 20px;
                                }
                            }
                        }
                    }
                }

                &.server {
                    .ornament {
                        &[data-index="1"] {
                            display: none;
                        }

                        &[data-index="2"] {
                            display: none;
                        }
                    }
                }

                .decoration {
                    .wrap {
                        display: flex;

                        span {
                            height: 100px;
                            width: 40px;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .common-intro {

        .mainvisual {
            .wrap {
                padding: 0 50px;
            }

            h2 {
                font-size: 34px;
                margin-bottom: 40px;
                text-align: center;
            }

            p {
                font-size: 20px;
                text-align: center;
            }

            figure {
                margin: 60px auto 0;
                max-width: 766px;
            }

            .ornament {
                &[data-index="1"] {
                    height: 60px;
                    top: 40px;

                    div {
                        &::before {
                            right: 84px;
                        }
                    }
                }

                &[data-index="2"] {
                    height: 250px;
                    top: 280px;

                    div {
                        &::before {
                            left: -34px;
                        }
                    }
                }
            }
        }

        .article {
            section {
                margin-top: 50px;
                padding-top: 280px;

                .wrap {
                    display: flex;
                    gap: 45px;
                    max-width: 1470px;
                    margin: 0 auto;
                    padding: 0 50px;

                    .content {
                        flex-shrink: 0;
                        width: min(50%, 50cqw);

                        .inner {
                            max-width: 550px;

                            h3 {
                                font-size: 40px;
                                gap: 16px;

                                &::before {
                                    width: 50px;
                                }
                            }

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

                            h5 {
                                font-size: 24px;
                                margin: 30px 0 20px;
                                padding-top: 30px;
                            }

                            p {
                                font-size: 20px;
                            }

                            ul {
                                font-size: 18px;
                                gap: 10px 2em;
                            }

                            nav {
                                font-size: 20px;
                                margin-top: 40px;
                            }
                        }
                    }

                    figure {
                        width: 46.93cqw;
                    }
                }

                &:first-child {
                    margin-top: 20px;
                }

                &:nth-child(odd) {
                    .wrap {
                        .content {
                            .inner {
                                margin-left: auto;
                            }
                        }
                    }
                }

                &:nth-child(even) {
                    .wrap {
                        .content {
                            order: 2;

                            .inner {
                                margin-right: auto;
                            }
                        }

                        figure {
                            order: 1;
                        }
                    }
                }

                &.consulting {
                    .ornament {
                        &[data-index="1"] {
                            height: 330px;
                            top: -150px;

                            div {
                                &::before {
                                    right: -70px;
                                }
                            }
                        }

                        &[data-index="2"] {
                            bottom: -20px;
                            height: 100px;

                            div {
                                &::before {
                                    right: 160px;
                                }
                            }
                        }
                    }
                }

                &.design {
                    .ornament {
                        &[data-index="1"] {
                            height: 556px;
                            top: -125px;

                            div {
                                &::before {
                                    border-width: 125px;
                                    left: -278px;
                                }
                            }
                        }

                        &[data-index="2"] {
                            display: none;
                        }
                    }
                }

                &.server {
                    .ornament {
                        &[data-index="1"] {
                            height: 274px;
                            top: 490px;

                            div {
                                &::before {
                                    left: -54px;
                                }
                            }
                        }

                        &[data-index="2"] {
                            bottom: -10px;
                            height: 94px;

                            div {
                                &::before {
                                    right: 100px;
                                }
                            }
                        }
                    }
                }

                .decoration {
                    .wrap {
                        span {
                            height: 200px;
                            width: 100px;
                        }
                    }
                }
            }
        }
    }
}

/*--------------------------------------
    .common-service
--------------------------------------*/

.common-service {
    overflow: hidden;
    position: relative;

    .wrap {
        header {
            align-items: center;
            display: flex;
            flex-direction: column;
            position: relative;

            &::before {
                background: linear-gradient(to bottom,  rgba(240,245,248,0) 0%,rgba(240,245,248,1) 25%,rgba(240,245,248,1) 100%);
                content: "";
                display: block;
                position: absolute;
                top: 0;
                z-index: -1;
            }

            .labelCircle {
                background-color: var(--color-blue-04);
            }

            h2 {
                color: var(--color-blue-02);
            }
        }
        
        .article {

            section {
                a {
                    color: #333;
                    display: block;
                    text-decoration: none;
                }

                div {}

                figure {
                    img {
                        aspect-ratio: 1;
                    }
                }

                h3 {
                    color: var(--color-blue-02);
                }

                p {
                }

                nav {
                }
            }
        }
    }

    .ornament {
        &[data-index="1"] {
            div {
                &::before {
                    border-color: var(--color-blue-09);
                    border-style: solid;
                }
            }
        }

        &[data-index="2"] {
            div {
                &::before {
                    background-color: var(--color-gray-05);
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .common-service {
        padding: 20px 0 85px;

        .wrap {
            header {
                margin-bottom: 30px;
                padding-top: 80px;

                &::before {
                    height: 100px;
                    width: 40px;
                }

                .labelCircle {
                    font-size: 16px;
                    margin-bottom: 20px;
                    width: 100px;
                }

                h2 {
                    font-size: 24px;
                }
            }

            .article {
                section {
                    border-bottom: 1px solid var(--color-blue-07);

                    &:nth-child(1) {
                        border-top: 1px solid var(--color-blue-07);
                    }

                    div {
                        display: grid;
                        grid-template-columns: auto 1fr auto;
                        grid-template-rows: auto auto;
                        gap: 0px 0px; 
                        grid-template-areas: 
                            "figure h3 nav"
                            "figure p nav";
                        padding: 30px 0;
                    }

                    figure {
                        align-self: center;
                        grid-area: figure;
                        padding: 0 17px;

                        img {
                            height: 62px;
                        }
                    }

                    h3 {
                        font-size: 16px;
                        grid-area: h3;
                        margin-bottom: 6px;
                    }

                    p {
                        font-size: 14px;
                        grid-area: p;
                    }

                    nav {
                        align-self: center;
                        grid-area: nav;
                        padding: 0 15px 0 20px;

                        &::after {
                            aspect-ratio: 13 / 6;
                            background-color: var(--color-blue-06);
                            content: "";
                            display: block;
                            mask-image: url(../img/icon_arrow_right.svg);
                            mask-repeat: no-repeat;
                            mask-size: 100% 100%;
                            width: 1em;
                        }

                        .buttonRound {
                            display: none;
                        }
                    }
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                height: 170px;
                top: -80px;

                div {
                    &::before {
                        border-width: 30px;
                        left: -60px;
                    }
                }
            }

            &[data-index="2"] {
                bottom: -120px;
                height: 185px;

                div {
                    &::before {
                        right: -28px;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .common-service {
        padding: 50px 0 150px;

        .wrap {
            padding: 0 65px;

            header {
                margin-bottom: 50px;
                padding-top: 160px;

                &::before {
                    height: 200px;
                    width: 100px;
                }

                .labelCircle {
                    font-size: 32px;
                    margin-bottom: 60px;
                    width: 200px;
                }

                h2 {
                    font-size: 48px;
                }
            }

            .article {
                display: grid;
                gap: 50px 0;
                grid-template-columns: repeat(3, 1fr);
                margin: 0 auto;
                max-width: 1100px;

                section {
                    border-color: var(--color-blue-07);
                    border-style: solid;
                    border-width: 0 0 0 2px;
                    padding: 15px 30px 50px;

                    &:nth-child(3n + 1) {
                        border-left: none;
                    }

                    a {
                        height: 100%;

                        h3 {
                            position: relative;

                            &::after {
                                background-color: var(--color-blue-04);
                                content: "";
                                display: block;
                                height: 4px;
                                position: absolute;
                                transform-origin: right top;
                                transform: scale(0, 1);
                                transition: transform 0.2s ease;
                                width: 100%;
                            }
                        }

                        &:hover {
                            h3 {
                                &::after {
                                    transform-origin: left top;
                                    transform: scale(1, 1);
                                }
                            }

                            nav {
                                .buttonRound {
                                    background-color: #fff;
                                    color: var(--color-blue-01);
                                }
                            }
                        }
                    }

                    div {
                        align-items: center;
                        display: flex;
                        flex-direction: column;
                        height: 100%;
                    }

                    figure {
                        img {
                            height: 146px;
                        }
                    }

                    h3 {
                        font-size: 26px;
                        margin: 36px 0 32px;
                    }

                    p {
                        flex-grow: 1;
                        font-size: 20px;
                    }

                    nav {
                        margin-top: 30px;

                        .buttonRound {
                            height: 50px;
                            width: 170px;

                            &::after {
                                right: 20px;
                                width: 26px;
                            }
                        }
                    }
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                height: 520px;
                top: 64px;

                div {
                    &::before {
                        border-width: 116px;
                        left: -168px;
                    }
                }
            }

            &[data-index="2"] {
                bottom: -80px;
                height: 390px;

                div {
                    &::before {
                        right: -90px;
                    }
                }
            }
        }
    }
}

/*--------------------------------------
    .contact-intro
--------------------------------------*/

.contact-intro {
    .wrap {
        box-sizing: border-box;

        h2 {
            color: var(--color-blue-02);
        }

        nav {
            display: flex;
            justify-content: center;

            .buttonRound {
                padding: 0 2em;

                &::after {
                    right: 0.5em;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .contact-intro {
        .wrap {
            padding: 0 30px 50px;

            h2 {
                font-size: 19px;
                margin-bottom: 15px;
            }

            p {
                font-size: 14px;
            }

            nav {
                margin-top: 20px;

                .buttonRound {
                    font-size: 14px;
                }
            }

            .content {
                margin-top: 25px;
            }
        }
    }
}

@media screen and (min-width: 769px) {
    .contact-intro {
        .wrap {
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 50px 100px;

            h2 {
                font-size: 34px;
                margin-bottom: 40px;
                text-align: center;
            }

            p {
                font-size: 20px;
                text-align: center;
            }

            nav {
                margin-top: 40px;

                .buttonRound {}
            }

            .content {
                margin-top: 50px;
            }
        }
    }
}

/*--------------------------------------
    #index-intro
--------------------------------------*/

#index-intro {
    section {
        > .wrap {
            position: relative;
        }

        header {
            box-sizing: border-box;

            &::before {
                aspect-ratio: 1;
                border-color: var(--color-blue-07);
                border-radius: 9999px;
                border-style: solid;
                box-sizing: border-box;
                content: "";
                display: block;
            }

            p {
                color: var(--color-blue-03);
                font-family: "Barlow", sans-serif;
                font-weight: 400;
            }

            h2 {
                color: var(--color-blue-02);
                font-weight: 700;
            }
        }

        .text {
            box-sizing: border-box;
            line-height: 2;

            p {
                & + p {
                    margin-top: 1em;
                }
            }
        }

        .decoration {
            transition: margin 0.2s ease-in-out;

            .top {
                background: linear-gradient(to bottom,  rgba(240,245,248,0) 0%,rgba(240,245,248,1) 20%,rgba(240,245,248,1) 100%);
                display: block;
            }

            .middle {
                background-color: #f0f5f8;
                display: block;
            }

            .bottom {
                background: linear-gradient(to bottom,  rgba(240,245,248,1) 0%,rgba(240,245,248,1) 80%,rgba(240,245,248,0) 100%);
                display: block;
            }
        }

        &:nth-child(2) {
            > .wrap {
                &::before {
                    aspect-ratio: 1;
                    background-color: var(--color-blue-07);
                    border-radius: 9999px;
                    content: "";
                    display: block;
                    position: absolute;
                    transition: all 0.2s ease;
                    z-index: -1;
                }

                figure {
                    position: relative;

                    &::before {
                        aspect-ratio: 1;
                        background-color: var(--color-blue-08);
                        border-radius: 9999px;
                        content: "";
                        display: block;
                        position: absolute;
                        transition: all 0.2s ease;
                        z-index: -1;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    #index-intro {
        section {
            > .wrap {
                padding: 0 30px 20px;
            }

            header {
                align-items: center;
                display: flex;
                flex-direction: column;

                &::before {
                    border-width: 6px;
                    margin-bottom: 3px;
                    width: 25px;
                }

                p {
                    font-size: 18px;
                }

                h2 {
                    font-size: 24px;
                }
            }

            figure {
                margin-top: 15px;
                position: relative;

                .pmark {
                    left: 0;
                    position: absolute;
                    width: 12.5vw;
                }
            }

            .text {
                font-size: 14px;
                margin-top: 30px;
            }

            .decoration {
                display: flex;
                justify-content: center;

                .top {
                    display: none;
                }

                .middle {
                    background: linear-gradient(to bottom,  rgba(240,245,248,0) 0%,rgba(240,245,248,1) 25%,rgba(240,245,248,1) 80%,rgba(240,245,248,0) 100%);
                    height: 100px;
                    width: 40px;
                }

                .bottom {
                    display: none;
                }
            }

            &:nth-child(2) {
                > .wrap {
                    &::before {
                        left: -9px;
                        top: -75px;
                        width: 50px;
                    }

                    figure {
                        &::before {
                            bottom: 3px;
                            right: -10px;
                            width: 30px;
                        }
                    }
                }
            }

            &:nth-child(3) {
                > .wrap {
                    &::before {
                        aspect-ratio: 1;
                        background-color: var(--color-gray-05);
                        border-radius: 9999px;
                        content: "";
                        display: block;
                        left: -65px;
                        position: absolute;
                        top: -80px;
                        transition: all 0.2s ease;
                        width: 127px;
                        z-index: -1;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    #index-intro {
        padding: 0 65px;

        section {
            > .wrap {
                align-items: center;
                display: flex;
                margin: 0 auto;
                max-width: 1790px;

                > figure {
                    box-sizing: border-box;
                    flex-shrink: 0;
                    max-width: 845px;
                    width: calc(50% - 50px);
                }
            }

            .content {
                display: flex;
                width: calc(50% + 50px);
            }

            .article {
                max-width: 500px;
            }

            header {
                margin-bottom: 40px;
                position: relative;

                &::before {
                    border-width: 12px;
                    left: -74px;
                    position: absolute;
                    width: 50px;
                }

                p {
                    font-size: 32px;
                }

                h2 {
                    font-size: 40px;
                }
            }

            .text {
                font-size: 20px;
            }

            .pmark {
                margin-top: 30px;
                text-align: right;

                img {
                    height: 95px;
                    width: 94px;
                }
            }

            .decoration {
                margin: 0 auto;
                max-width: 970px;

                > .wrap {
                    box-sizing: border-box;
                    width: calc(50% + 50px);
                }

                .top {
                    height: 180px;
                    width: 100px;
                }

                .middle {
                    height: 100px;
                }

                .bottom {
                    height: 180px;
                    width: 100px;
                }

                &[data-role="top"] {
                    > .wrap {
                        margin-left: auto;
                    }

                    .middle {
                        background: linear-gradient(to right,  rgba(240,245,248,1) 0%,rgba(240,245,248,1) 80%,rgba(240,245,248,0) 100%);
                        border-radius: 70px 0 0 0;
                        width: 300px;
                    }

                    .bottom {
                        height: 230px;
                    }
                }
            }

            &:nth-child(odd) {
                > .wrap {
                    > figure {
                        order: 1;
                        padding-right: 50px;
                    }
                }

                .content {
                    order: 2;
                }

                .article {
                    padding-left: 100px;
                }

                .decoration {
                    .top {
                        margin-left: auto;
                    }

                    .middle {
                    }

                    .bottom {
                    }

                    &[data-role="middle"] {
                        .middle {
                            border-radius: 70px 0 70px 0;
                        }
                    }
                }
            }

            &:nth-child(even) {
                .wrap {
                    > figure {
                        padding-left: 50px;
                    }
                }

                .content {
                    justify-content: right;
                }

                .article {
                    padding-left: 100px;
                }

                .article {
                }

                .decoration {
                    .top {
                    }

                    .middle {
                        border-radius: 0 70px 0 70px;
                    }

                    .bottom {
                        margin-left: auto;
                    }
                }
            }

            &:nth-child(1) {
                > .wrap {
                    > figure {
                        padding-right: 0;
                    }
                }
            }

            &:nth-child(2) {
                > .wrap {
                    &::before {
                        left: -60px;
                        top: -200px;
                        width: 97px;
                    }

                    > figure {
                        &::before {
                            bottom: -60px;
                            right: 20px;
                            width: 60px;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 1101px) {
    #index-intro {
        section {
            > .wrap {
                max-width: 970px;
            }

            .decoration {
                max-width: 970px;

                > .wrap {
                    width: 535px;
                }

                &[data-role="middle"] {
                    margin: -60px auto -30px;
                }
            }
        }
    }
}

@media screen and (min-width: 1231px) {
    #index-intro {
        section {
            > .wrap {
                max-width: inherit;
            }
            
            .decoration {
                margin: 0 auto;
                max-width: 1100px;

                > .wrap {
                    width: 600px;
                }

                &[data-role="top"] {
                    margin-bottom: -40px;
                }

                &[data-role="middle"] {
                    margin: -120px auto;
                }
            }

            &:nth-child(1) {
                .decoration {
                    &[data-role="middle"] {
                        margin-bottom: -60px;
                        margin-top: -30px;
                    }
                }
            }

            &:nth-child(2) {
                .decoration {
                    &[data-role="middle"] {
                        margin-bottom: -10px;
                        margin-top: -60px;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 1501px) {
    #index-intro {
        section {
            .decoration {
                &[data-role="top"] {
                    margin-bottom: -70px;
                }
            }

            &:nth-child(1) {
                .decoration {
                    &[data-role="middle"] {
                        margin-bottom: -180px;
                        margin-top: -110px;
                    }
                }
            }

            &:nth-child(2) {
                > .wrap {
                    &::before {
                        top: -90px;
                    }
                }

                .decoration {
                    &[data-role="middle"] {
                        margin-bottom: -120px;
                        margin-top: -180px;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 1790px) {
    #index-intro {
        section {
            > .wrap {
                max-width: 1790px;

                > figure {
                    max-width: 845px;
                }
            }

            .article {
                width: 500px;
            }

            .decoration {
                &[data-role="top"] {
                    margin-bottom: -130px;
                }
            }

            &:nth-child(1) {
                .decoration {
                    &[data-role="middle"] {
                        margin-bottom: -210px;
                        margin-top: -130px;
                    }
                }
            }

            &:nth-child(2) {
                .decoration {
                    &[data-role="middle"] {
                        margin-bottom: -130px;
                        margin-top: -200px;
                    }
                }
            }
        }
    }
}

/*--------------------------------------
    #index-faq
--------------------------------------*/

#index-faq {
    position: relative;

    .wrap {
        .content {
            background-color: var(--color-gray-04);

            &::before {
                aspect-ratio: 1;
                border-color: var(--color-blue-10);
                border-radius: 9999px;
                border-style: solid;
                box-sizing: border-box;
                content: "";
                display: block;
                position: absolute;
                z-index: -1;
            }

            header {
                position: relative;

                .labelCircle {
                    background-color: var(--color-blue-04);
                    position: absolute;
                }

                h2 {
                    color: var(--color-blue-02);
                    font-weight: 700;
                }
            }
        }
    }

    .ornament {
        &[data-index="1"] {
            div {
                &::before {
                    border-color: var(--color-blue-10);
                    border-style: solid;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    #index-faq {
        padding-top: 90px;

        .wrap {
            padding-left: 15px;

            .content {
                border-radius: 24px 0 0 24px;
                padding: 0 15px 40px;
            }

            header {
                margin-bottom: 30px;
                padding-top: 45px;

                .labelCircle {
                    font-size: 16px;
                    left: 50%;
                    top: -45px;
                    transform: translateX(-39px);
                    width: 78px;
                }

                h2 {
                    font-size: 20px;
                    text-align: center;
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                bottom: -120px;
                height: 185px;

                div {
                    &::before {
                        border-width: 42px;
                        right: -70px;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    #index-faq {
        margin-top: 90px;
        padding-top: 50px;

        .wrap {
            padding: 0 65px;

            .content {
                border-radius: 24px;
                padding: 0 150px 110px;
                position: relative;
                margin: 0 auto;
                max-width: 1100px;

                &::after {
                    background-color: var(--color-gray-04);
                    content: "";
                    display: block;
                    height: 100%;
                    left: 50%;
                    position: absolute;
                    top: 0;
                    width: 50vw;
                    z-index: -1;
                }

                header {
                    margin-bottom: 30px;
                    padding-top: 130px;

                    .labelCircle {
                        font-size: 32px;
                        left: 0;
                        top: -50px;
                        width: 156px;
                    }

                    h2 {
                        font-size: 34px;
                        margin-left: 30px;
                    }
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                height: 430px;
                top: 37%;

                div {
                    &::before {
                        border-width: 96px;
                        left: -48px;
                    }
                }
            }
        }
    }
}

/*--------------------------------------
    #index-news
--------------------------------------*/

#index-news {
    header {
        .labelCircle {
            background-color: var(--color-gray-02);
        }

        h2 {
            color: var(--color-blue-02);
            font-weight: 700;
        }
    }

    nav {
        .buttonRound {
            margin-left: auto;
        }
    }
}

@media screen and (max-width: 768px) {
    #index-news {
        padding: 50px 15px;

        header {
            align-items: center;
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 20px;

            .labelCircle {
                font-size: 16px;
                width: 78px;
            }

            h2 {
                font-size: 20px;
            }
        }

        nav {
            margin-top: 20px;

            .buttonRound {
                font-size: 14px;
                height: 40px;
                margin-right: auto;
                width: 180px;

                &[data-role="more"] {
                    &::after {
                        width: 20px;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 769px) {
    #index-news {
        padding: 110px 65px 150px;

        > .wrap {
            box-sizing: border-box;
            margin: 0 auto;
            max-width: 1100px;
            padding-left: 200px;
            position: relative;
        }

        header {
            margin-bottom: 20px;

            .labelCircle {
                font-size: 32px;
                left: 0;
                position: absolute;
                top: 0;
                width: 156px;
            }

            h2 {
                font-size: 32px;
            }
        }

        nav {
            margin-top: 40px;

            .buttonRound {
                font-size: 20px;
                height: 50px;
                width: 170px;

                &[data-role="more"] {
                    &::after {
                        right: 20px;
                        width: 26px;
                    }
                }
            }
        }
    }
}

/*--------------------------------------
    #index-service
--------------------------------------*/

#index-service {
    position: relative;

    .wrap {
        header {
            align-items: center;
            display: flex;
            flex-direction: column;
            position: relative;

            &::before {
                background: linear-gradient(to bottom,  rgba(240,245,248,0) 0%,rgba(240,245,248,1) 25%,rgba(240,245,248,1) 100%);
                content: "";
                display: block;
                position: absolute;
                top: 0;
                z-index: -1;
            }

            .labelCircle {
                background-color: var(--color-blue-04);
            }

            h2 {
                color: var(--color-blue-02);
            }
        }
        
        .article {

            section {
                a {
                    color: #333;
                    display: block;
                    text-decoration: none;
                }

                div {}

                figure {
                    img {
                        aspect-ratio: 1;
                        width: fit-content;
                    }
                }

                h3 {
                    color: var(--color-blue-02);
                }

                p {
                }

                nav {
                }
            }
        }
    }

    .ornament {
        &[data-index="1"] {
            div {
                &::before {
                    background-color: var(--color-blue-09);
                }
            }
        }

        &[data-index="2"] {
            div {
                &::before {
                    background-color: var(--color-gray-05);
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    #index-service {
        .wrap {
            header {
                margin-bottom: 30px;
                padding-top: 80px;

                &::before {
                    height: 100px;
                    width: 40px;
                }

                .labelCircle {
                    font-size: 16px;
                    margin-bottom: 20px;
                    width: 100px;
                }

                h2 {
                    font-size: 24px;
                }
            }

            .article {
                section {
                    border-bottom: 1px solid var(--color-blue-07);

                    &:nth-child(1) {
                        border-top: 1px solid var(--color-blue-07);
                    }

                    div {
                        display: grid;
                        grid-template-columns: auto 1fr auto;
                        grid-template-rows: auto auto;
                        gap: 0px 0px; 
                        grid-template-areas: 
                            "figure h3 nav"
                            "figure p nav";
                        padding: 30px 0;
                    }

                    figure {
                        align-self: center;
                        grid-area: figure;
                        padding: 0 17px;

                        img {
                            height: 62px;
                        }
                    }

                    h3 {
                        font-size: 16px;
                        grid-area: h3;
                        margin-bottom: 6px;
                    }

                    p {
                        font-size: 14px;
                        grid-area: p;
                    }

                    nav {
                        align-self: center;
                        grid-area: nav;
                        padding: 0 15px 0 20px;

                        &::after {
                            aspect-ratio: 13 / 6;
                            background-color: var(--color-blue-06);
                            content: "";
                            display: block;
                            mask-image: url(../img/icon_arrow_right.svg);
                            mask-repeat: no-repeat;
                            mask-size: 100% 100%;
                            width: 1em;
                        }

                        .buttonRound {
                            display: none;
                        }
                    }
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                height: 155px;
                top: 4px;

                div {
                    &::before {
                        right: -55px;
                    }
                }
            }

            &[data-index="2"] {
                display: none;
            }
        }
    }
}

@media screen and (min-width: 769px) {
    #index-service {
        margin-top: 30px;

        .wrap {
            padding: 0 65px;

            header {
                margin-bottom: 50px;
                padding-top: 160px;

                &::before {
                    height: 200px;
                    width: 100px;
                }

                .labelCircle {
                    font-size: 32px;
                    margin-bottom: 60px;
                    width: 200px;
                }

                h2 {
                    font-size: 48px;
                }
            }

            .article {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                margin: 0 auto;
                max-width: 1040px;

                section {
                    border-color: var(--color-blue-07);
                    border-style: solid;
                    border-width: 2px 1px 0 1px;
                    padding: 50px;

                    &:nth-child(odd) {
                        border-left: none;
                    }

                    &:nth-child(even) {
                        border-right: none;
                    }

                    &:nth-child(1),
                    &:nth-child(2) {
                        border-top: none;
                    }

                    a {
                        h3 {
                            position: relative;

                            &::after {
                                background-color: var(--color-blue-04);
                                content: "";
                                display: block;
                                height: 4px;
                                position: absolute;
                                transform-origin: right top;
                                transform: scale(0, 1);
                                transition: transform 0.2s ease;
                                width: 100%;
                            }
                        }

                        &:hover {
                            h3 {
                                &::after {
                                    transform-origin: left top;
                                    transform: scale(1, 1);
                                }
                            }

                            nav {
                                .buttonRound {
                                    background-color: #fff;
                                    color: var(--color-blue-01);
                                }
                            }
                        }
                    }

                    div {
                        align-items: center;
                        display: flex;
                        flex-direction: column;
                    }

                    figure {
                        img {
                            height: 146px;
                        }
                    }

                    h3 {
                        font-size: 32px;
                        margin: 36px 0 32px;
                    }

                    p {
                        font-size: 20px;
                        text-align: center;
                    }

                    nav {
                        margin-top: 36px;

                        .buttonRound {
                            height: 50px;
                            width: 170px;

                            &::after {
                                right: 20px;
                                width: 26px;
                            }
                        }
                    }
                }
            }
        }

        .ornament {
            &[data-index="1"] {
                height: 390px;
                top: 0;

                div {
                    &::before {
                        right: -110px;
                    }
                }
            }

            &[data-index="2"] {
                height: 330px;
                top: 430px;

                div {
                    &::before {
                        left: -110px;
                    }
                }
            }
        }
    }
}

.fade-in {
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0.4, 0, 1), transform 0.8s cubic-bezier(0.4, 0.4, 0, 1);
    transition-delay: attr(data-delay ms);
}

.fade-in.is-visible {
    filter: blur(0);
    opacity: 1;
}

.fade-in[data-slide="up"] {
    transform: translateY(30px);
}
.fade-in[data-slide="down"] {
    transform: translateY(-30px);
}
.fade-in[data-slide="left"] {
    transform: translateX(30px);
}
.fade-in[data-slide="right"] {
    transform: translateX(-30px);
}
.fade-in[data-slide="none"] {
    transform: none;
}

.fade-in.is-visible {
    transform: translate(0, 0);
}

.fade-in2 {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s cubic-bezier(0.4, 0.4, 0, 1), transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.fade-in2.is-visible {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}