/*== Scrollbar ==*/
::-webkit-scrollbar {
    width: 3px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    border: thick double var(--hover);
    border-radius: 5px;
    mix-blend-mode: difference;
    will-change: transform;
    transform: translateZ(0);
}

/*== Scrollbar END ==*/

/*== fade ==*/
.fade_bottom {
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
    filter: blur(15px);
}

.fade_bottom.visible {
    opacity: 1;
    filter: blur(0);
}

@keyframes fadeIn_left {
    0% {
        opacity: 0;
        transform: translateX(-200px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

/*== fade END ==*/

*,
*::before,
*::after {
    box-sizing: inherit;
}

*,
body,
header,
.hydrated,
p,
ul,
td,
th,
h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mobile {
    display: none !important;
}

.pc {
    display: block !important;
}
/*調整*/
@keyframes morphRotate {
    0% {
        border-radius: 65% 55% 50% 60% / 60% 55% 50% 65%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 55% 60% 50% 65% / 55% 60% 50% 65%;
        transform: rotate(90deg) scale(0.95);
    }

    50% {
        border-radius: 60% 50% 65% 55% / 55% 65% 50% 60%;
        transform: rotate(180deg) scale(1.04);
    }

    75% {
        border-radius: 55% 65% 55% 60% / 65% 55% 60% 65%;
        transform: rotate(270deg) scale(0.95);
    }

    100% {
        border-radius: 65% 55% 50% 60% / 60% 55% 50% 65%;
        transform: rotate(360deg) scale(1);
    }
}


body .bg {
    border-radius: 15rem;
    background: radial-gradient(49.19% 88.28% at 72.99% 113.54%, rgba(255, 255, 255, 0.2) 0%, rgba(93, 227, 236, 0.1679) 59.78%, rgba(93, 227, 236, 0) 100%), linear-gradient(54.57deg, #c3e060 8.59%, rgba(185, 91, 230, 0) 80.49%), radial-gradient(118.75% 118.75% at 96.65% 74.22%, #cf8c90 0%, rgba(48, 158, 230, 0) 73.91%), radial-gradient(114.51% 155.86% at 9.82% 10.94%, rgba(255, 85, 85, 0.7) 0%, rgba(255, 85, 85, 0.147) 61.98%, #bdc01c 100%, #F2F5FA);
    position: fixed;
    width: 45vmin;
    height: 43vmin;
    aspect-ratio: 1;
    border-radius: 61% 39% 16% 84% / 57% 72% 28% 43%;
    bottom: -25%;
    left: 55%;
    transform: translate(25%, -55%);
    z-index: -1;
    /*background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(ellipse at 70% 60%, #c3e060 0%, rgba(195, 224, 96, 0) 90%),
        radial-gradient(ellipse at 30% 30%, #c3e060 0%, rgba(195, 224, 96, 0) 60%),
        radial-gradient(ellipse at bottom left, #00a3cb 0%, rgba(0, 163, 203, 0)1 70%),
        linear-gradient(135deg, rgba(18, 46, 119, 0) 0%, rgba(18, 46, 119, 0) 75%, #122e77 100%),
        linear-gradient(to right, #bb76bd 0%, #cf8c90 35%, #c8e429 65%, #bdc01c 100%);*/
    background-blend-mode: overlay, luminosity, color-dodge, saturation, screen, color;
    filter: blur(0px);
    animation: morphRotate 45s infinite linear;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    color: var(--text);
    background: url("../img/bg-img.png"),
    linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/*font-size*/
body,
ul .bgfont_h2::before,
.voice li {
    font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}

ul,
ol,
.overlay--tow p,
.btn {
    font-size: clamp(2rem, 1.333rem + 0.89vw, 2.4rem);
}

.share ul p,
.service .point,
li {
    font-size: clamp(1.8rem, 1.467rem + 0.44vw, 2rem);
}

body::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    border-top: 1vw solid var(--sub);
    border-right: 1vw solid var(--sub);
    z-index: 10;
    pointer-events: none;
    /* クリックを無効化 */
    box-shadow: inset -1px 2px 5px rgba(46, 46, 46, 0.5);
}

body::after {
    content: "";
    position: fixed;
    top: 1vw;
    right: 1%;
    width: 100%;
    height: 100%;
    border: 1px solid var(--hover);
    border-left: none;
    border-bottom: none;
    pointer-events: none;
    z-index: 11;
}

:root {
    font-size: 62.5%;
    --root-font-size: 16;
    /*text border main rgba(46, 46, 46)*/
    --text: #2e2e2e;
    /*sub black rgba(255, 150, 48)*/
    --hover: #fda144;
    /*bg base rgba(253, 246, 234)*/
    --bg: #FDF6EA;
    /*sub bg rgba(255, 253, 249)*/
    --sub: #fffdf9;
    /*link accent rgba(254, 175, 255)*/
    --accent: #FEAFFF;
}

/*==== text */
h1 {
    font-size: clamp(3.4rem, 2.48rem + 4.6vw, 8rem);
    font-family: "Dongle", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: fit-content;
}

h2 {
    font-family: "Yomogi", cursive, sans-serif;
    font-size: clamp(2.4rem, 1.92rem + 2.4vw, 4.8rem);
    width: fit-content;
    line-height: 1;
    top: -2%;
    left: 17%;
    margin-bottom: 3vmin;
}

h2,
a {
    font-weight: bold;
    font-style: normal;
}

h2 span {
    font-size: 1.8rem;
    line-height: 1.4;
}

h3 {
    font-size: clamp(2rem, 0.667rem + 1.78vw, 2.8rem);
    font-family: system-ui;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.service h3 span {
    font-size: 1.8rem;
    line-height: 1.2;
}

h3,
li {
    font-weight: 300;
    font-style: normal;
}

h4 {
    font-size: clamp(2rem, 1.161rem + 1.03vw, 2.4rem);
    width: fit-content;
    margin: 0 auto;
}

p {
    /* font-feature-settings: "palt"; */
    font-style: normal;
    font-size: clamp(1.6rem, 0.761rem + 1.03vw, 2rem);
    font-weight: 500;
    width: 65%;
    line-height: 2;
    text-align: left;
    margin: 0 auto;
}

ul,
ol {
    margin: 0 auto;
}

li {
    width: fit-content;
    list-style: none;
}

a {
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    text-decoration: none;
}

.line-break {
    display: block;
    height: 10px;
}

hr {
    width: 50%;
    margin: 20% auto;
}

img {
    width: 25vmin;
    max-width: 100%;
    height: auto;
    position: absolute;
    object-fit: cover;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
    z-index: 1;
    pointer-events: none;
}

.top-img--one {
    width: 38vmin;
    top: -4%;
    right: -20%;
    z-index: -1;
}

.top-img--two {
    width: 25vmin;
    bottom: 0%;
    right: -11%;
}

.img--one {
    width: 33vmin;
    bottom: 15%;
}

.img--two {
    width: 16vmin;
    left: 5%;
    bottom: -100%;
    transform: scale(-1, 1);
}

.img--three {
    width: 10vmin;
    bottom: -2px;
    right: 3vmin;
}

.img--four {
    width: 11%;
    left: -10.5%;
    bottom: 0;
}

.img--five {
    width: 8%;
    right: -8.15%;
    bottom: 0;
}

.main--top--img {
    width: 40vmin;
    top: 0;
    left: 0;
    position: fixed;
    transform: translate(65%, 75%);
    opacity: 0.5;
    z-index: -2;
}

.img--start {
    width: 30vmin;
    bottom: 20%;
    left: 10%;
}

.tab--four-img {
    position: relative;
    height: 100px;
    top: 8vmin;
}

main .tab--four-img:nth-of-type(2) {
    top: 3vmin;
}

/*===== h2 bg ======*/
.bgfont_h2 {
    align-items: center;
    position: relative;
    z-index: 1;
}

.bgfont_h2 span {
    position: relative;
    z-index: 2;
}

.bgfont_h2::before {
    font-size: clamp(3.8rem, 3.467rem + 0.44vw, 4rem);
    font-weight: 400;
    font-family: "Comic Sans MS", sans-serif;
    font-style: italic;
    content: attr(data-en);
    position: absolute;
    width: fit-content;
    transform: rotate(-10deg);
    top: -50%;
    left: -10%;
    color: var(--accent);
    opacity: 0.45;
    z-index: -1;
}

/*===== h2 bg ======*/

main {
    position: relative;
    width: 40%;
    margin-left: 7.5vmin;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-left: 0.5px solid var(--hover);
    border-right: 0.5px solid var(--hover);
    box-shadow: inset 0 2px 3px rgba(46, 46, 46, 0.5);
}

/*====Section*/
section {
    padding: 10em 0;
}

.sentence {
    min-height: 100svh;
}

section,
.sentence {
    position: relative;
    /*display: flex;
    justify-content: center;*/
    display: grid;
    align-content: center;
    height: auto;
}

/*====TOP section pc left*/
.main-visual {
    position: relative;
    width: 30%;
    height: 100svh;
    padding-top: 20vmin;
    margin-left: 10%;
    z-index: -1;
}
.main-visual p {
    width: 100%;
}


.overlay--tow {
    position: relative;
    width: fit-content;
    top: 30%;
    left: -85%;
    z-index: -1;
}

.service .overlay--tow,
.voice .overlay--tow {
    top: -30%;
}

.overlay--tow p {
    width: 100%;
    margin-left: 1%;
}

/* About Us セクション */
.sentence {
    align-content: center;
}

.top .sentence h2 {
    font-size: clamp(2.4rem, 1.561rem + 1.03vw, 2.8rem);
    margin: 0 auto;
    line-height: 1.4;
}


/*.service {
    height: 140svh;
    height: auto;
}
.about-us,
.contact,
.faq {
    height: 120svh;
    height: auto;
}*/

/* Service セクション */
.service,
.voice {
    background: var(--sub);
    box-shadow: inset 0 1px 5px rgba(46, 46, 46, 0.65);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.service .point {
    position: relative;
    line-height: 1.8;
    width: 85%;
    margin: 10vmin auto;
    padding: 7%;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(46, 46, 46, 0.3);
}

.service h3 {
    font-size: clamp(2rem, 1.161rem + 1.03vw, 2.4rem);
    font-weight: 500;
    width: 65%;
    position: relative;
}

.point h3 {
    width: 100%;
    margin: 6vmin auto 1vmin;
}

.point .line-break {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 5vmin auto;
}

.point .bgfont_h2 {
    font-size: 1.8rem;
}

/*======self-diagnosis*/
.share ul {
    width: 65%;
    margin-top: 1em;
    padding: 0.5em 1em;
    background: var(--sub);
    box-shadow: inset 0 2px 3px rgba(46, 46, 46, 0.5);
}

/*===voice*/
.voice h3 {
    font-weight: 600;
}

.voice ul {
    width: 65%;
    height: 55vmin;
    overflow-y: scroll;
    padding: 1rem;
    background: var(--bg);
    box-shadow: inset 0 2px 3px rgba(46, 46, 46, 0.5);
    border-radius: 10px 0 0 10px;
}

.voice::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    border-image-source: repeating-linear-gradient(45deg, var(--sub) 0, var(--sub) 4px, var(--hover) 0, var(--hover) 6px);
    border-width: 20px;
    border-image-slice: 20;
    border-image-repeat: round;
    border-style: solid;
    z-index: -1;
}

.voice ul::before {
    content: "";
    width: 11vmin;
    height: 11vmin;
    position: absolute;
    right: 3%;
    bottom: 5%;
    background: url("../img/voice.webp") no-repeat left top / contain;
}

.voice li {
    font-family: "Zen Maru Gothic";
    font-weight: 400;
    margin-bottom: 3rem;
    border-bottom: 1px solid;
    padding: 1rem;
    line-height: 1.8;
    letter-spacing: 0.03rem;
}

.btn {
    width: 240px;
    height: 60px;
    color: var(--text);
    background: linear-gradient(0deg, rgb(207, 252, 255, 0.3) 0%, rgb(192, 252, 109, 0.2) 100%);
    border: none;
    border-radius: 45px;
    border: 1px solid var(--sub);
    box-shadow: 0px 2px 4px 0px rgba(46, 46, 46, 0.5);
    cursor: pointer;
    z-index: 100;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    transition: all 0.35s ease;
    position: relative;
}

.btn:hover {
    color: var(--hover);
    background: linear-gradient(0deg, rgb(207, 252, 255, 0.1) 0%, rgb(192, 252, 109, 0) 100%);
    box-shadow: inset 0px 1px 3px 0px rgba(46, 46, 46, 0.5);
}

.btn::after {
    content: '';
    width: 225px;
    height: 50px;
    border: 1px solid var(--sub);
    border-radius: 45px;
    background: linear-gradient(0deg, rgb(107, 202, 235, 0.45) 0%, rgb(192, 252, 109, 0.2) 100%);
    box-shadow: 0px 2px 4px 0px rgba(46, 46, 46, 0.5);
    position: absolute;
    top: 3px;
    left: 6px;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    background: linear-gradient(0deg, rgb(207, 252, 255, 0.2) 0%, rgb(192, 252, 109, 0.12) 100%);
    box-shadow: inset 0px 1px 3px 0px rgba(46, 46, 46, 0.5);
}

footer {
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
    position: absolute;
    bottom: 0.35%;
}

@media screen and (min-width: 1300px) {

    /*== cursor ==*/
    *,
    *::before,
    *::after {
        /*cursor: none !important;*/
        -webkit-box-sizing: inherit;
        box-sizing: inherit;
    }

    #stalker {
        position: fixed;
        top: 0;
        left: 0;
        margin: -15px 0 0 -15px;
        width: 35px;
        height: 35px;
        border: 1px solid;
        border-radius: 50%;
        border-color: rgba(61, 78, 236, 0.36);
        pointer-events: none;
        transition: transform 0.2s ease;
        z-index: 100;
    }

    /* ホバー時のスタイル */
    .stalker--hover {
        background-color: rgba(136, 162, 211, 0.76);
        filter: blur(1);
        transform: scale(2);
    }

    .stalker--hover::after {
        content: "クリック";
        color: var(--sub);
        font-family: system-ui;
        font-size: clamp(0.85rem, 0.767rem + 0.11vw, 0.9rem);
        font-weight: 600;
        letter-spacing: -0.1rem;
        margin-top: 0.4vmin;
        display: flex;
        justify-content: center;
        margin-right: 2px;
    }

    /*== Scrollbar ==*/
    ::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }
}

@media screen and (max-width: 600px) {
    .pc {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .hydrated {
        overflow-x: hidden;
    }

    body .bg {
        width: 350px;
        height: 350px;
        bottom: -25%;
        left: 30%;
        animation: morphRotate 30s infinite linear;
    }

    .mobile-bg {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: url("/assets/img/fixed.jpg") center/cover no-repeat;
        z-index:-1;
    }

    body::before {
        border: 3vw solid var(--sub);
        box-shadow: inset 0px 1px 4px rgba(46, 46, 46, 0.85);
    }

    body::after {
        top: 2.75vw;
        left: 2.75vw;
        width: 94.5vw;
    }

    h2 {
        font-size: clamp(2rem, 1.543rem + 2.29vw, 2.4rem);
        text-align: center;
        margin: 0 auto;
        left: 0;
        line-height: 2;
    }
    .service h2,
    .share h2 {
        line-height: 1;
        margin-bottom: 2vmin;
    }

    h3 {
        font-size: clamp(1.8rem, 1.571rem + 1.14vw, 2rem);
        left: 0;
        margin: 0 auto;
    }
    .service h3 span {
        font-size: 1.6rem;
    }
    ul,
    ol {
        font-size: clamp(1.6rem, 1.371rem + 1.14vw, 1.8rem);
        width: fit-content;
    }

    li {
        font-size: clamp(1.2rem, 0.514rem + 3.43vw, 1.8rem);
        width: 100%;
        line-height: 1.8;
        margin: 0 auto;
    }

    p {
        font-size: clamp(1.4rem, 1.171rem + 1.14vw, 1.6rem);
        width: 80%;
        line-height: 2;
    }

    a {
        font-weight: 400;
        color: var(--accent);
        padding: .25rem .5rem;
        transition: all 0.3s ease;
    }

    a:hover {
        color: var(--accent);
    }

    a::before {
        background: var(--accent);
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        transition: width 0.5s ease;
    }

    /*===== h2 bg ======*/
    li .bgfont_h2 {
        line-height: 1.2;
        z-index: 2;
    }

    .bgfont_h2::before,
    .btn {
        font-size: clamp(2rem, 1.543rem + 2.29vw, 2.4rem);
    }

    .bgfont_h2::before {
        top: -25%;
        left: -10%;
        opacity: 0.45;
    }

    .share .bgfont_h2::before {
        left: 10%;
    }

    /*===== h2 bg ======*/
    .img--start {
        width: 45vmin;
        top: 50%;
        left: 0;
        display: block;
        position: relative;
        margin: 0 auto;
    }

    .img--one {
        width: 50vmin;
        top: -5vmin;
    }

    .img--two {
        width: 30vmin;
        right: 0;
        left: 0;
        bottom: -20vmin;
    }

    .img--three {
        width: 22vmin;
        right: 0;
    }

    .img--four {
        width: 16%;
        left: 85.5%;
    }

    .img--five {
        width: 10%;
        right: 89.5%;
    }

    .top-img--one {
        width: 40vmin;
        top: 2%;
        right: -15%;
    }

    .top-img--two {
        width: 25vmin;
        bottom: 0%;
        right: -11%;
    }

    .main--top--img {
        width: 80%;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
        z-index: -1;
    }

    /*===== main */
    main {
        width: 100%;
        margin: 0 auto;
        border-radius: 0;
        background: rgba(245, 245, 245, 0.2);
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(15px);
        background: none;
        border: none;
        box-shadow: none;
    }

    /*====TOP section*/
    .main-visual {
        font-weight: 600;
        width: 100%;
        height: 65svh;
        transform: none;
        margin: 0 auto;
    }

    .main-visual::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url("../img/fol-mobile.webp") no-repeat center / 60%;
        filter: blur(2px);
    }

    .main-visual h1 {
        margin: 0 auto;
        width: 80%;
    }

    .main-visual p {
        width: 80%;
        margin: 0 auto;
    }

    /*====Section*/
    section {
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

    .sentence {
        min-height: 70svh;
    }

    .sentence h2 {
        width: 80%;
    }

    .about-us p {
        list-style: none;
        padding: 0;
        margin: 0 auto 3%;
    }

    /* Service セクション */
    .service {
        border-radius: 0;
        overflow: hidden;
    }

    .service .point {
        width: 90%;
    }

    .point .line-break {
        margin: 15% auto;
    }

    .service h3 {
        width: fit-content;
    }

    /*=====self-diagnosis*/
    .share ul {
        width: 90%;
        padding: 1em 0.5em;
    }

    .share ul li {
        font-weight: 300;
        width: 85%;
        margin: 0 auto;
    }

    /*===== voice section */
    .voice {
        border-radius: 0;
    }

    .voice ul {
        width: 80%;
        height: 100vmin;
        margin-top: 2rem;
    }

    .voice::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border-image-source: repeating-linear-gradient(45deg, #fff 0, #fff 3px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
        border-width: 10px;
        border-image-slice: 10;
        border-image-repeat: round;
        border-style: solid;
        z-index: -1;
        display: none;
    }

    .voice ul::before {
        width: 22%;
        height: 21vmin;
        right: 4%;
        bottom: 8%;
    }

    .voice li {
        margin-bottom: 2rem;
        padding: 0.5rem;
    }

    .btn {
        font-weight: 600;
        width: 55vmin;
        height: 75px;
        padding: 1rem 2rem;
        border-radius: 50px;
        box-shadow: 0px 2px 1px 0px rgba(46, 46, 46, 0.5);
    }

    .btn::after {
        content: "▶";
        width: 50vmin;
        height: 55px;
        top: 8.5px;
        left: 1.75vmin;
        border-radius: 50px;
        align-content: center;
    }
}

@media screen and (max-height: 568px) {
    .sentence {
        min-height: 100svh;
    }
}

@media screen and (min-width: 601px) and (max-width: 1299px) {
    .pc {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
    body .bg {
        width: 60vmin;
        height: 58vmin;
        bottom: -30%;
        left: 20%;
    }

    body::before {
        border: 1.5vw solid var(--sub);
        box-shadow: inset 0px 1px 4px rgba(46, 46, 46, 0.85);
    }

    body::after {
        top: 1.45vw;
        left: 1.45vw;
        width: 97.15vw;
    }

    main {
        width: 70vmin;
        margin: 0 auto;
    }

    h1 {
        line-height: 0.8;
    }

    h2 {
        font-size: clamp(2.8rem, 1.939rem + 2.29vw, 3.8rem);
    }

    .service h3 span {
        font-size: clamp(1.6rem, 1.256rem + 0.92vw, 2rem);
    }

    h3,
    ul,
    ol {
        font-size: clamp(2rem, 1.311rem + 1.83vw, 2.8rem);
    }

    li,
    p,
    .voice li {
        font-size: clamp(1.6rem, 1.428rem + 0.46vw, 1.8rem);
    }

    /*====TOP section*/
    .main-visual {
        font-weight: 600;
        width: 80%;
        height: 65svh;
        transform: none;
        margin: 0 auto;
    }

    .main-visual p {
        width: 100%;
    }

    .img--start {
        width: 30vmin;
        left: 25%;
        bottom: 0;
    }
}


@media screen and (max-width: 1299px) {
    body::before {
        border-bottom: none;/* mobile tab */
    }
    body::after {
        border-left: 1px solid var(--hover);
        border-bottom: 1px solid var(--hover);
    }
}