@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&family=Cinzel:wght@400..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1:wght@400;500;600&family=Zen+Kaku+Gothic+Antique:wght@500&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: #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: 15px;
    opacity: 0;
    transition: all .3s;
    z-index: 99;
}

#go-top.show {
    opacity: 1;
    bottom: 70px;
}

#go-top a {
    display: flex;
    flex-direction: column;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    overflow: hidden;
    background-image: url(../images/index/btn-go-top.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#go-top a:hover {
    opacity: 1;
    background-image: url(../images/index/btn-go-top-2.svg);
}

#go-top a img {
    margin: 0 auto;
}

.ff-kaku {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.ff-cinzel {
    font-family: "Cinzel", serif;
}

.ff-biz {
    font-family: "BIZ UDPMincho", serif;
}

.ff-mincho {
    font-family: "Shippori Mincho B1", 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;
}

@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;
}

.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 0.8s 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(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);
    }
}

.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: 315px;
    line-height: 1;
    padding: 0;
    position: relative;
}

.header-inner {
    position: static;
    padding-left: 45px;
    padding-top: 0;
    padding-bottom: 24px;
}

#logo .header-logo {
    width: 100%;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
}

.header-main .main-menu .nav {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.mega-menu {
    left: 0;
    position: absolute;
    text-align: left;
    width: 100%;
    text-align: center;
    padding-top: 0px;
    opacity: 0;
    transition: all .3s ease;
    z-index: -1;
    visibility: hidden;
    top: 117px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 5px;
}

.header-main .main-menu .nav>li.nav-service:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 122px;
    z-index: 12;
}

.header-main .main-menu .nav>li {
    margin: 0;
    position: relative;
    transition: .3s;
    padding-bottom: 0px;
    padding: 0;
    z-index: 1;
}

.header-main .main-menu .nav>li:last-child {
    border-right: none;
}

.header-main .main-menu .nav>li>a {
    font-weight: 500;
    letter-spacing: 0.075em;
    padding: 0 25px;
    color: #333;
    text-align: center;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.header-main .main-menu .nav>li>a:hover {
    opacity: 1;
    color: #fff;
}

@media (min-width: 768px) {
    .header-main .main-menu .nav>li>a::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 0;
        height: calc(100% + 6px);
        background: #ef8200;
        transition: all .3s;
        z-index: -1;
    }
    .header-main .main-menu .nav>li.current>a::after,
    .header-main .main-menu .nav>li:hover>a::after {
        width: 100%;
    }
    a.btn.btn-view img {
        padding-left: 10px;
    }
}

a.menu-btn {
    width: 60px;
    min-height: 60px;
    position: absolute;
    border: none;
    top: 0;
    right: 0;
    z-index: 8999;
    background-color: #00552e;
    transition: none;
    height: auto;
    box-shadow: none;
    border-bottom-left-radius: 15px;
}

a.menu-btn span {
    display: block;
    position: absolute;
    height: 1px;
    width: 24px;
    top: 13px;
    background-color: #fff;
    left: 18px;
    transition: all 0.5s;
    border-radius: 10px;
}

a.menu-btn span:nth-child(2) {
    top: 22px;
}

a.menu-btn span:nth-child(3) {
    top: 31px;
}

a.menu-btn::after {
    content: 'MENU';
    left: 50%;
    transform: translateX(-50%);
    top: 38px;
    position: absolute;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    width: max-content;
    text-align: center;
    font-family: 'Cinzel', serif;
}

a.menu-btn.open:after {
    content: "CLOSE";
}

body.menu-open header:before {
    display: none;
}

a.menu-btn.open span {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 23px;
    /* left: 21px; */
    width: 22px;
}

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: 45px 0;
}

.breadcrums ul {
    display: flex;
    justify-content: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.breadcrums ul li>a {
    font-size: 1.7rem;
    color: #b0b043;
    text-decoration: underline;
}

.breadcrums ul li {
    position: relative;
    margin-bottom: 0;
}

.breadcrums ul li:not(:last-child) {
    margin-right: 40px;
}

.breadcrums ul li span {
    font-size: 1.7rem;
    color: #333333;
}

.breadcrums ul li span br {
    display: none;
}

.breadcrums ul li:not(:nth-last-child(1)):after {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    top: 55%;
    transform: translateY(-50%);
    right: -26px;
    font-size: 1.4rem;
    background-color: #a0a0a0;
}

.page-anchor {
    padding-top: 37px;
    background-image: linear-gradient(-90deg, rgba(71, 192, 232, .2) 0%, rgba(182, 107, 168, .2) 49%, rgba(235, 97, 84, .2) 98%);
    padding-bottom: 45px;
}

ul.list-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    background-color: #fff;
    border-radius: 50px;
    padding-top: 25px;
    padding-bottom: 35px;
    padding-right: 50px;
    padding-left: 50px;
}

ul.list-anchor li {
    width: calc(20% - 20px);
    margin-right: 24px;
}

ul.list-anchor li:last-child,
ul.list-anchor li:nth-child(5n) {
    margin-right: 0;
}

ul.list-anchor li a {
    display: flex;
    align-items: flex-end;
    font-size: 1.5rem;
    min-height: 62px;
    justify-content: flex-start;
    color: #333333;
    position: relative;
    padding: 10px 0px;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.33;
    letter-spacing: 0.1em;
}

ul.list-anchor li a:hover {
    color: #CF145A;
    opacity: 1;
}

ul.list-anchor li a::before {
    content: "";
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(71, 192, 232, 1) 0%, rgba(182, 107, 168, 1) 49%, rgba(235, 97, 84, 1) 98%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}

ul.list-anchor li a::after {
    content: "";
    width: 5px;
    height: 18px;
    background-image: url(../images/job/icon-down.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 12px;
    right: 10px;
    transition: .3s;
}

.box-scroll {
    position: absolute;
    bottom: -70px;
    right: -65px;
    height: 130px;
    z-index: 2;
    color: #ec5a24;
}

.loading-active main {
    opacity: 0;
}

.box-scroll::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 1px;
    height: 130px;
    animation: pathmove 1.8s ease-in-out infinite;
    /* opacity: 0; */
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
}

a.scroll {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 300;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0px;
        opacity: 0;
    }
    30% {
        height: 130px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 100px;
        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: -40px;
}

ul.slick-dots li {
    width: 18px;
    height: 18px;
    border: 1px solid #ec5a24;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 5px;
}

ul.slick-dots li.slick-active {
    background-color: #ec5a24;
}

ul.slick-dots li button {
    opacity: 0;
    padding: 0;
    display: flex;
    width: 100%;
    height: 100%;
}


/* header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 9;
}

header.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

header.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

header {
    position: relative;
}

header:after {
    content: "";
    width: 554px;
    height: 277px;
    background-image: url(../images/index/after-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
}

a.btn.btn-contact {
    width: 250px;
    height: 154px;
    border-bottom-left-radius: 47px;
    background: linear-gradient(32deg, rgba(71, 192, 232, 1) 0%, rgba(182, 107, 168, 1) 49%, rgba(235, 97, 84, 1) 98%);
    border: 2px solid #fff;
    border-width: 0 0 2px 2px;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #fff;
    flex-direction: column;
    padding-top: 20px;
    justify-content: flex-start;
    font-weight: 500;
}

a.btn.btn-contact:hover {
    opacity: 0.6;
}

a.btn.btn-contact h2 {
    font-size: 6rem;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: 'Caveat', cursive;
    padding-bottom: 10px;
    font-weight: normal;
}

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;
}

.header-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}


/* .news-item.item-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 25px 20px 30px;
    position: relative;
    margin-bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
    border-bottom: 1px solid #c8c8c8;
}

.news-item.item-list:last-child {
    border-bottom: none;
}

.news-item.item-list:hover::before {
    right: 0;
}

.news-item .date {
    width: 110px;
    color: #757575;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.075em;
}

a.cat {
    width: 110px;
    min-height: 25px;
    display: flex;
    background-color: #b54919;
    border-radius: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.news-item.item-list .title {
    width: 100%;
    padding-top: 15px;
}

.news-item.item-list .title a {
    text-decoration: underline;
} */

.color-1 {
    color: #ef8200;
}

.color-2 {
    color: #66240b;
}

.color-3 {
    color: #0b5c31;
}