@charset "UTF-8";

.sidemenu_lists_item .item_group {
    display: flex !important;
}

body {
    font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}

::-webkit-scrollbar {
    width: 10px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background-image: linear-gradient(0deg, #f82c88 0%, #ff40cc 100%);
}

html {
    line-height: 1.6;
}

body {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
}

#wrapper {
    position: relative;
    overflow: hidden;
}

figure img {
    width: 100%;
    max-width: 100%;
}

img {
    height: auto;
}

/* =============================================
  sidemenu　<please add code. by.arches>
============================================= */
.sidemenu {
    width: 100%;
    position: fixed;
    z-index: 2506;
    top: 0;
    left: 0;
}

@media only screen and (min-width: 1024px) {
    .sidemenu {
        width: 15.625%;
        height: 100%;
        background-color: #fff;
    }
}

.sidemenu.is_active {
    background-color: #fff;
}

.sidemenu_inner {
    display: flex;
    align-items: flex-start;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_inner {
        display: block;
        padding-top: 23px;
    }
}

.sidemenu_logo {
    padding: 5px 10px;
    background-color: #fff;
}

.sidemenu_logo .nav_link {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .sidemenu_logo .nav_link {
        padding: 5px 12px 5px 0;
    }
}

.sidemenu_logo img {
    width: 152px;
    display: block;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_logo img {
        width: 13vw;
        max-width: 247px;
    }
}

.sidemenu_nav {
    width: 100%;
    height: calc(100vh - 50px);
    position: fixed;
    top: 50px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media only screen and (min-width: 768px) {
    .sidemenu_nav {
        height: calc(100vh - 70px);
        top: 70px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_nav {
        height: calc(100vh - 115px);
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}

.sidemenu_nav.is_active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background-color: #fff;
}

.sidemenu_navbar {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.sidemenu_lists {
    width: 375px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) {
    .sidemenu_lists {
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists {
        padding-top: 9px;
    }
}

.sidemenu_lists_item {
    border-bottom: 1px solid #cbcbcb;
    padding: 8px 13px;
}

.sidemenu_lists_item.is_active .item_group {
    background-color: #000;
    padding-left: 30px;
}

@media only screen and (min-width: 768px) {
    .sidemenu_lists_item.is_active .item_group {
        padding-left: 57px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item.is_active .item_group {
        padding-left: 0;
    }
}

.sidemenu_lists_item.is_active .item_group::before {
    width: 2.96875vw;
}

.sidemenu_lists_item.is_active .item_group::after {
    opacity: 1;
    scale: 1;
}

.sidemenu_lists_item.is_open .item_arrow_icon {
    rotate: 0deg;
}

.sidemenu_lists_item_has_sub .item_group {
    padding-right: 11px;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item_has_sub .item_group {
        padding-right: clamp(0.4rem, 1.2152777778vw + -0.8444444444rem, 1.1rem);
    }
}

.sidemenu_lists_item_has_sub .item_group .nav_link {
    width: calc(100% - 28px);
}

@media only screen and (min-width: 768px) {
    .sidemenu_lists_item_has_sub .item_group .nav_link {
        width: calc(100% - 35px);
    }
}

.sidemenu_lists_item img {
    display: block;
    height: 18px;
}

@media only screen and (min-width: 768px) {
    .sidemenu_lists_item img {
        height: 22px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item img {
        height: 1.4vw;
        max-height: 22px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item .txt_top {
        max-height: 19px;
    }
}

.sidemenu_lists_item .nav_link {
    width: 100%;
    opacity: 1;
}

.sidemenu_lists_item .item_group {
    align-items: center;
    justify-content: space-between;
    background-color: #cbcbcb;
    position: relative;
    border-radius: 99px;
    transition: 550ms ease-out;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item .item_group {
        height: 2.6041666667vw;
        max-height: 50px;
    }

    .sidemenu_lists_item .item_group:hover {
        background-color: #000;
    }

    .sidemenu_lists_item .item_group:hover::before {
        content: "";
        width: 2.96875vw;
    }

    .sidemenu_lists_item .item_group:hover::after {
        opacity: 1;
        scale: 1;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item .item_group::before {
        content: "";
        flex-shrink: 0;
        transition: 300ms ease-out;
        width: 0;
        max-width: 57px;
    }
}

.sidemenu_lists_item .item_group::after {
    content: "";
    width: 30px;
    aspect-ratio: 1.1;
    background-image: url("./../image/neomon/img_sh01.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 3.5%;
    opacity: 0;
    transition: 550ms ease-out;
    translate: 0 -50%;
    scale: 0;
}

@media only screen and (min-width: 768px) {
    .sidemenu_lists_item .item_group::after {
        width: 55px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item .item_group::after {
        width: 2.8645833333vw;
        max-width: 55px;
    }
}

.sidemenu_lists_item .item_group .nav_link {
    padding: 14px 16px;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item .item_group .nav_link {
        padding: 0 clamp(1rem, 1.0416666667vw + -0.0666666667rem, 1.6rem);
    }
}

.sidemenu_lists_item .item_arrow_icon {
    width: 28px;
    display: block;
    aspect-ratio: 1;
    background-color: #07923c;
    position: relative;
    border-radius: 99px;
    flex-shrink: 0;
    transition: 550ms ease-out;
    rotate: 180deg;
    cursor: pointer;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item .item_arrow_icon {
        width: 35px;
        width: 1.8229166667vw;
    }
}

.sidemenu_lists_item .item_arrow_icon::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    border: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 9px solid #fff;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists_item .item_arrow_icon::after {
        top: 47%;
        left: 50%;
        translate: -50% -50%;
        border-left-width: 0.3125vw;
        border-right-width: 0.3125vw;
        border-bottom-width: 0.46875vw;
    }
}

.sidemenu_lists .btn_special {
    padding: 17px 14px;
}

.sidemenu_lists .btn_special .nav_link {
    width: 100%;
    display: block;
    position: relative;
}

.sidemenu_lists .btn_special img {
    width: 100%;
    display: block;
}

.sidemenu_lists .btn_special img:nth-child(2) {
    width: 44%;
    position: absolute;
    top: 50%;
    left: 48.5%;
    translate: -50% -50%;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_lists .btn_special img:nth-child(2) {
        width: 9vw;
        max-width: 134px;
    }
}

.sidemenu_sub {
    padding: 8px 0 8px 14px;
}

@media only screen and (min-width: 768px) {
    .sidemenu_sub {
        padding-left: 27px;
    }
}

.sidemenu_sub_item {
    position: relative;
    transition: 350ms ease-out;
    display: flex;
}

.sidemenu_sub_item:hover::after,
.sidemenu_sub_item.is_active::after {
    opacity: 1;
    scale: 1;
}

.sidemenu_sub_item:hover .nav_link,
.sidemenu_sub_item.is_active .nav_link {
    background-color: #000;
    padding-left: 34px;
}

@media only screen and (min-width: 768px) {

    .sidemenu_sub_item:hover .nav_link,
    .sidemenu_sub_item.is_active .nav_link {
        padding-left: 45px;
    }
}

@media only screen and (min-width: 1024px) {

    .sidemenu_sub_item:hover .nav_link,
    .sidemenu_sub_item.is_active .nav_link {
        padding-left: 0;
    }
}

.sidemenu_sub_item:hover .nav_link::before,
.sidemenu_sub_item.is_active .nav_link::before {
    width: 3vw;
}

.sidemenu_sub_item::after {
    content: "";
    width: 20px;
    aspect-ratio: 1.1;
    background-image: url("./../image/neomon/img_sh01.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 7px;
    opacity: 0;
    transition: 550ms ease-out;
    translate: 0 -50%;
    scale: 0;
}

@media only screen and (min-width: 768px) {
    .sidemenu_sub_item::after {
        width: 30px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_sub_item::after {
        width: 1.5625vw;
        max-width: 30px;
    }
}

.sidemenu_sub_item+.sidemenu_sub_item {
    margin-top: 8px;
}

.sidemenu_sub_item .nav_link {
    height: 37px;
    display: block;
    background-color: #ebebeb;
    border-radius: 99px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 1024px) {
    .sidemenu_sub_item .nav_link {
        height: 1.9270833333vw;
        max-height: 37px;
        padding: clamp(0.2rem, 1.3888888889vw + -1.2222222222rem, 1rem) clamp(0rem, 3.8194444444vw + -3.9111111111rem, 2.2rem);
        padding-left: 0;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_sub_item .nav_link::before {
        content: "";
        flex-shrink: 0;
        transition: 300ms ease-out;
        display: inline-block;
        width: 1vw;
        max-width: 50px;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_sub_item img {
        max-height: 21px;
    }
}

.sidemenu_toggler {
    width: 50px;
    height: 50px;
    background-color: #000;
    position: relative;
    margin-left: auto;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .sidemenu_toggler {
        width: 70px;
        height: 70px;
        transition: 550ms ease-out;
    }

    .sidemenu_toggler:hover .sidemenu_toggler_bar:nth-child(1) {
        translate: 5px 0;
    }

    .sidemenu_toggler:hover .sidemenu_toggler_bar:nth-child(4) {
        translate: -5px 0;
    }
}

@media only screen and (min-width: 1024px) {
    .sidemenu_toggler {
        display: none;
    }
}

.sidemenu_toggler.is_active .sidemenu_toggler_bar:nth-child(1) {
    opacity: 0;
    translate: -5px 0;
}

.sidemenu_toggler.is_active .sidemenu_toggler_bar:nth-child(2) {
    opacity: 1;
    rotate: -45deg;
}

.sidemenu_toggler.is_active .sidemenu_toggler_bar:nth-child(3) {
    rotate: 45deg;
}

.sidemenu_toggler.is_active .sidemenu_toggler_bar:nth-child(4) {
    opacity: 0;
    translate: 5px 0;
}

.sidemenu_toggler_box {
    width: 36px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.sidemenu_toggler_bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    border-radius: 1px;
    transition: 350ms ease-out;
}

.sidemenu_toggler_bar:nth-child(1) {
    top: -1px;
}

.sidemenu_toggler_bar:nth-child(2) {
    opacity: 0;
    top: calc(50% - 1px);
}

.sidemenu_toggler_bar:nth-child(3) {
    top: calc(50% - 1px);
}

.sidemenu_toggler_bar:nth-child(4) {
    top: calc(100% - 1px);
}

.sidecontent {
    width: 100%;
}

@media only screen and (min-width: 1024px) {
    .sidecontent {
        width: 84.375%;
        margin-left: auto;
    }
}

/* =============================================
  adjustment
============================================= */
.mt-0 {
    margin-top: 0px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

.mr-65 {
    margin-right: 65px !important;
}

.mb-65 {
    margin-bottom: 65px !important;
}

.ml-65 {
    margin-left: 65px !important;
}

.pt-65 {
    padding-top: 65px !important;
}

.pr-65 {
    padding-right: 65px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pl-65 {
    padding-left: 65px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mr-75 {
    margin-right: 75px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.ml-75 {
    margin-left: 75px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pr-75 {
    padding-right: 75px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pl-75 {
    padding-left: 75px !important;
}

/* =============================================
  text-align
============================================= */
.ta-c {
    text-align: center !important;
}

.ta-r {
    text-align: right !important;
}

.ta-l {
    text-align: left !important;
}

/* =============================================
  font-size
============================================= */
.fs-12 {
    font-size: 1.2rem !important;
}

.fs-14 {
    font-size: 1.2rem !important;
}

.fs-16 {
    font-size: 1.4rem !important;
}

.fs-20 {
    font-size: 1.4rem !important;
}

@media screen and (min-width: 768px) {
    .fs-12 {
        font-size: 1.2rem !important;
    }

    .fs-14 {
        font-size: 1.4rem !important;
    }

    .fs-16 {
        font-size: 1.6rem !important;
    }

    .fs-18 {
        font-size: 1.8rem !important;
    }

    .fs-20 {
        font-size: 2rem !important;
    }
}

/* =============================================
  font-weight
============================================= */
.fw-bold {
    font-weight: bold !important;
}

.fw-normal {
    font-weight: normal !important;
}

/* =============================================
  device
============================================= */
.sp-none {
    display: none;
}

.pc-none {
    display: block;
}

@media screen and (min-width: 768px) {
    .sp-none {
        display: block;
    }

    .pc-none {
        display: none;
    }
}

/* =============================================
  animation
============================================= */
@-webkit-keyframes slide_up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(60px);
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide_up {
    0% {
        opacity: 0;
        -webkit-transform: translateY(60px);
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide_down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}

@keyframes slide_down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

[data-delay="0.1s"] {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

[data-delay="0.2s"] {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

[data-delay="0.3s"] {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

[data-delay="0.4s"] {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

[data-delay="0.5s"] {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

[data-delay="0.6s"] {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

[data-delay="0.7s"] {
    animation-delay: 0.7s;
    transition-delay: 0.7s;
}

[data-delay="0.8s"] {
    animation-delay: 0.8s;
    transition-delay: 0.8s;
}

[data-delay="0.9s"] {
    animation-delay: 0.9s;
    transition-delay: 0.9s;
}

[data-delay="1s"] {
    animation-delay: 1s;
    transition-delay: 1s;
}

[data-delay="1.5s"] {
    transition-delay: 1.5s;
}

.js_inview[data-duration="1s"] {
    transition-duration: 1s;
}

.js_inview[data-duration="1.5s"] {
    transition-duration: 1.5s;
}

.js_inview[data-duration="2s"] {
    transition-duration: 2s;
}

.js_inview {
    opacity: 0;
    transition-property: opacity, transform, scale;
    transition-timing-function: ease-out;
    transition-duration: 1.2s;
}

.fade {
    opacity: 0;
}

.fade.is_show {
    opacity: 1;
}

.fadeup {
    transform: translate3d(0, 40px, 0);
}

.fadeup.is_show {
    opacity: 1;
    transform: none;
}

.fadedown {
    transform: translate3d(0, -40px, 0);
}

.fadedown.is_show {
    opacity: 1;
    transform: none;
}

.faderight {
    transform: translate3d(40px, 0, 0);
}

.faderight.is_show {
    opacity: 1;
    transform: none;
}

.fadeleft {
    transform: translate3d(-40px, 0, 0);
}

.fadeleft.is_show {
    opacity: 1;
    transform: none;
}

.bounce_in {
    opacity: 0;
    scale: 0.8;
    animation-duration: 600ms;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

.bounce_in.is_show {
    animation-name: bounce_in;
}

@keyframes bounce_in {
    0% {
        opacity: 0;
        scale: 0.8;
    }

    65% {
        scale: 1.1;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}

.container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

@media only screen and (min-width: 768px) {
    .container {
        max-width: 1340px;
        margin-right: auto;
        margin-left: auto;
    }
}

.container_fluid {
    padding-left: 20px;
    padding-right: 20px;
}

html.is_loading #loadding {
    opacity: 1;
    pointer-events: all;
}

html.is_loading body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

#loadding {
    position: fixed;
    z-index: 999999;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(0deg, #02b848 0%, #0aff33 100%);
    opacity: 0;
    transition: opacity 1s ease-out 0.5s;
}

.three-body {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    animation: spin 2.75s infinite linear;
}

.three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
}

.three-body__dot:after {
    content: "";
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: #fff;
    border-radius: 50%;
}

.three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 1.1s infinite ease-in-out;
    animation-delay: -0.33s;
}

.three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 1.1s infinite -0.165s ease-in-out;
}

.three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 1.1s infinite ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes wobble1 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-66%) scale(0.65);
        opacity: 0.8;
    }
}

@keyframes wobble2 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(66%) scale(0.65);
        opacity: 0.8;
    }
}

/*cookie*/
.cookie_wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3057ff;
    color: #000;
    z-index: 30;
    padding: 10px 0;
}

.cookie_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    padding: 0 25px;
}

@media only screen and (min-width: 768px) {
    .cookie_container {
        flex-wrap: nowrap;
    }
}

.cookie_txt {
    width: 100%;
    font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
    .cookie_txt {
        width: 75%;
        padding-right: 15px;
    }
}

.cookie_close {
    width: 90%;
    margin: 10px auto 0;
}

@media only screen and (min-width: 768px) {
    .cookie_close {
        margin-top: 0;
        flex-shrink: 0;
        width: 25%;
    }
}

.cookie_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 10px 6px;
    text-decoration: none;
    border: solid 2px #000;
    background: #000;
    border-radius: 30px;
    color: #fff;
}

@media only screen and (min-width: 768px) {
    .cookie_btn {
        transition: all 0.5s;
        padding: 10px 10px 11px;
    }

    .cookie_btn:hover {
        opacity: 0.7;
    }
}

.slider_arrow {
    width: calc(100% + 20px);
    height: 0;
    position: absolute;
    z-index: 2;
    top: calc(50% - 20px);
    left: -10px;
    display: flex;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) {
    .slider_arrow {
        width: calc(100% + 6px);
        top: calc(50% - 17px);
        left: -4px;
    }
}

.slider_arrow .item {
    width: 28px;
    height: 42px;
    display: block;
    position: relative;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .slider_arrow .item {
        width: 63px;
        height: 92px;
        transition: 300ms ease-out;
    }
}

.slider_arrow .item::after {
    content: "";
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
}

.slider_arrow .item_prev::after {
    background-image: url("./../image/neomon/icon_arrow_left.webp");
}

@media only screen and (min-width: 768px) {
    .slider_arrow .item_prev:hover {
        translate: -5px 0;
    }
}

.slider_arrow .item_next::after {
    background-image: url("./../image/neomon/icon_arrow_right.webp");
}

@media only screen and (min-width: 768px) {
    .slider_arrow .item_next:hover {
        translate: 5px 0;
    }
}

.slider_arrow_pink .item_prev::after {
    background-image: url("./../image/neomon/icon_arrow_left_pink.webp");
}

.slider_arrow_pink .item_next::after {
    background-image: url("./../image/neomon/icon_arrow_right_pink.webp");
}

/** -- ▷ header -- */
/** -- ▷ footer -- */
.footer {
    background-color: #000;
    border: 1px solid #707070;
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer_leading {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .footer_leading {
        font-size: 1.6rem;
    }
}

.footer_leading_txt {
    display: inline-block;
    border: 1px solid #fff;
    padding: 10px;
}

.footer_copyright {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

@media only screen and (min-width: 768px) {
    .footer_copyright {
        font-size: 1.6rem;
        margin-top: 28px;
    }
}

.title_primary {
    width: 80%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {
    .title_primary {
        width: 65%;
        max-width: 816px;
        height: auto;
    }
}

.title_primary img {
    width: 100%;
    display: block;
}

.js_open_video {
    cursor: pointer;
}

@media only screen and (min-width: 768px) {

    .js_open_video:hover figure,
    .js_open_video:hover video,
    .js_open_video:hover iframe {
        opacity: 0.8;
    }
}

.js_open_video figure,
.js_open_video video,
.js_open_video iframe {
    transition: 300ms ease-out;
}

.video_popup {
    position: fixed;
    z-index: 10000;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 300ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_popup.is_open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.video_popup_mask {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.video_popup_block {
    padding: 40px 20px;
    width: 100%;
    aspect-ratio: 1.6;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {
    .video_popup_block {
        max-width: 1024px;
        padding: 40px;
    }
}

.video_popup_close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #000;
    cursor: pointer;
    transition: 300ms ease-out;
}

@media only screen and (min-width: 768px) {
    .video_popup_close {
        right: 40px;
    }

    .video_popup_close:hover {
        background-color: #fff;
    }

    .video_popup_close:hover::after,
    .video_popup_close:hover::before {
        background-color: #000;
    }
}

.video_popup_close::before,
.video_popup_close::after {
    content: "";
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 2px;
    translate: -50% -50%;
    transition: inherit;
}

.video_popup_close::after {
    rotate: 45deg;
}

.video_popup_close::before {
    rotate: -45deg;
}

.video_popup_iframe {
    width: 100%;
    height: 100%;
}

.video_popup_iframe iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.totop {
    width: 40px;
    height: 40px;
    background-image: linear-gradient(0deg, #f82c88 0%, #ff40cc 100%);
    border: 2px solid #fff;
    border-radius: 99px;
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 40px;
    cursor: pointer;
    translate: 0 100px;
    transition: 500ms ease-out;
}

@media only screen and (min-width: 768px) {
    .totop {
        width: 60px;
        height: 60px;
    }

    .totop:hover {
        opacity: 0.6;
    }
}

.totop.is_show {
    translate: none;
}

.totop.is_footer {
    position: absolute;
    top: -20px;
}

@media only screen and (min-width: 768px) {
    .totop.is_footer {
        top: -30px;
    }
}

.totop::after {
    content: "";
    border: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: 12px;
    left: 12px;
}

@media only screen and (min-width: 768px) {
    .totop::after {
        top: 22px;
        left: 22px;
    }
}