@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

:root {
    --height-header: 7rem;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-blue-900: #1b85b1;
    --color-blue-400: #cde5e9;
    --color-yellow-100: #E6D9B3;
    --color-yellow-200: #E6D5A3;
    --color-yellow-300: #E6D192;
    --color-yellow-400: #E7CE82;
    --color-yellow-500: #E7CA71;
    --color-yellow-600: #E7C661;
    --color-gray-100: #f0f0f0;
    --color-gray-200: #e6e7e9;
    --color-gray-400: #c0c0c0;
    --color-red-500: #C30000;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--height-header);
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    background-color: var(--color-gray-200);
}

a:hover {
    color: var(--color-blue-900);
    transition: color .3s ease;
}

.b {
    font-weight: 700;
}

/* header */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--height-header);
    display: relative;
    z-index: 9999;
    background-image: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, .5) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.header:has(#menu-toggle:checked) {
    background-color: var(--color-white);

    .header-background {
        background-image: unset;
    }
}

.header-spacer {
    padding: var(--height-header) 0;
}

.header-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1rem);
    mask: linear-gradient(to bottom, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.header-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.4rem;
}

.header-logo {
    height: 100%;

    a {
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        height: 100%;
        padding: 1.6rem;
    }

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

/* Navigation */
.header-nav {
    flex: 1;
    display: flex;
    align-items: center;

    ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        padding-inline-start: 0;
        font-weight: 700;
    }
}

#menu-toggle {
    display: none;
}

.menu-toggle-button {
    display: none;
}

nav {
    a {
        text-decoration: none;
        color: var(--color-black);
    }
}


/* Footer */
.footer {
    font-weight: 500;

    h2 {
        line-height: 1;
    }

    p {
        line-height: 1.2;
    }

    address {
        font-style: normal;
    }

    .phone-fax {
        display: flex;
        gap: 1.6rem;

        dl {
            display: flex;
        }

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

    .container.second {
        border-top: solid 1px var(--color-gray-400);
        padding: 0;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 400;

        .copyright {
            padding: 1.6rem 0;
        }
    }
}

/* Main Visual */
.mv {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    overflow: hidden;

    .mv-catchcopy {
        font-weight: 700;
        margin-top: 3.6rem;
    }

    h2 {
        font-family: 400;
    }
}

.mv-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .5) 10%, rgba(255, 255, 255, 0) 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-sizing: border-box;
}

/* SNS */
.sns {
    background-color: var(--color-white);

    .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .catchcopy {
        font-weight: 700;
        line-height: 1;
    }

    .social-links {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 2.4rem;

        img {
            height: 6rem;
            width: auto;
        }
    }
}

/* partial contents */
#main {
    padding-top: var(--height-header);
    background-color: var(--color-white);
}

.section-title {
    text-align: center;
    margin: 0 auto;
}

.letter {
    text-align: center;
}

.card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 2.4rem;
    font-weight: 500;

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

    h3 {
        background: var(--color-yellow-600);
        text-align: center;
        padding: 1.6rem 0;
        border-radius: 1rem;
        margin-bottom: 2.4rem;
    }

    .card-text.center {
        text-align: center;
        padding: 2.4rem 0;
    }

    h3+.card-text.center {
        padding: 0 0 2.4rem;
    }

    .card-list {
        list-style: none;

        li {
            margin-bottom: .8rem;
            margin-left: 3rem;
            text-indent: -1.35em;
        }

        li::before {
            content: "";
            display: inline-block;
            width: .6em;
            height: .6em;
            background: var(--color-yellow-600);
            transform: rotate(45deg);
            margin-right: .75em;
        }
    }

    .card-col {
        h4 {
            border-bottom: solid 1px var(--color-yellow-600);
            text-align: center;
            padding-bottom: 1.6rem;
            margin-bottom: 1.6rem;
        }
    }

    .card-feature {
        background: var(--color-gray-100);
        border-radius: .5rem;

        h4 {
            border-bottom: solid 1px var(--color-yellow-600);
            text-align: center;
            font-weight: 500;
            padding-bottom: 1.6rem;
            margin-bottom: 1.6rem;
        }
    }
}

/* news */
.news {
    background: var(--color-white);
}

.news-post {
    border-bottom: dashed 1px var(--color-gray-400);
    padding: 1.6rem 0;
}

.news-post-datetime {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1;

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

.news-post-content {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;

    h3 {
        font-size: 1.6rem;
        font-weight: 400;
    }

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

    a:hover {
        color: var(--color-blue-900);
    }
}

.news-post-category {
    width: 14rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    padding: 0.4rem 0;

    a {
        color: var(--color-white);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    a:hover {
        color: var(--color-gray-200);
    }
}

.news-info {
    background: var(--color-blue-900);
    color: var(--color-white);
}

/* e-an */
.ean {
    background: var(--color-blue-400);
}

.ean-header {
    text-align: center;
    margin: 0 auto;

    .ean-catchcopy {
        font-weight: 700;
    }

    .ean-title {
        h2 {
            line-height: 1;
        }
    }

    h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
    }
}

.timetable {
    display: grid;
    grid-template-columns: 6rem 1fr;
    grid-template-rows: repeat(64, 0.85rem);
    align-items: center;
    font-size: 1.6rem;

    .work {
        background-color: var(--color-blue-400);
        text-align: center;
        grid-column: 2;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
    }

    .rest {
        text-align: center;
        grid-column: 2;
        font-weight: 400;
    }

    .time {
        grid-column: 1;
        text-align: center;
    }

    .time-1000 {
        grid-row: 1/3;
    }

    .time-1100 {
        grid-row: 13/15;
    }

    .time-1110 {
        grid-row: 15/17;
    }

    .time-1200 {
        grid-row: 25/27;
    }

    .time-1300 {
        grid-row: 37/39;
    }

    .time-1400 {
        grid-row: 49/51;
    }

    .time-1410 {
        grid-row: 51/53;
    }

    .time-1500 {
        grid-row: 61/63;
    }

    .work-1000 {
        grid-row: 2/14;
    }

    .rest-1100 {
        grid-row: 14/16;
    }

    .work-1110 {
        grid-row: 16/26;
    }

    .rest-1200 {
        grid-row: 26/38;
    }

    .work-1300 {
        grid-row: 38/50;
    }

    .rest-1400 {
        grid-row: 50/52;
    }

    .work-1410 {
        grid-row: 52/62;
    }

    .rest-1500 {
        grid-row: 62/64;
    }
}

.speciality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 1rem;
}

.connect {
    background-color: var(--color-blue-900);
    color: var(--color-white);
    text-align: center;
    font-weight: 700;
    border-radius: 1rem;
    padding: 1.6rem 0;

    p {
        margin-bottom: 0.4rem;
    }
}

.step {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;

    dt {
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8rem;
        border-radius: .5rem;
    }
}

.step:nth-child(1) dt {
    background-color: var(--color-yellow-100);
}

.step:nth-child(2) dt {
    background-color: var(--color-yellow-200);
}

.step:nth-child(3) dt {
    background-color: var(--color-yellow-300);
}

.step:nth-child(4) dt {
    background-color: var(--color-yellow-400);
}

.step:nth-child(5) dt {
    background-color: var(--color-yellow-500);
}

.step:nth-child(6) dt {
    background-color: var(--color-yellow-600);
}

.targeting {
    background-color: var(--color-gray-100);
    border-radius: 0.5rem;
}

.form-section {
    background-color: var(--color-gray-100);
    border-radius: 0.5rem;
}

.location {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
    font-size: 1.6rem;

    dt {
        background-color: var(--color-yellow-600);
        height: 1em;
        width: 8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: .5rem;
        padding: .4rem 0;
        line-height: 1;
    }

    dd {
        line-height: 1.4;
    }
}

.map iframe {
    width: 100%;
    aspect-ratio: 1 / 0.6;
}

/* archive */
.archive-title {
    margin-bottom: 1.6rem;

    h1 {
        font-size: 1.8rem;
        font-weight: 400;
    }
}

.archive-post {
    border-bottom: dashed 1px var(--color-gray-200);
    padding-bottom: 1.6rem;

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

    .time {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
}

/* form */
.wpcf7-form {
    font-weight: 400;

    p {
        margin-bottom: 1.6rem;
        line-height: 1.4;
        font-size: 1.6rem;
        font-weight: 500;
    }

    .wpcf7-not-valid-tip {
        font-size: 1.4rem;
        font-weight: 500;
    }

    input,
    textarea {
        width: 100%;
        padding: 0.8rem;
        box-sizing: border-box;
        font-size: 1.8rem;
        border: solid 1px var(--color-gray-200);
        border-radius: .5rem;
        font-weight: 400;
        font-family: "Zen Maru Gothic", sans-serif;
    }

    input::placeholder,
    textarea::placeholder {
        color: var(--color-gray-400);
    }

    input.wpcf7-not-valid,
    textarea.wpcf7-not-valid {
        border-color: var(--color-red-500);
    }

    .wpcf7-submit {
        background-color: var(--color-blue-900);
        color: var(--color-white);
        cursor: pointer;
        transition: opacity .3s ease;
    }

    .wpcf7-submit:hover {
        opacity: 0.75;
    }
}

.form-guidline {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.6rem;
    line-height: 1.4;
}

/* mobile and tablet portrait */
@media screen and (max-width: 64rem) {
    nav {
        background: var(--color-white);
        display: none;
        width: 100%;
        position: fixed;
        left: 0;
        top: var(--height-header);
        max-height: calc(100vh - var(--height-header));

        ul {
            flex-direction: column;
        }
    }

    .menu-toggle-button {
        display: unset;
        height: 3.2rem;
        aspect-ratio: 1 / 1;
        border-radius: 0.5rem;
        overflow: hidden;
        position: relative;
        cursor: pointer;

        span {
            display: block;
            height: 0.3rem;
            width: 2rem;
            background: #000;
            border-radius: 0.2rem;
            position: absolute;
            transition: all .3s ease;
        }

        span:nth-child(1) {
            top: 1rem;
            left: 0.6rem;
        }

        span:nth-child(2) {
            top: 1.8rem;
            left: 0.6rem;
        }
    }

    #menu-toggle:checked~nav {
        display: block;
        box-shadow: 0 1rem 1rem 0 rgba(50, 50, 50, .25);
    }

    #menu-toggle:checked~.menu-toggle-button {
        span:nth-child(1) {
            rotate: 45deg;
            left: 0.6rem;
            top: 1.4rem;
        }

        span:nth-child(2) {
            rotate: -45deg;
            left: 0.6rem;
            top: 1.4rem;
        }
    }

    .header-nav {
        justify-content: flex-end;
        padding-right: 1.6rem;

        li {
            border-bottom: dashed 1px var(--color-gray-400);
            width: 100%;
        }

        li:nth-child(1) {
            border-top: dashed 1px var(--color-gray-400);
        }

        a {
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            padding: 0.8rem 2.4rem;
            width: 100%;
        }
    }

    .card {
        padding: 1.6rem;

        h3 {
            padding: 1.6rem 0;
            margin-bottom: 1.6rem;
            font-size: 1.8rem;
        }
    }

    .news-post-content {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* tablet landscape and pc */
@media screen and (min-width: 64rem) {
    nav {
        ul {
            gap: 2.4rem;
        }
    }
}

/* mobile */
@media screen and (max-width: 50rem) {
    .container {
        margin: 0 0.8rem;
        padding: 2.4rem 0 3.6rem;
    }

    .mb-l {
        margin-bottom: 1.6rem;
    }

    .mb-m {
        margin-bottom: 1.6rem;
    }

    .footer {
        font-size: 1.4rem;

        .container {
            padding: 2.4rem 0 1.6rem;
        }

        .name {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
        }
    }

    .mv {
        background-image: url(../images/hero-sm@3x.png);
        height: 100vh;
        line-height: 1;

        .mv-catchcopy {
            font-size: max(2.4rem, 5vw);
            margin-bottom: 0.8rem;
        }

        h2 {
            font-size: max(1.6rem, 2.3vw);
        }
    }

    .letter {
        margin-bottom: 1.6rem;
    }

    .card {
        margin-bottom: 1.6rem;

        .card-feature {
            padding: 1.6rem;
            margin-bottom: 1.6rem;

            .card-feature-text {
                font-size: 1.6rem;
            }
        }

        .card-col {
            margin-bottom: 2.4rem;

            h4 {
                padding-bottom: 0.4rem;
            }
        }
    }

    .sns {
        .container {
            flex-direction: column;
            gap: 2.4rem;
        }

        .catchcopy {
            font-size: 2.4rem;
        }

        .social-links {
            gap: 3.6rem;
        }
    }

    .ean-header {
        margin-bottom: 2.4rem;
    }

    .ean-catchcopy {
        font-size: max(2.1rem, 4vw);
        margin-bottom: 2.4rem;
    }

    .ean-title {
        h2 {
            font-size: 1.8rem;
            margin-bottom: 1.8rem;
        }

        h1 {
            gap: 0.8rem;

            img {
                width: 40vw;
                height: auto;
            }

            .rubi {
                font-size: 1.6rem;
            }
        }
    }

    .speciaiities {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .speciality-item {
        flex: 1;
        gap: 1.6rem;
        padding: 1.6rem;

        img {
            height: 6rem;
            width: auto;
        }

        p {
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .connect {
        margin-bottom: 1.6rem;
    }

    .use-first {
        padding-top: 0.4rem !important;
    }

    .targeting {
        margin-bottom: 1.6rem;
        margin-top: 1.6rem;
        padding: 1.6rem;

        .main {
            margin-bottom: 0.8rem;
        }

        .sub {
            font-size: 1.4rem;
        }
    }

    .accept {
        font-size: 1.2rem;
        text-align: center;
    }

    .access-section {
        padding: 1.6rem 0;
        margin-bottom: 1.6rem;
    }
}

/* tablet Portrait */
@media screen and (min-width: 50rem) and (max-width: 64rem) {
    .container {
        margin: 0 1.6rem;
        padding: 2.4rem 0 3.6rem;
    }

    .mb-m {
        margin-bottom: 1.6rem;
    }

    .line {
        display: block;
    }

    .footer {
        .name {
            font-size: 2.4rem;
            margin-bottom: 0.8rem;
        }
    }

    .mv {
        background-image: url(../images/hero-md@3x.png);
        height: 100vh;

        .mv-catchcopy {
            font-size: max(2.4rem, 5vw);
        }

        h2 {
            font-size: max(1.8rem, 2.5vw);
        }
    }

    .letter {
        margin-bottom: 1.6rem;
    }

    .card {
        margin-bottom: 1.6rem;

        .card-col-2 {
            display: flex;
            gap: 1.6rem;
        }

        .card-col-2>* {
            flex: 1;
        }

        .card-col-3 {
            display: flex;
            gap: 1.6rem;
        }

        .card-feature {
            padding: 1.6rem;

            .card-feature-text {
                font-size: 1.6rem;
            }
        }
    }

    .sns {
        .container {
            gap: 2.4rem;
        }

        .catchcopy {
            font-size: 2.4rem;
        }

        .social-links {
            gap: 2.4rem;
        }
    }

    .ean-header {
        margin-bottom: 2.4rem;
    }

    .ean-catchcopy {
        font-size: max(2.1rem, 4vw);
        margin-bottom: 2rem;
    }

    .ean-title {
        h2 {
            font-size: 2.4rem;
            margin-bottom: 1.6rem;
        }

        h1 {
            gap: 0.8rem;

            img {
                width: 40vw;
                height: auto;
            }

            .rubi {
                font-size: 2.4rem;
            }
        }
    }

    .speciaiities {
        display: flex;
        gap: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .speciality-item {
        flex: 1;
        gap: 1.6rem;
        padding: 1.6rem;

        img {
            height: 6rem;
            width: auto;
        }

        p {
            height: 6rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .connect {
        margin-bottom: 1.6rem;

        p {
            font-size: 2rem;
        }
    }

    .use-first {
        padding-top: 0.8rem !important;
        font-size: 2rem;
    }

    .targeting {
        padding: 1.6rem;
        margin-bottom: 1.6rem;

        .main {
            margin-bottom: 1.6rem;
        }

        .sub {
            font-size: 1.4rem;
        }
    }

    .accept {
        font-size: 1.4rem;
        text-align: center;
    }

    .access-section {
        padding: 1.6rem 0;
        margin-bottom: 1.6rem;
    }
}

/* tablet Landscacpe */
@media screen and (min-width: 64rem) and (max-width: 110rem) {
    .container {
        max-width: 108rem;
        margin: 0 auto;
        padding: 3.6rem 2.4rem 4.8rem;
        box-sizing: border-box;
    }

    .mb-l {
        margin-bottom: 2.4rem;
    }

    .mb-m {
        margin-bottom: 1.6rem;
    }

    .line {
        display: block;
    }

    .footer {
        h2 {
            font-size: 2.4rem;
            margin-bottom: 0.8rem;
        }
    }

    .mv {
        background-image: url(../images/hero-lg@3x.png);
        max-height: 70rem;
        aspect-ratio: 72 / 35;
        width: 100%;

        .mv-catchcopy {
            font-size: max(2.4rem, 3vw);
        }

        h2 {
            font-size: max(1.8rem, 1.6vw);
        }
    }

    .letter {
        margin-bottom: 2.4rem;
    }

    .card {
        margin-bottom: 2.4rem;

        .card-col-2 {
            display: flex;
            gap: 2.4rem;
        }

        .card-col-2>* {
            flex: 1;
        }

        .card-col-3 {
            display: flex;
            gap: 2.4rem;
        }

        .card-feature {
            padding: 1.6rem;
        }
    }

    .sns {
        .container {
            gap: 2.4rem;
        }

        .catchcopy {
            font-size: 2.4rem;
        }

        .social-links {
            gap: 2.4rem;
        }
    }

    .header-nav {
        ul {
            gap: 3.6rem;
        }
    }

    .ean-catchcopy {
        font-size: max(3.6rem, 2vw);
        margin-bottom: 2.4rem;
    }

    .ean-header {
        margin-bottom: 3.6rem;
    }

    .ean-title {
        h2 {
            font-size: 2.4rem;
            margin-bottom: 2.4rem;
        }

        h1 {
            gap: 0.8rem;

            img {
                width: 20vw;
                height: auto;
            }

            .rubi {
                font-size: 2.4rem;
            }
        }
    }

    .speciaiities {
        display: flex;
        gap: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .speciality-item {
        flex: 1;
        gap: 1.6rem;
        padding: 1.6rem;

        img {
            height: 8rem;
            width: auto;
        }

        p {
            height: 6rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .connect {
        margin-bottom: 2.4rem;

        p {
            font-size: 2.4rem;
        }
    }

    .use-first {
        padding-top: 0.8rem !important;
        font-size: 2.4rem;
    }

    .targeting {
        padding: 2.4rem;
        margin-bottom: 1.6rem;

        .main {
            font-size: 2rem;
            margin-bottom: 1.6rem;
        }

        .sub {
            font-size: 1.4rem;
        }
    }

    .accept {
        font-size: 1.4rem;
        text-align: center;
    }

    .access-section {
        padding: 1.6rem 0;
        margin-bottom: 1.6rem;
    }
}

/* PC */
@media screen and (min-width: 110rem) {
    .container {
        width: 108rem;
        margin: 0 auto;
        padding: 4.8rem 0 6.4rem;
    }

    .mb-l {
        margin-bottom: 2.4rem;
    }

    .mb-m {
        margin-bottom: 1.6rem;
    }

    .footer {
        .container {
            padding: 3.6rem 0;
        }

        h2 {
            font-size: 2.4rem;
            margin-bottom: 0.8rem;
        }
    }

    .mv {
        background-image: url(../images/hero-lg@3x.png);
        max-height: 70rem;
        width: 100%;
        aspect-ratio: 72 / 35;

        .mv-catchcopy {
            font-size: 6.4rem;
        }

        h2 {
            font-size: 2.4rem;
        }
    }

    .letter {
        margin-bottom: 2.4rem;
    }

    .card {
        margin-bottom: 2.4rem;

        .card-col-2 {
            display: flex;
            gap: 2.4rem;
        }

        .card-col-2>* {
            flex: 1;
        }

        .card-col-3 {
            display: flex;
            gap: 1.6rem;
        }

        .card-feature {
            padding: 1.6rem;
        }
    }

    .sns {
        .container {
            gap: 4rem;
        }

        .catchcopy {
            font-size: 3.2rem;
        }

        .social-links {
            gap: 3.6rem;
        }
    }

    .ean-header {
        margin-bottom: 3.6rem;
    }

    .ean-catchcopy {
        font-size: 3.6rem;
        margin-bottom: 3.6rem;
    }

    .ean-title {
        h2 {
            font-size: 2.4rem;
            margin-bottom: 1.6rem;
        }

        h1 {
            gap: 0.8rem;

            img {
                width: 24vw;
                height: auto;
            }

            .rubi {
                font-size: 2.4rem;
            }
        }
    }

    .speciaiities {
        display: flex;
        gap: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .speciality-item {
        flex: 1;
        gap: 1.6rem;
        padding: 1.6rem;

        img {
            height: 8rem;
            width: auto;
        }

        p {
            height: 6rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .connect {
        margin-bottom: 2.4rem;

        p {
            font-size: 2.4rem;
        }
    }

    .use-first {
        padding-top: 0.8rem !important;
        font-size: 2.4rem;
    }

    .targeting {
        padding: 2.4rem;
        margin-bottom: 1.6rem;

        .main {
            margin-bottom: 2.4rem;
            font-size: 2rem;
        }

        .sub {
            font-size: 1.4rem;
        }
    }

    .accept {
        text-align: center;
        font-size: 1.4rem;
    }

    .access-section {
        padding: 1.6rem 0;
        margin-bottom: 1.6rem;
    }
}