@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@1,400;1,500;1,600&family=Noto+Sans+JP:wght@400;500;600&family=Zen+Kaku+Gothic+New:wght@500;700&family=Zen+Old+Mincho:wght@500;600&display=swap');
@media(max-width:767px) {
    .hide-for-small {
        display: none !important;
    }
}

@media(min-width:768px) {
    .show-for-small {
        display: none !important;
    }
    header{
        min-height: 130px;
    }
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    color: #333;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
}

a {
    transition: all 0.5s;
}

a:not(.btn):hover {
    opacity: 0.6;
}

#go-top {
    position: fixed;
    bottom: -120px;
    right: 30px;
    opacity: 0;
    transition: all .3s;
    z-index: 99;
}

#go-top.show {
    opacity: 1;
    bottom: 70px;
}

#go-top a {
    display: flex;
    font-size: 1.4rem;
    color: #000000;
    letter-spacing: 0.1em;
    flex-direction: column;
    box-shadow: 0px 0px 10px 0px rgba(19, 117, 183, 0.45);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #2FC5F7;
    border: 1px solid #2FC5F7;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

#go-top a:hover {
    opacity: 1;
    background-color: #fff;

}

#go-top a img {
    margin: 0 auto;
    max-width: 66px;
    width: 21px;
}

#go-top a span {
    width: 21px;
    height: 15px;
    mask-image: url(../images/index/btn-go-top.svg);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url(../images/index/btn-go-top.svg);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #fff;
    transition: .3s;
}

#go-top:hover a span {
    background-color: #2FC5F7;
}

.ff-aleo {
    font-family: 'Aleo', serif;
    font-style: italic;
}

.ff-kaku {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.ff-mincho {
    font-family: 'Zen Old Mincho', serif;
}

@media (min-width: 768px) {

    /*ANIMATION*/
    .anim {
        opacity: 0;
    }

    .anim.fade {
        opacity: 0;
    }

    .anim.fade.is-animated {
        opacity: 1;
        animation-name: fade;
        animation-duration: 2s;
    }

    .anim.faderight.is-animated {
        opacity: 1;
        animation-name: faderight;
        animation-duration: 2s;
    }

    .anim.fade.is-animated {
        opacity: 1;
        animation-name: fade;
        animation-duration: 2s;
    }

    .anim.fadeleft.is-animated {
        opacity: 1;
        animation-name: fadeleft;
        animation-duration: 2s;
    }

    .anim.fadeup.is-animated {
        animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    }

    .anim.fadeup-2.is-animated {
        opacity: 1;
        animation-name: fadeup-2;
        animation-duration: 0.5s;
    }

    .home .anim.fadedown.is-animated {
        opacity: 1;
        animation-name: fadedown;
        animation-duration: 0.5s;
    }

    @keyframes fade {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes faderight {
        from {
            opacity: 0;
            transform: translateX(-150px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    @keyframes fadedown {
        from {
            opacity: 0;
            transform: translateY(-150px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    @keyframes fadeup {
        0% {
            transform: translateY(30px);
            opacity: 0;
        }

        80% {
            opacity: 1;
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeup-2 {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0px);
        }
    }

    @keyframes fadeleft {
        from {
            opacity: 0;
            transform: translateX(100px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    body:not(.home) .header-wrapper.anim {
        opacity: 1;
    }

    .anim.effectfade {
        opacity: 0;
        transform: translate(0, 20px);
        transition: all 1.5s ease;
    }

    .anim.effectfade.is-animated {
        opacity: 1;
        transform: translate(0, 0);
    }
}


/*HEADER*/
header {
    z-index: 9;
    position: relative;
    background-color: #fff;
    box-shadow: 6px 6px 7px 0px rgba(158,183,182,0.3);
}

.header-main .logo-left .logo {
    margin-right: 0px;
    width: 567px;
    line-height: 1;
    padding: 0;
    margin-left: 0px;
}

.header-inner {
    position: relative;
}

#logo .header-logo {
    width: 100%;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
    margin-right: 33px;
}

.header-main .main-menu .nav {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
}

.header-main .main-menu .nav>li {
    margin-left: 0px;
    margin-right: 0;
    position: static;
    transition: .3s;
}

.header-main .main-menu .nav>li>a {
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 1.75;
    padding: 0;
    color: #0072BD;
    text-align: center;
    margin: 0 26px;
    padding-bottom: 5px;
    transition: .3s;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.header-main .main-menu .nav>li>a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 0;
    height: 2px;
    background: #2FC5F7;
    /*アニメーションの指定*/
    transition: all .3s;
    /*X方向0、Y方向1*/
    transform-origin: center top;
    /*上部中央基点*/
}

.header-main .main-menu .nav>li.current>a::after,
.header-main .main-menu .nav>li>a:hover::after {
    width: 100%;
    /*X方向にスケール拡大*/
}

.header-main .main-menu .nav>li>a:hover,
.header-main .main-menu .nav>li.current>a {
    opacity: 1;
    color: #2FC5F7;
}

.header-main .main-menu .nav>li>a {
    position: relative;
}

a.menu-btn {
    width: 40px;
    min-height: 40px;
    position: absolute;
    background-color: #fff;
    top: 10px;
    right: 15px;
    z-index: 99999;
    transition: none;
    box-shadow: none;
    border-radius: 50%;
    height: auto;
    border: 1px solid #fff;
}

a.menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 29px;
    top: 9px;
    background-color: #0072BD;
    left: 5px;
    transition: all 0.5s;
    border-radius: 10px;
}

a.menu-btn span:nth-child(2) {
    top: 19px;
}

a.menu-btn span:nth-child(3) {
    top: 29px;
}


/* a.menu-btn::after {
    content: 'MENU';
    left: 50%;
    transform: translateX(-50%);
    top: 37px;
    position: absolute;
    color: #00A591;
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    font-family: 'Alata', sans-serif;
} */


/* a.menu-btn.open:after {
    content: "CLOSE";
} */

body.menu-open header:before {
    display: none;
}

a.menu-btn.open {
    position: fixed;
    border-color: #0072BD;
}

a.menu-btn.open span {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 18px;
    left: 9px;
    width: 20px;
}

a.menu-btn.open span:nth-child(2) {
    display: none;
}

a.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}

@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}



.main-menu li.nav-item:hover>a span::after,
.main-menu li.nav-item.current>a span::after {
    left: 50%;
    opacity: 1;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        /* Ã¦â€¹Â¡Ã¥Â¤Â§Ã§Å½â€¡ */
    }
}



.box-scroll {
    position: absolute;
    bottom: 24px;
    right: 70px;
    height: 159px;
    z-index: 2;
    color: #00A591;
}

.loading-active main {
    opacity: 0;
}

.box-scroll::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 1px;
    height: 159px;
    animation: pathmove 1.8s ease-in-out infinite;
    /* opacity: 0; */
    left: 50%;
    transform: translateX(-50%);
    background: #00A591;
}

a.scroll {
    font-size: 1.6rem;
    color: #00A591;
    font-weight: 500;
    font-family: 'Josefin Sans', sans-serif;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0px;
        opacity: 0;
    }

    30% {
        height: 110px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 130px;
        opacity: 0;
    }
}





.breadcrums {
    position: relative;
    padding: 10px 0;
    background-color: rgba(238, 239, 244, 0.65);
}

.breadcrums ul {
    display: flex;
    justify-content: flex-start;
}

.breadcrums ul li>a {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #00A591;
}

.breadcrums ul li {
    position: relative;
}

.breadcrums ul li:not(:last-child) {
    margin-right: 40px;
}

.breadcrums ul li span {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #00A591;
}

.breadcrums ul li:not(:nth-last-child(1)):after {
    content: ">";
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    right: -26px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #00A591;
}

ul.list-anchor {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

ul.list-anchor li {
    width: 25%;
}

ul.list-anchor li:last-child,
ul.list-anchor li:nth-child(4n) {
    margin-right: 0;
}

ul.list-anchor li a {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #0072BD;
    position: relative;
    padding-left: 30px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: 10px;
}

ul.list-anchor li a::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/index/icon-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}



/*  */
.color-1 {
    color: #0072BD;
}

.bgcl-1 {
    background-color: #0072BD;
}

.color-2 {
    color: #3E3A39;
}

.bgcl-2 {
    color: #3E3A39;
}
.color-3 {
    color: #08B8DA;
}

.bgcl-3 {
    color: #08B8DA;
}
.banner-home {
    display: flex;
    justify-content: flex-end;
}

.banner-home-right {
    width: 1060px;
}

.banner-home-left {
    position: absolute;
    left: 190px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.slide-item-img {
    -webkit-mask-image: url(../images/index/mask-banner.png);
    mask-image: url(../images/index/mask-banner.png);
    mask-size: cover;
    -webkit-mask-size: cover;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
}

ul.slick-dots li {
    width: 15px;
    height: 15px;
    margin: 0 6px;
    background-color: #D2D2D2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.slick-dots li button {
    opacity: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

ul.slick-dots li.slick-active {
    background-color: #2FC5F7;
}

#main-slider button.slide-arrow.slick-arrow {
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 9px;
    height: 17px;
    background-color: transparent;
    border: none;
    z-index: 4;
    padding: 0;
    cursor: pointer;
    transition: .3s;
    transform: translateX(-50%);
}

#main-slider button.slide-arrow.next-arrow {
    left: calc(50% + 70px);
}

#main-slider button.slide-arrow.prev-arrow {
    left: calc(50% - 70px);
}

.box-link-fix {
    position: fixed;
    right: 0;
    top: 183px;
    z-index: 9;
    width: 84px;
    height: auto;
}

a.link-fixed {
    font-size: 2rem;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    padding: 25px 16px 30px;
    background-color: #2AA7B2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
    border-radius: 10px 0 0 10px;
    font-weight: bold;
}

a.link-fixed span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

a.link-fixed img {
    width: 30px;
    margin-bottom: 18px;
}

a.link-fixed:nth-child(2) {
    background-color: #FF8C8E;
    margin-bottom: 0;
    padding-bottom: 15px;
    padding-top: 15px;
}

a.link-fixed:nth-child(2) img {
    margin-bottom: 10px;
}

.header-wrapper {
    padding-bottom: 27px;
}

.banner-home-left:after {
    content: "";
    width: 336px;
    height: 668px;
    background-image: url(../images/index/after-text.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -85px;
    top: -228px;
    z-index: -1;
}

#banner-home {
    position: relative;
}

#banner-home::after {
    content: "";
    width: 100%;
    height: 1094px;
    background-image: url(../images/index/bg-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -10px;
    left: 0;
    z-index: -3;
}

.p-39 {
    padding-left: 39px;
    padding-right: 39px;
}

.img-home-message-2 {
    position: relative;
    left: -58px;
    top: -35px;
}

.img-home-message-4 {
    position: relative;
    right: -58px;
    top: -35px;
}

.home-message {
    position: relative;
    padding-bottom: 230px;
}

.home-message::after {
    content: "";
    width: 100%;
    height: 400px;
    background-image: url(../images/index/bg-home-message.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
}

.main-title h2 {
    font-size: 4.5rem;
    font-family: 'Aleo', serif;
    font-style: italic;
    font-weight: 400;
    color: #2FC5F7;
    letter-spacing: 0.075em;

}

.main-title p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    padding-top: 12px;
    color: #0072BD;
}

a.btn.btn-main {
    max-width: 270px;
    min-height: 60px;
    border-radius: 30px;
    background-color: #0072BD;
    border: 1px solid #0072BD;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 500;
    padding-left: 78px;
    justify-content: flex-start;
    box-shadow: 0 0 5px 0 rgb(104 104 104 / 50%);
}

a.btn.btn-main::after {
    width: 16px;
    height: 13px;
    mask-image: url(../images/index/icon-right.svg);
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../images/index/icon-right.svg);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: #fff;
    right: 23px;
    transition: .3s;
}
@media (min-width: 768px) {
    a.btn.btn-main:hover {
    background-color: #fff;
    color: #0072BD;
    }

    a.btn.btn-main:hover::after {
        background-color: #0072BD;
    }
}

.img-home-envi {
    position: relative;
}

.img-home-envi:after {
    content: "";
    width: calc(50vw + 20px);
    height: 445px;
    position: absolute;
    top: -65px;
    background-image: url(../images/index/bg-home-envi.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    right: -35px;
}

.box-home-envi {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.box-envi-top {
    background-color: #08B8DA;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 63px;
    border-radius: 30px 30px 0 0;
    font-size: 2.2rem;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.box-envi-bottom {
    display: flex;
    padding: 25px 45px 38px;
    border-radius: 0 0 30px 30px;
    background-color: #fff;
    align-items: flex-start;
}

.box-envi-bottom img {
    width: 123px;
}

.box-envi-text {
    flex: 1;
    padding-left: 40px;
}

.box-envi-bottom p {
    line-height: 2;
    color: #3E3A39;
    min-height: 128px;
    margin-bottom: 10px;
}

.box-envi-text a {
    font-size: 18px;
    font-weight: 500;
    color: #0072BD;
    padding-right: 58px;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    text-align: right;
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: relative;
}

.box-envi-text a:after {
    content: "";
    width: 43px;
    height: 12px;
    background-image: url(../images/index/icon-right-2.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    position: absolute;
    transition: .3s;
}
.box-envi-text a:hover{
    opacity: 1;
}
.box-envi-text a:hover::after{
    right: -15px;
}
.home-envi {
    position: relative;
    background-color: #E5FBFF;
}

.home-envi::after {
    content: "";
    width: 100%;
    height: 116px;
    background-image: url(../images/index/curve.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -100px;
    left: 0;
}

.home-envi::before {
    content: "";
    width: 100%;
    height: 116px;
    background-image: url(../images/index/curve.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    left: 0;
    transform: rotate(180deg);
}

.img-home-depart {
    position: relative;
}

.img-home-depart:after {
    content: "";
    width: calc(50vw - 40px);
    height: 420px;
    background-image: url(../images/index/img-home-depart.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
}

.link-cross {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: block;
}

.home-depart .main-title {
    position: relative;
}

.home-depart .main-title::after {
    content: "";
    width: 496px;
    height: 150px;
    background-image: url(../images/index/bg-text.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 195px;
    z-index: -1;
}

.box-home-cs {
    max-width: 430px;
    margin-left: auto;
    border-radius: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    padding: 30px 45px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.pt-375 {
    padding-top: 375px;
}

.box-home-top {
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid;
}

.slide-home-img .image-cover {
    padding-top: 69.567%;
}

.slide-home-bottom .slick-list {
    margin: 0 -24px;
}

.slide-home-img {
    padding: 0 25px;
}

.box-slide-home-bottom {
    padding: 60px 0 65px;
    background-color: #fff;
}

.home-bottom {
    background-image: url(../images/index/bg-home-bottom.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}

.footer-wrap {
    background-color: #0072BD;
}

.box-flex-footer {
    display: flex;
}

.box-text-footer {
    width: 330px;
}

.box-btn-footer {
    flex: 1;
}

a.btn.btn-footer {
    max-width: 190px;
    background-color: #fff;
    min-height: 50px;
    border-radius: 30px;
    color: #0072BD;
    padding-left: 38px;
    justify-content: flex-start;
    font-weight: 500;
    box-shadow: 0 0 4px rgba(0, 74, 147, 0.3);
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

a.btn.btn-footer::after {
    width: 20px;
    height: 20px;
    mask-image: url(../images/index/icon-blank.svg);
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../images/index/icon-blank.svg);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: #0072BD;
    transition: .3s;
    right: 32px;
}

a.btn.btn-footer:hover {
    background-color: #2FC5F7;
    color: #fff;
}

a.btn.btn-footer:hover::after {
    background-color: #fff;
}

.footer-copyright {
    background-color: #D8EEF1;
    padding: 27px 0;
}

.footer-copyright {
    background-color: #D8EEF1;
    padding: 27px 0;
}

.box-link-footer {
    display: flex;
    justify-content: center;
}

a.link-footer {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    padding-left: 32px;
    position: relative;
    margin-right: 50px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}
a.link-footer::after{
    content: "";
    width: 21px;
    height: 21px;
    background-image: url(../images/index/icon-right-footer.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: .3s;
}
a.link-footer:last-child {
    margin-right: 0;
}
a.link-footer:hover{
    color: #2FC5F7;
    opacity: 1;
}
a.link-footer:hover::after{
    background-image: url(../images/index/icon-right-hover.svg);
}
.home-envi .container::after{
    content: "";
    width: 176px;
    height: 281px;
    background-image: url(../images/index/after-envi.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    left: 122px;
    top: -123px;
    position: absolute;
}
.jpn span {
	display: inline-block;
	opacity: 0;
	transform: translateY(14px);
	transition-property: all;
	transition-timing-function: cubic-bezier(.12,.59,.41,.95);
	transition-duration: 0.9s;
}
.jpn span.move {
	opacity: 1;
	transform: translateY(0);
}
.slide-home-content .page-ttl,
.slide-home-content .page-ttl-2{
    opacity: 0;
}
.slide-home-content .page-ttl,
.slide-home-content .page-ttl-2{
    opacity: 1;
}
.fadein {
    opacity: 0;
    transition: all 1.0s;
    transform: translateY(35px);
}
.fadein.scrollin{
    opacity: 1;
    transform: translateY(0);
}
.fadein2.fadein.scrollin{
    opacity: 1;
    transform: translateY(0);
    transition-delay: .15s;
}

.fadein3.fadein.scrollin{
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
}
.img-home-message {
    border: 1px solid #2FC5F7;
}

@media (min-width: 767px) and (max-width: 1240px) {
    .header-main .logo-left .logo{
        width: 450px;
    }
    .header-main .main-menu{
        margin-right: 0;
    }
}
@media (min-width: 767px) and (max-width: 1090px) {
    .header-main .main-menu .nav>li>a{
        font-size: 1.6rem;
        margin: 0 10px;
    }
}
@media (min-width: 767px) and (max-width: 901px) {
    .header-main .logo-left .logo{
        width: 300px;
    }
}
.popup-item-cont .popup-item-cont-inner {
    scrollbar-width: none;
}
.popup-item-cont .popup-item-cont-inner::-webkit-scrollbar {
display: none;
}
@media(min-width:1481px){
    .banner-home-left{
        left: calc(50vw - 550px);
    }
}
.slide-home-content{
    position: relative;
    width: fit-content;
}
.slide-home-content:before{
    width: 120%;
    height: 160%;
    content: '';
    display: block;
    position: absolute;
    left: -10%;
    top: -25%;
    background-image: url(../images/index/background-text.png);
    background-size: 100% 100%;
}