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

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

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: #333333;
    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: 0;
    opacity: 0;
    transition: all .3s;
    z-index: 99;
}

#go-top.show {
    opacity: 1;
    bottom: 70px;
}
#go-top a {
    display: flex;
    flex-direction: column;
    width: 75px;
    height: 75px;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 0 5px 0 rgba(40, 130, 165, 0.45);
}


/* #go-top a:hover {
    background-image: url(../images/index/btn-go-top-hover.svg);
    opacity: 1;
} */


/* #go-top a::after {
    content: "";
    width: 62px;
    height: 62px;
    background-color: #c4eeff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -2;
    transition: .3s;
    border-radius: 50%;
} */


/* #go-top a:hover {
    opacity: 0.7;
    transform: scale(1.1);
} */

#go-top a:hover::after {}

#go-top a img {
    margin: 0 auto;
}

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

.ff-jose {
    font-family: "Josefin Slab", serif;
}

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


/*ANIMATION*/

.anim {
    opacity: 0;
}

.anim.blur {
    opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.anim.fade {
    opacity: 0;
}

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

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

.anim.slidein.is-animated {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.anim.zoomin.is-animated {
    animation: zoomIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
    }
    40%,
    100% {
        opacity: 1;
    }
}

@keyframes slideinBottom {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

.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;
    opacity: 1;
}

.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;
}

.anim.zoomin.is-animated {
    animation: zoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@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(50px);
        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);
    }
}

.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-wrapper:after {
    content: "";
    height: 713px;
    width: 713px;
    background-image: url(../images/index/bg-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    border-radius: 50%;
    top: -202px;
    left: -108px;
    z-index: -5;
} */

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

a.menu-btn:hover {
    opacity: 1;
}

@media (min-width: 768px) and (max-width: 1450px) {}

.header-inner {
    position: static;
    padding: 33px 0 21px;
    padding-left: 40px;
    padding-right: 200px;
}

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

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

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

.header-main .main-menu .nav>li:last-child {
    margin-right: 0;
}

.header-main .main-menu .nav>li>a {
    font-weight: 500;
    padding: 0;
    color: #333333;
    text-align: center;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    min-height: 48px;
    letter-spacing: 0.1em;
}

.header-main .main-menu .nav>li>a span {
    margin-top: 0;
}

.header-main .main-menu .nav>li>a::before {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 241, 0, 1) 0%, rgba(255, 78, 0, 1) 29%, rgba(195, 21, 255, 1) 67%, rgba(69, 125, 192, 1) 100%);
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}


/* .header-main .main-menu .nav>li>a span {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding-top: 5px;
} */

.header-main .main-menu .nav>li:nth-last-child(1) {
    border-right: none;
}

.box-menu-phone {
    display: flex;
    padding-left: 0;
    align-items: center;
    padding: 0;
    position: static;
}

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

@media (min-width: 768px) {
    .header-main .main-menu .nav>li:not(.nav-mega).current>a::before,
    .header-main .main-menu .nav>li:not(.nav-mega):hover>a::before {
        transform: scale(1, 1);
    }
    .header-main .main-menu .nav>li.nav-mega>a::after {
        content: "";
        width: 30px;
        height: 12px;
        background-color: #fff;
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        opacity: 0;
        transition: .3s;
    }
    .header-main .main-menu .nav>li.nav-mega:hover>a::after {
        bottom: -25px;
        opacity: 1;
    }
}

a.menu-btn {
    width: 118px;
    min-height: 118px;
    border: 1px solid #0bb1dd;
    z-index: 8999;
    transition: none;
    height: auto;
    box-shadow: none;
    background-color: transparent;
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 40px;
    top: 20px;
}

a.menu-btn::before {
    content: "";
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 50%;
    position: absolute;
    background-color: #0bb1dd;
    top: 7px;
    left: 7px;
}

a.menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 26px;
    top: 42px;
    background-color: #fff;
    left: 45px;
    transition: all 0.5s;
}

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

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

a.menu-btn::after {
    content: 'MENU';
    left: calc(50%);
    transform: translateX(-50%);
    top: 63px;
    position: absolute;
    color: #fff;
    width: max-content;
    font-size: 1.9rem;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: bold;
}

a.menu-btn.open:after {
    content: "閉じる";
    color: #fff;
}

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

a.menu-btn.open {}

a.menu-btn.open span {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 42px;
    background-color: #fff;
}

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;
}

.loading-active main {
    opacity: 0;
}

.loading-active header {
    opacity: 0;
}

.loading-active footer {
    opacity: 0;
}

.breadcrums {
    position: relative;
    padding: 25px;
    padding-top: 50px;
}

.breadcrums ul {
    display: flex;
    justify-content: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
}

.breadcrums ul li>a {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.breadcrums ul li {
    position: relative;
}

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

.breadcrums ul li span {
    color: #1c1d1d;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 1.4rem;
}

.breadcrums ul li span br {
    display: none;
}

.breadcrums ul li:not(:nth-last-child(1)):after {
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    font-size: 1.4rem;
    font-weight: 500;
}

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

ul.list-anchor li {
    width: calc(25% - 20px);
    margin-right: 25px;
    margin-bottom: 30px;
}


/* ul.list-anchor li:first-child {
    margin-left: 0;
} */

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

ul.list-anchor li a {
    display: flex;
    justify-content: center;
    color: #b10d15;
    position: relative;
    font-weight: 500;
    line-height: 1.1875;
    padding: 0 5px;
    font-size: 1.5rem;
    transition: .3s;
    align-items: center;
    text-align: center;
    min-height: 55px;
}

ul.list-anchor li a:hover {
    opacity: .7;
}

ul.list-anchor li a::before {
    content: "";
    width: 100%;
    height: 8px;
    background-image: url(../images/brand/icon-right-anchor.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .3s;
}

ul.list-anchor li a:hover span::after {
    width: 100%;
}

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

.box-slide-banner {
    margin-top: 240px;
}

.box-scroll {
    position: absolute;
    position: absolute;
    right: 80px;
    height: 161px;
    z-index: 1;
    bottom: -55px;
}

.loading-active main {
    opacity: 0;
}

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

a.scroll {
    color: #0bb1dd;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: 0.1em;
    font-weight: 400;
    font-size: 1.5rem;
    width: max-content;
    left: -80px;
}

.scroll_down {
    position: absolute;
    bottom: -30px;
    left: 50%;
}

.scroll_down a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    color: #1d69c6;
    font-size: 1.8rem;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: .05em;
    text-decoration: none;
    width: max-content;
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #1d69c6;
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
    0% {
        bottom: 160px;
    }
    100% {
        bottom: 0px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}

.scroll_down:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 160px;
    background: #1d69c6;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 10px;
        opacity: 0;
    }
    30% {
        height: 161px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 120px;
        opacity: 0;
    }
}

.main-menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

ul.slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    bottom: 30px;
    z-index: 2;
}

ul.slick-dots li {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #50aed9;
    border-radius: 50%;
    margin: 0 5px;
}

ul.slick-dots li.slick-active {
    background-color: #50aed9;
}

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


/* .header-wrapper {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 5;
    background-color: transparent;
} */

@media(min-width:768px) {
    .logged-in .header-main {
        top: 32px;
    }
    .logged-in a.menu-btn {
        top: 52px;
    }
}

header.UpMove .header-main {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

header.DownMove .header-main {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* a.btn.btn-contact::after {
    width: 33px;
    height: 10px;
    background-image: url(../images/index/icon-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 20px;
    bottom: 45px;
    transform: none;
    top: auto;
} */


/* .news-item.item-list:last-child {
    border-bottom: none;
} */

.news-item.item-list {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333333;
    padding: 30px 20px;
    flex-wrap: wrap;
}

.news-item.item-list::after {
    content: "";
    position: absolute;
    width: 19px;
    height: 18px;
    background-image: url(../images/index/icon-rigjt.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 28px;
    right: 24px;
    transition: all 0.5s;
}

.news-item.item-list:hover:after {
    right: 15px;
}

.news-item.item-list:hover .title a {
    opacity: 1;
    color: #50AED9;
}

.box-date-cat {
    display: flex;
    align-items: center;
}

.news-item .date {
    color: #949494;
    width: 112px;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-right: 1px solid #aeaeae;
    margin-right: 26px;
    min-height: 31px;
    display: flex;
    align-items: center;
}

a.cat {
    display: flex;
    letter-spacing: 0.1em;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    background-color: #edf2f4;
    min-width: 128px;
    min-height: 26px;
    color: #29a6dd;
    border-radius: 13px;
    padding-bottom: 2px;
}

.news-item.item-list .title {
    width: 100%;
    padding-top: 15px;
}

.news-item.item-list .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #222222;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.56;
}

a.btn.btn-recruit {
    width: 227px;
    height: 65px;
    font-size: 1.7rem;
    font-family: "Zen Kaku Gothic New", serif;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background-color: #123851;
    border: 5px solid #30b0ff;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-radius: 27px;
    padding-left: 30px;
}

a.btn.btn-recruit img {
    margin-right: 30px;
}

a.btn.btn-recruit:hover {
    background-color: #30b0ff;
}

.color-1 {
    color: #1cc3ea;
}

.color-2 {
    color: #ff8e39;
}

.color-3 {
    color: #cd336b;
}

.color-4 {
    color: #1bb57b;
}

.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*中の要素*/

.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 1;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*左から右*/

.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #30B0FF;
    /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }
    50% {
        transform-origin: left;
        transform: scaleX(1);
    }
    50.001% {
        transform-origin: right;
    }
    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0;
}

@media(min-width:768px) {
    .news-item-imp>a {
        padding-right: 45px;
    }
}

a.btn.btn-main::after {
    transition: all 0.5s;
}

footer {
    position: relative;
}

.fade-in-letter {
    opacity: 0;
    display: inline-block;
    animation: fadeInLetter 0.5s forwards;
}

@keyframes fadeInLetter {
    to {
        opacity: 1;
    }
}

.header-main {
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.smooth {
    clip-path: inset( 0 0 100% 0);
    display: inline-block;
    transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}

.smooth.is-animated {
    clip-path: inset(0);
    opacity: 1;
}

.popup-hd .box-pop-video * {
    transition: all 0.5s;
}

.popup-hd:hover .box-pop-video * {
    opacity: 0.6;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.button-video svg g:nth-child(2) {
    animation: spin 15s linear infinite;
    display: block;
    transform-origin: 50% 50%;
}

.button-video svg {
    width: 100%;
    height: auto;
}

.img-work-wrap {
    display: flex;
    gap: 15px;
}

.img-work-wrap .img {}

.container.container-1375 {
    max-width: 1405px;
}

.home-work-right {
    padding-left: 25px;
    max-width: 645px;
}

.img-work-wrap {
    height: 800px;
    overflow: hidden;
    position: relative;
}

.img-work-wrap .img {
    height: 280px;
    margin-bottom: 15px;
}

.img-work-wrap .img:last-child {}

.img-work-wrap>div {
    display: flex;
    flex-direction: column;
    /* 6 images x 2 sets */
    animation: vertical-scroll-2 44.9s linear infinite;
    flex: 1;
}

.img-work-wrap>.right {
    display: flex;
    flex-direction: column;
    /* 6 images x 2 sets */
    animation: vertical-scroll 44.9s linear infinite;
    flex: 1;
}

.img-work-inner img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

@keyframes vertical-scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-885px);
    }
}

@keyframes vertical-scroll-2 {
    0% {
        transform: translateY(-885px);
    }
    100% {
        transform: translateY(0);
    }
}

.box-home-link svg {
    width: 100%;
    height: auto;
}

.box-home-link a {
    position: relative;
}

.box-home-link a .hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.box-home-link a .no-hover {
    opacity: 1;
}

.box-home-link a:hover .no-hover {
    opacity: 0;
}

.box-home-link a:hover .hover {
    opacity: 1;
}

.box-home-link a:hover {
    opacity: 1;
}
.about-03{
    padding-bottom: 390px;
}