@charset "UTF-8";

:root {
    --color-common: #29384e;
    --color-primary: #29384e;
    --color-secondary: #e7ecf5;
    --color-basic: #222;
    --color-dark: #CCC;
    --color-light: #EEE;
    --color-pale: #F9F9F9;
    --color-non: #FFF;

    --color-red: #962a73;
    --color-pink: #b16f9c;
    --color-pink-pale: #f0ecf2;
    --color-navy: #29384e;
    --color-blue: #08b6c9;
    --color-blue-pale: #e8f2f2;
    --color-blue-light: #bbd0d2;
    --color-yellow: #ffe674;
    --color-green: #52b9a5;
    --color-green-pale: #f3f7f6;

    --color-level0: #666;
    --color-level1: #777;
    --color-level2: #888;
    --color-here: #DDD;
    --color-inner-here: #FFF;

    --font-family-ja: 'Noto Sans JP', "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", "sans-serif";
    --font-family-ja-min: 'Noto Serif JP', "游明朝", "YuMincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    --font-family-en: 'Oswald', sans-serif;

    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;

    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
    --n: 1rem;
    --gap: 10px;

    --header-height: 64px;
    /* sticky時のheader高さ */
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
    line-height: 1.15;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scrollbar-gutter: stable;
    font-family: var(--font-family-ja);
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--color-basic);
    padding: 0;
    margin: 0;
}

.ac>dt {
    scroll-margin-top: var(--header-height);
}

.sm {
    font-size: 1.4rem;
}

.md {
    font-size: 1.6rem;
}

.lg {
    font-size: 1.8rem;
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUtiZTaR.woff2) format('woff2');
    unicode-range: U+0030-0039;
}

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

:-webkit-any-link {
    color: var(--color-basic);
}

:-moz-any-link {
    color: var(--color-basic);
}

:any-link {
    color: var(--color-basic);
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
}

a:hover:not(.tab-block a),
a.button:hover,
a.icon:hover {
    text-decoration: none;
    opacity: .75;
}

@media (min-width: 821px) {

    a[href^="tel:"] {
        pointer-events: none;
    }

}

h1 {
    font-size: clamp(1.8rem, 1.541rem + 1.3vw, 3rem);
    font-weight: 300;
    padding: 2rem 0;
    margin: 0;
}

h2 {
    font-size: clamp(1.6rem, 1.427rem + 0.86vw, 2.4rem);
    font-weight: 300;
    margin: 4rem 0 2rem;
}

article>*:first-child {
    margin: 0 0 2rem;
}

h3 {
    font-size: clamp(1.6rem, 1.514rem + 0.43vw, 2rem);
    line-height: 1.4;
    font-weight: 300;
    padding: 2rem 0 1rem;
    margin: 0;
}

h4 {
    font-size: clamp(1.4rem, 1.514rem + 0.43vw, 1.6rem);
    line-height: 1.4;
    font-weight: 400;
    padding: 1rem 0;
    margin: 0;
}

h1 span,
h2 span,
h3 span {
    display: block;
    font-family: var(--font-family-en);
    line-height: 1;
    letter-spacing: 0.05rem;
    margin: .5rem 0;
}

h4>span {
    display: block;
    font-family: var(--font-family-en);
    line-height: 1;
    letter-spacing: 0.05rem;
    font-size: 1.4rem;
    margin: 0 0 .5rem;
}


h1 span {
    font-family: var(--font-family-en);
    font-size: clamp(1.8rem, 2vw, 2.4rem);
}

h2 span {
    font-size: clamp(1.6rem, 1.514rem + 0.43vw, 2rem);
    margin: 0 0 0.5rem;
}

h2 span:nth-child(2) {
    font-size: 1.6rem;
}

h3 span {
    font-size: 1.8rem;
    line-height: 1.2;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

p {
    margin: .5rem 0 2rem;
    line-height: 2;
}

p span {
    font-weight: 400;
}

.introtext p {
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.responsive {
    display: block;
    margin: auto;
}

.center {
    display: block;
    text-align: center;
}

.center+p {
    text-align: center;
}

.right {
    display: block;
    text-align: right;
}

.lead {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
}

.bold {
    font-weight: 400;
}

.pink {
    color: var(--color-pink);
}

.red {
    color: var(--color-red);
    font-weight: 400;
}

.underline.red {
    border-bottom: 2px solid var(--color-red);
}

.navy {
    color: var(--color-navy);
}

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

.yellow {
    color: var(--color-yellow);
}

.green {
    color: var(--color-green);
}

@media (min-width: 821px) {

    .indent {
        margin: auto;
        padding-left: 4rem;
    }

}

.sp {
    display: block !important;
}

.tablet {
    display: none !important;
}

.pc {
    display: none !important;
}

@media (min-width: 600px) {

    .sp {
        display: none !important;
    }

    .tablet {
        display: block !important;
    }

    .pc {
        display: block !important;
    }

}

@media (min-width: 821px) {

    .sp {
        display: none !important;
    }

    .tablet {
        display: block !important;
    }

    .pc {
        display: block !important;
    }

}

/*//////////////////// HOVER ACTION ////////////////////////*/

.ha li a {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.6;
    cursor: pointer;
    width: 100%;
    background: #fff;
    color: var(--color-basic);
    padding: 2rem;
    margin: 0;
}

.ha li a::after {
    font-family: 'Material Symbols Outlined';
    content: '\e315';
    font-size: 1.8rem;
    height: auto;
    background: none;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(0);
    transition: .2s;
}

.ha li.current a::after {
    display: none;
}

@media (min-width: 821px) {

    .ha li a::before {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: var(--color-primary);
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform 0.3s;
    }

    .ha li a:hover::before {
        transform: scale(1, 1);
    }

    .ha li a::after {
        display: none;
    }

}

::-moz-selection {
    background: var(--color-light);
}

::selection {
    background: var(--color-light);
}

*:focus {
    outline: none;
}

/*//////////////////// NUMBER ////////////////////////*/

.num {
    font-family: var(--font-family-en);
    font-weight: 400;
    letter-spacing: .05rem;
}

.time {
    font-family: var(--font-family-en);
    font-weight: 400;
    margin: 0 .5rem;
}

.price {
    font-family: var(--font-family-en);
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 .5rem;
}

.price::before {
    content: "\0a5";
    font-size: 1.8rem;
    margin: 0 .5rem 0 0;
}

.price::after {
    content: "税込";
    font-size: 1.2rem;
    margin: 0 0 0 .5rem;
}

/*//////////////////// DECO ////////////////////////*/

.note {
    position: relative;
    margin: 2rem 0;
}

.note li {
    margin: 0 0 1rem 2rem;
}

.note li::before {
    content: "※";
    position: absolute;
    left: 0;
}

@media (min-width: 821px) {

    .note li {
        display: flex;
    }

}

dd .note {
    margin: 1rem 0;
}

dd .note li {
    margin: 0 0 0rem 2rem;
}

.marker {
    background: linear-gradient(transparent 40%, pink 0%);
    margin: 0 0 0 .5rem;
}

.underline {
    text-decoration: none;
    border-bottom: 2px solid var(--color-basic);
    padding-bottom: 2px;
    font-weight: 400;
}

.link {
    text-decoration: none;
    border-bottom: 2px solid var(--color-basic);
    padding-bottom: 2px;
    font-weight: 400;
}

.lineTB {
    border-top: 1px solid var(--color-basic);
    border-bottom: 1px solid var(--color-basic);
    padding: 1rem 0;
    margin: 2rem 0;
}

.lineB {
    border-bottom: 1px solid var(--color-basic);
    padding: 1rem 0;
    margin: 2rem 0;
}

.lineLV {
    display: flex !important;
    align-items: center;
}

.lineLV::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--color-basic);
    border-radius: 10px;
    margin: 0 .5rem 0 0;
}

.lineLH {
    display: flex !important;
    align-items: center;
}

.lineLH::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    background: var(--color-basic);
    border-radius: 10px;
    margin: 0 .5rem 0 0;
}

.category,
.tag,
.archive {
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
}

.tag>* {
    background: var(--color-pale);
    border: 1px solid var(--color-light);
    color: var(--color-basic);
    border-radius: 1px;
    white-space: wrap;
    padding: .5rem 2rem;
    margin: 1rem 1rem 0 0;
}

/*//////////////////// LAYOUT ////////////////////////*/

.container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.top article,
.page article {
    padding: 0 0 5rem;
}

@media (min-width: 821px) {

    .container {
        max-width: 1580px;
    }

    .top,
    .page {
        display: flex;
        gap: 5%;
    }

    .top aside,
    .page aside {
        width: 250px;
        order: 1;
    }

    .top article,
    .page article {
        width: calc(95% - 250px);
        order: 2;
        padding: 0 0 10rem;
    }

    .split aside {
        flex: initial !important;
        width: 20%;
    }

    .split article {
        flex: initial !important;
        width: 80%;
    }

    .offset {
        max-width: 1280px;
        margin: auto;
    }

}

@media (min-width: 1200px) {

    .top aside,
    .page aside {
        width: 300px;
    }

    .top article,
    .page article {
        width: calc(95% - 300px);
    }

}

/*//////////////////// FLEX ////////////////////////*/

.contents-box,
.contents-img,
.contents-text {
    position: relative;
    flex: 1;
}

@media (min-width: 821px) {

    .contents-wrap {
        display: flex;
    }

    .odd>.contents-wrap:nth-child(odd),
    .even>.contents-wrap:nth-child(even) {
        flex-direction: row-reverse;
    }

}

@media (min-width: 821px) {

    .col2,
    .col3,
    .col4,
    .col5,
    .col6 {
        flex-wrap: wrap;
    }

    .col2>* {
        width: calc((100% - var(--gap))/2);
    }

    .col3>* {
        width: calc((100% - (var(--gap))*2)/3);
    }

    .col4>* {
        width: calc((100% - (var(--gap))*3)/4);
    }

    .col5>* {
        width: calc((100% - (var(--gap))*4)/5);
    }

    .col6>* {
        width: calc((100% - (var(--gap))*5)/6);
    }

}

/*//////////////////// FLEX V2 ////////////////////////*/

.dfx {
    display: flex;
}

.fdcr {
    flex-direction: column;
}

.fdrr {
    flex-direction: row;
}

@media (min-width: 821px) {

    .fdcr {
        flex-direction: row;
    }

    .odd>.dfx:nth-child(odd),
    .even>.dfx:nth-child(even) {
        flex-direction: row-reverse;
    }

}

@media (min-width: 821px) {

    .df {
        display: flex;
    }

    .df>* {
        position: relative;
        flex: 1;
    }

    .df.fi>* {
        flex: initial;
    }

    .odd>.df:nth-child(odd),
    .even>.df:nth-child(even) {
        flex-direction: row-reverse;
    }

}

.fdc {
    flex-direction: column;
}

.fdr {
    flex-direction: row;
}

.fww {
    flex-wrap: wrap;
}

.jcc {
    justify-content: center;
}

.jce {
    justify-content: end;
}

.jcsb {
    justify-content: space-between;
}

.aic {
    align-items: center;
}

.df.c2,
.df.c3,
.df.c4,
.df.c5,
.df.c6,
.df.c7,
.df.c8 {
    flex-wrap: wrap;
}

.df.c2>*,
.df.c3>*,
.df.c4>*,
.df.c5>*,
.df.c6>*,
.df.c7>*,
.df.c8>* {
    flex: auto;
}

@media (min-width: 821px) {

    .df.c2>* {
        width: calc((100% - var(--gap))/2);
    }

    .df.c3>* {
        width: calc((100% - (var(--gap))*2)/3);
    }

    .df.c4>* {
        width: calc((100% - (var(--gap))*3)/4);
    }

    .df.c5>* {
        width: calc((100% - (var(--gap))*4)/5);
    }

    .df.c6>* {
        width: calc((100% - (var(--gap))*5)/6);
    }

    .df.c7>* {
        width: calc((100% - (var(--gap))*6)/7);
    }

    .df.c8>* {
        width: calc((100% - (var(--gap))*7)/8);
    }
}


.df.c12,
.df.c123,
.df.c23,
.df.c234 {
    flex-wrap: wrap;
}

.df.c12>*,
.df.c123>*,
.df.c23>*,
.df.c234>* {
    flex: auto;
}

.df.c12>*,
.df.c123>* {
    width: 100%;
}

.df.c23>*,
.df.c234>* {
    width: calc((100% - var(--gap))/2);
}

@media (min-width: 600px) {

    .df.c12>*,
    .df.c123>* {
        width: calc((100% - var(--gap))/2);
    }


    .df.c23>*,
    .df.c234>* {
        width: calc((100% - (var(--gap)*2))/3);
    }

}

@media (min-width: 821px) {

    .df.c234>* {
        width: calc((100% - (var(--gap)*3))/4);
    }

}

/*//////////////////// GRID ////////////////////////*/

.dg {
    display: grid;
}

.dg.c12,
.dg.c123 {
    grid-template-columns: repeat(1, 1fr);
}

.dg.c2,
.dg.c23,
.dg.c234 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 821px) {

    .dg.c12,
    .dg.c123 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dg.c23,
    .dg.c234 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 980px) {

    .dg.c123 {
        grid-template-columns: repeat(3, 1fr);
    }

    .dg.c234 {
        grid-template-columns: repeat(4, 1fr);
    }

}

.dg>* {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    gap: 0;
}

.dg.r2>* {
    grid-row: span 2;
}

.dg.r3>* {
    grid-row: span 3;
}

.dg.r4>* {
    grid-row: span 4;
}

/*//////////////////// GAP ////////////////////////*/

.g1 {
    gap: var(--gap);
}

.g2 {
    gap: calc(var(--gap) * 2);
}

.g3 {
    gap: calc(var(--gap) * 3);
}

.g4 {
    gap: calc(var(--gap) * 4);
}

.g5 {
    gap: calc(var(--gap) * 5);
}

.g10 {
    gap: calc(var(--gap) * 10);
}

/*//////////////////// FIGURE ////////////////////////*/

figure {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

figcaption {
    text-align: center;
    font-size: 1.4rem;
    padding: .5rem 0;
    margin: .5rem 0;
}

figcaption span {
    display: block;
    font-weight: 400;
}

@media (min-width: 821px) {

    figure.left {
        float: left;
        width: 25%;
        margin: 0 3rem 3rem 0;
    }

    figure.right {
        float: right;
        width: 25%;
        margin: 0 0 3rem 3rem;
    }

    figure img {
        max-width: 100%;
    }

    .clear {
        clear: both;
    }

    figure.w35 {
        width: 35%;
    }

    figure.w50 {
        width: 50%;
    }

    figure.w100 {
        width: 100%;
    }

}

/*//////////////////// INNER ////////////////////////*/

.inner {
    margin: auto;
}

.inner.w109 {
    width: 100%;
}

.inner.w98 {
    width: 90%;
}

.inner.w987 {
    width: 90%;
}

@media (min-width: 821px) {

    .inner.w109 {
        width: 90%;
    }

    .inner.w98 {
        width: 80%;
    }

    .inner.w987 {
        width: 80%;
    }

}

@media (min-width: 980px) {

    .inner.w987 {
        width: 70%;
    }

}

/*//////////////////// GUTTER ////////////////////////*/

.pad {
    padding: var(--n);
}

.mt {
    margin: var(--n) 0 0;
}

@media (min-width: 821px) {

    .mt {
        margin: calc(var(--n) * 2) 0 0;
    }

    .mt.x2 {
        margin: calc(var(--n) * 4) 0 0;
    }

    .mt.x3 {
        margin: calc(var(--n) * 6) 0 0;
    }

    .mt.x4 {
        margin: calc(var(--n) * 8) 0 0;
    }

    .mt.x5 {
        margin: calc(var(--n) * 10) 0 0;
    }

}

.mtb {
    margin: var(--n) 0;
}

@media (min-width: 821px) {

    .mtb.x2 {
        margin: calc(var(--n) * 2) 0;
    }

    .mtb.x3 {
        margin: calc(var(--n) * 3) 0;
    }

    .mtb.x4 {
        margin: calc(var(--n) * 4) 0;
    }

    .mtb.x5 {
        margin: calc(var(--n) * 5) 0;
    }

    .mtb.x8 {
        margin: calc(var(--n) * 8) 0;
    }

    .mtb.x10 {
        margin: calc(var(--n) * 10) 0;
    }

}

.mb {
    margin-bottom: var(--n) !important;
}

.ml {
    margin-left: var(--n) !important;
}

@media (min-width: 821px) {

    .mb {
        margin-bottom: calc(var(--n) * 2) !important;
    }

    .ml {
        margin-left: calc(var(--n) * 2) !important;
    }

}

.npt {
    padding-top: 0;
}

.nmt {
    margin-top: 0;
}

/*//////////////////// WRAPPER ////////////////////////*/

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*//////////////////// TAIL ////////////////////////*/

.arrowR {
    display: flex;
    /*justify-content: end;*/
    align-items: center;
    font-weight: 400;
}

.arrowR::after {
    content: "";
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-non);
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 1rem;
}

.arrowD::after {
    font-family: 'Material Symbols Outlined';
    content: '\e313';
}

.arrowL::after {
    font-family: 'Material Symbols Outlined';
    content: '\e314';
}

.arrowR::after {
    font-family: 'Material Symbols Outlined';
    content: '\e315';
}

.arrowU::after {
    font-family: 'Material Symbols Outlined';
    content: '\e316';
}

.tail {
    justify-content: end;
}

.p16 .arrowD::after,
.p16 .arrowL::after,
.p16 .arrowR::after,
.p16 .arrowU::after {
    color: var(--color-basic);
}

/*//////////////////// ICON ////////////////////////*/

.information .icon {
    display: flex;
    align-items: center;
    font-weight: 400;
    max-width: max-content;
}

.icon::before {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    vertical-align: middle;
    margin: 0 .5rem 0 0;
}

.tel,
.fax {
    font-family: var(--font-family-en);
    font-weight: 400;
}

.toastB .icon.tel::before {
    font-size: 3.6rem;
}

@media (min-width: 821px) {

    .icon.tel span {
        font-size: 1.6rem;
    }

    .icon.tel::before {
        font-size: 2rem;
        font-weight: 400;
    }

    .icon.tel.white::before {
        color: var(--color-non);
    }

    .icon::before {
        font-size: 2.4rem;
    }

    .head-block .icon::before {
        font-size: 2.1rem;
    }

    .head-block .icon.tel {
        justify-content: start;
        font-family: var(--font-family-en);
        font-size: 2rem;
        font-weight: 400;
    }

}

/*//////////////////// GOOGLE ////////////////////////*/

.icon.dot::before {
    font-family: 'Material Symbols Outlined';
    content: '\e39e';
}

.icon.pdf::before {
    font-family: 'Material Symbols Outlined';
    content: '\e415';
}

.icon.list-check::before {
    font-family: 'Material Symbols Outlined';
    content: '\f3de';
}

.icon.scope::before {
    font-family: 'Material Symbols Outlined';
    content: '\f805';
}

.icon.medical-check::before {
    font-family: 'Material Symbols Outlined';
    content: '\e0a0';
}

.icon.home-nursing::before {
    font-family: 'Material Symbols Outlined';
    content: '\e4b9';
}

.icon.assist-care::before {
    font-family: 'Material Symbols Outlined';
    content: '\f8d5';
}

.icon.bus-train::before {
    font-family: 'Material Symbols Outlined';
    content: '\f36b';
}

.icon.car::before {
    font-family: 'Material Symbols Outlined';
    content: '\e531';
}

.icon.cable::before {
    font-family: 'Material Symbols Outlined';
    content: '\efe6';
}

.icon.heart::before {
    font-family: 'Material Symbols Outlined';
    content: '\e87d';
}

.icon.privacy-policy::before {
    font-family: 'Material Symbols Outlined';
    content: '\e8e8';
}

.icon.mypage::before {
    font-family: 'Material Symbols Outlined';
    content: '\e7fd';
}

.icon.lock::before {
    font-family: 'Material Symbols Outlined';
    content: '\e897';
}

.icon.store::before {
    font-family: 'Material Symbols Outlined';
    content: '\e069';
}

.icon.shop::before {
    font-family: 'Material Symbols Outlined';
    content: '\e8cc';
}

.icon.recruit::before {
    font-family: 'Material Symbols Outlined';
    content: '\ea67';
}

.icon.tel::before {
    font-family: 'Material Symbols Outlined';
    content: '\e61d';
}

.icon.fax::before {
    font-family: 'Material Symbols Outlined';
    content: '\ead8';
}

.icon.contact::before {
    font-family: 'Material Symbols Outlined';
    content: '\f0d2';
}

.icon.download::before {
    font-family: 'Material Symbols Outlined';
    content: '\f090';
}

.icon.note::before {
    font-family: 'Material Symbols Outlined';
    content: '\e06f';
}

.icon.pdf::before {
    font-family: 'Material Symbols Outlined';
    content: '\e415';
}

.icon.external::before {
    font-family: 'Material Symbols Outlined';
    content: '\f731';
}

/*//////////////////// FADE in ////////////////////////*/

@media (min-width: 821px) {

    .fadein {
        opacity: 0;
        transform: translateY(140px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fadein.visible {
        opacity: 1;
        transform: translateY(0px);
    }

}