@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100;700&display=swap');
:root {
    /* ------------color------------ */
    --black: #333;
    --white: #FFFFFF;
    --gray: #454545;
    --bule: #078BD2;
    --purple: #9747FF;
}
::placeholder {
    color: #BABABA;
}
input, select, textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0px;
    border: none;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

h2 {
    font-size: 52px;
}
h3 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
}
h4 {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 54px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 18px;
    }
}

/* ------------フォント------------ */
.noto-sans-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.be-vietnam-pro {
    font-family: "Be Vietnam Pro", sans-serif;
    font-style: normal;
}
.be-vietnam-pro-thin {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.be-vietnam-pro-extralight {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.be-vietnam-pro-light {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.be-vietnam-pro-regular {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.be-vietnam-pro-medium {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.be-vietnam-pro-semibold {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.be-vietnam-pro-bold {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.be-vietnam-pro-extrabold {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.be-vietnam-pro-black {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.be-vietnam-pro-thin-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.be-vietnam-pro-extralight-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.be-vietnam-pro-light-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.be-vietnam-pro-regular-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.be-vietnam-pro-medium-italic {
font-family: "Be Vietnam Pro", sans-serif;
font-weight: 500;
font-style: italic;
}

.be-vietnam-pro-semibold-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.be-vietnam-pro-bold-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.be-vietnam-pro-extrabold-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.be-vietnam-pro-black-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}
/* ------------フォント------------ */

/* ------------レスポンシブ------------ */
.pc {
    display: block;
}
.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
/* ------------レスポンシブ------------ */

/* ------------共通パーツ------------ */

.content_wrap {
    max-width: 1100px;
    width: 80%;
    margin: auto;
}
.content_margin {
    padding-top: 160px;
    padding-bottom: 160px;
}

.sec_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.sec_title, .sec_title span {
    letter-spacing: 0.04rem;
    background: #333;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    width: fit-content;
    animation: AnimationTitle 5s ease infinite;
}

@keyframes AnimationTitle {
    0%{background-position:0% 50%}
    50%{background-position:50% 50%}
    100%{background-position:0% 50%}
}
.sec_subtitle {
    font-size: 14px;
    letter-spacing: 0.04rem;
    margin-top: 10px;
}
.sec_subtitle::before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #078BD2;
    margin-right: 10px;
}
.sec_subtitle span{
    vertical-align: text-bottom;
}
.sec_copy {
    letter-spacing: 0.04rem;
    line-height: 1.5;
    margin-top: 46px;
}
.sec_description {
    font-size: 16px;
    letter-spacing: 0.04rem;
    line-height: 1.7;
    margin-top: 46px;
    text-align: justify;
}
.sec_btn {
    margin-top: 48px;
}
.sec_btn_pc {
    display: block;
}
.sec_btn_sp {
    display: none;
}
.view_more_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.view_more_btn span {
    font-size: 18px;
    letter-spacing: 0.04rem;
    line-height: 1.5;
    transition: all 0.2s;
}
.view_more_btn svg, .view_more_btn svg rect,.view_more_btn svg path {
    transition: all 0.2s;
}
.view_more_btn:hover span {
    color: var(--bule);
}
.view_more_btn:hover svg {
    margin-left: 4px;
}
.view_more_btn:hover svg rect,.view_more_btn:hover svg path {
    stroke: var(--bule)
}

@media screen and (min-width: 1600px) {
    .content_wrap {
        max-width: 1300px;
    }
}

@media screen and (max-width: 1024px) {
    .content_wrap {
        width: 90%;
    }
}

@media screen and (max-width: 767px) {
    .content_margin {
        padding: 100px 0;
    }
}

/* ------------共通パーツ------------ */

/* ------------下層共通パーツ------------ */
#underPageKv {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 340px;
    width: 100%;
}
.under_page_kv_content {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding-left: 170px;
    padding-left: min(170px, 11.8vw);
}
.under_page_kv_title {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.07rem;
}
.under_page_kv_subtitle {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04rem;
}
.under_page_kv_subtitle::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    #underPageKv {
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        height: 340px;
        width: 100%;
    }
    .under_page_kv_content {
        padding-left: 20px;
    }
    .under_page_kv_title {
        font-size: 30px;
        line-height: 1.5;
    }
    .under_page_kv_subtitle {
        font-size: 14px;
        line-height: 1.1;
    }
    .sec_btn_pc {
        display: none;
    }
    .sec_btn_sp {
        display: block;
    }
}
/* ------------下層共通パーツ------------ */

/* ------------header------------ */
.header {
    width: 100vw;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header--scrolled {
    background-color: rgba(0, 0, 0, 0.5);
}
.header_fixed {
    display: none;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 100;
}
.header_inner {
    height: 100%;
	padding: 0 40px 0 30px;
    padding: 0 calc(40px + (100vw - 100%)) 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header_logo {
    width: 170px;
    display: block;
}
.header_menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.header_list a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    transition: all 0.3s;
    mix-blend-mode: difference;
}
.header.fixType .header_list a {
    color: #000;
}
.header_contact a {
    background-color: var(--bule);
    padding: 11px 23px;
    border-radius: 9999px;
    box-sizing: border-box;
    transition: all 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.1;
}
.header.fixType .header_contact a {
    color: #fff;
}
.header_contact a {
    text-align: center;
}

.header_hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    position: relative;
}
.header_hamburger span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    height: 1px;
    background: #fff;
    width: 28px;
}
.header_hamburger span:nth-of-type(1) {
    top:10px; 
}

.header_hamburger span:nth-of-type(2) {
    top:20px;
}

.header_hamburger span:nth-of-type(3) {
    top:30px;
}

.header_hamburger.active span:nth-of-type(1) {
    top: 12px;
    left: 7px;
    transform: translateY(7px) rotate(-45deg);
    width: 26px;
}
.header_hamburger.active span:nth-of-type(2) {
opacity: 0;/*真ん中の線は透過*/
}
.header_hamburger.active span:nth-of-type(3){
    top: 26px;
    left: 7px;
    transform: translateY(-7px) rotate(45deg);
    width: 26px;
}

.header__nav {
    display: none;
}

.header_list {
    position: relative;
}
.header_list:not(.header_contact) a::after {
	content: '';
	height: 1px;
	bottom: -8px;
	width: 100%;
	display: block;
	position: absolute;
	transform: scale(0, 1); 
    transition: transform .5s;
	transform-origin: left top;
    background-color: #fff;
}
.header.fixType .header_list:not(.header_contact) a::after {
    background-color: #000;
}
.header_list:hover a::after {
	background-color: #fff;
	transform: scale(1, 1);
}
.header_list svg path {
    transition: all 0.3s;
}
.header_list:hover svg path {
    fill: var(--bule);
}

.header.fixType .header_list:hover a::after {
    background-color: #000;
}
.header_contact:hover a, .header.fixType .header_contact:hover a {
    background-color: #fff;
}
.header_contact:hover a, .header.fixType .header_contact:hover a {
    color: var(--bule);
}
.header_fixed .header_list:not(.header_contact) a::after {
    background-color: #000;
    bottom: -6px;
}

@media screen and (max-width: 767px) {
    .header {
        position: fixed;
        height: 80px;
    }
    .header_logo {
        width: 110px;
    }
    .header_menu_wrap {
        display: none;
    }

    .header_hamburger {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 2000;
    }

    /* header_nav */
    .header__nav {
        display: block;
        background-color: #00000050;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100dvh;
        z-index: 1000;
        transition: all 0.5s;
    }
    .header__nav.active {
        right: 0px;
    }
    .header_nav_logo {
        width: 97px;
    }
    .header_nav_menu {
        color: #fff;
        width: 100%;
    }
    .header_nav_inner {
        margin-top: 60px;
        padding: 0px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .header_nav_list {
        border-bottom: 1px solid #C4C4C4;
    }
    .header_nav_list a {
        display: block;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 0.04rem;
        padding: 20px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .header_nav_list a svg {
        width: 24px;
        height: 24px;
    }
    .header_memu_icon {
        margin-top: 20px;
        display: block;
        width: fit-content;
    }
    .header_nav_contact {
        width: 240px;
        height: 50px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: var(--bule);
        border-radius: 50px;
        gap: 6px;
        color: #fff;
        box-sizing: border-box;
        transition: all 0.3s;
    }
    .header_nav_contact span {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.7;
        letter-spacing: 0.04rem;
    }
    .header_nav_contact:hover {
        border: 1px solid var(--bule);
        background-color: #fff;
        color: var(--bule);
    }
    .header_nav_contact:hover svg path {
        fill: var(--bule);
    }
}
/* ------------header------------ */

/* ------------footer------------ */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 70px;
}
.footer_upper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_info_wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
}
.footer_logo {
    width: 170px;
}
.footer_logo img {
    width: 100%;
}
.footer_info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer_info .company_name {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.07rem;
    line-height: 1.7;
}
.footer_info .company_adress {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.07rem;
    line-height: 1.7;
}
.footer_info .company_tel {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08rem;
}
.footer_menu_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 90px;
}
.footer_menu {
    display: flex;
    flex-direction: row;
}
.footer_list {
    padding: 0 30px;
    transition: all 0.3s;
}
.footer_list a {
    transition: all 0.3s;
}
.footer_list:hover a {
    opacity: 0.6;
}
.footer_list:first-child {
    padding: 0 24px 0 0;
}
.footer_list:last-child {
    padding: 0 0 0 24px;
}
.footer_list:not(:last-child) {
    border-right: 1px solid #fff;
}
.footer_list a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04rem;
}
.sns_link a {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 16px;
}
.sns_link p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04rem;
    line-height: 1.5;
}
.footer_bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    margin-top: 50px;
}
.copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04rem;
}
.pagetop-sp {
    display: none;
}

@media screen and (max-width:1200px) {
    .footer_list {
        padding: 0 20px;
    }
    .footer_list:first-child {
        padding: 0 20px 0 0;
    }
    .footer_list:last-child {
        padding: 0  0 0 20px;
    }
}

@media screen and (max-width: 1024px) {
    .footer_menu {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .footer_list:first-child {
        padding: 0 20px;
    }
}

@media screen and (max-width:767px) {
    .footer {
        padding: 76px 5%;
        position: relative;
    }
    .footer_upper {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .footer_info_wrap {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding: 0 25px;
    }
    .footer_info {
        width: 100%;
    }
    .footer_menu_wrap {
        flex-direction: column;
        gap: 24px;
    }
    .footer_menu {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 0px;
    }
    .footer_list a {
        font-weight: 400;
        font-size: 14px;
    }
    .footer_list,.footer_list:first-child,.footer_list:last-child {
        padding: 0 25px;
    }
    .pagetop {
        display: none;
    }
    .pagetop-sp {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
    }
    .copyright {
        text-align: center;

    }
}
/* ------------footer------------ */

/* ------------cta------------ */
#cta {
    padding: 100px 0;
    background-image: url(../images/pc/cta.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
.cta_inner {
    background-color: #fff;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    border-radius: 4px;
}
.cta_inner h3 {
    line-height: 1.5;
    letter-spacing: 0.07rem;
    font-weight: 700;
    text-align: center;
}
.cta_text{
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}
.cta_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.contact_btn {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04rem;
    color: #fff;
    background-color: var(--bule);
    border-radius: 999px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 24px 40px;
    border: 1px solid var(--bule);
    transition: all 0.3s;
}

.contact_btn:hover {
    background-color: #fff;
    border: 1px solid var(--bule);
    color: var(--bule);
}
.contact_btn svg rect, .contact_btn svg path {
    transition: all 0.3s;
}
.contact_btn:hover svg rect, .contact_btn:hover svg path {
    fill: var(--bule);
}

.contact_btn svg {
    width: 25px;
}
.tel_btn{
    align-items: center;
    text-align: center;
    transition: 0.3s;
}
.tel_btn:hover{
    opacity: 0.6;
}
.tel_btn div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.tel_btn div img{
    width: 40px;
}
.tel_number{
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
}
.tel_open{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.submit_btn {
    transition: all 0.3s;
    border: none;
}
.submit_btn:hover {
    background-color: #fff;
    color: var(--bule);
}
.submit_btn:hover svg {
    right: 16px;
}
.submit_btn:hover svg path {
    stroke: var(--bule);
}
.pagetop svg {
    transition: all 0.3s;
}
.pagetop:hover svg {
    opacity: 0.6;
}
@media screen and (max-width: 1024px) {
    .cta_contact{
        flex-flow: column;
        gap: 30px;
    }
    .cta_inner{
        padding: 60px 40px;
    }
}

@media screen and (max-width: 767px) {
    #cta {
        padding: 50px 0;
        background-image: url(../images/sp/cta.jpg);
    }
    .cta_inner{
        padding: 45px 15px;
    }
    .cta_text{
        font-size: 14px;
    }
    .cta_contact{
        width: 100%;
    }
    .contact_btn {
        padding: 16px 0;
        width: 100%;
    }
    .contact_btn svg {
        width: 20px;
    }
    .tel_number{
        font-size: 32px;
    }
    .tel_btn div img {
        width: 25px;
    }
}
/* ------------cta------------ */

/* ------------animation------------ */
.delay-02 { animation-delay: 0.2s;}
.delay-04 { animation-delay: 0.4s;}
.delay-06 { animation-delay: 0.6s;}
.delay-08 { animation-delay: 0.8s;}
.delay-10 { animation-delay: 1s;}
.delay-12 { animation-delay: 1.2s;}
.delay-14 { animation-delay: 1.4s;}
.delay-16 { animation-delay: 1.6s;}
.delay-18 { animation-delay: 1.8s;}
.delay-20 { animation-delay: 2s;}
.delay-22 { animation-delay: 2.2s;}
.delay-24 { animation-delay: 2.4s;}
.delay-26 { animation-delay: 2.6s;}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    display: inline-block;
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
}

.js_up_anime {
    display: flex;
    overflow: hidden;
}
.js_up_anime span {
    display: block;
    transform: translate(0, 105%);
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.7s;
}
.js_up_anime.active span {
    transform: translate(0, 0);
}

.js_up_anime-init {
    display: flex;
    overflow: hidden;
}
.js_up_anime-init span {
    display: block;
    transform: translate(0, 105%);
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.7s;
    transition-delay: 2.2s;
}
.js_up_anime-init.active span {
    transform: translate(0, 0);
}

.js_right_anime {
    display: flex;
    overflow: hidden;
}
.js_right_anime span {
    display: block;
    transform: translate(-105%, 0);
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.7s;
}
.js_right_anime.active span {
    transform: translate(0, 0);
}

.js_fadeup_anime {
    opacity: 0;
    transform: translate(0, 10%);
    transition: all cubic-bezier(.17,.67,.57,.96) 0.8s;
}
.js_fadeup_anime.active {
    opacity: 1;
    transform: translate(0, 0);
}

@media screen and (min-width: 768px) {
    .js_fadedown_anime {
        opacity: 0;
        transform: translate(0, -10%);
        transition: all cubic-bezier(.17,.67,.57,.96) 0.8s;
    }
    .js_fadedown_anime.active {
        opacity: 1;
        transform: translate(0, 0);
    }
}
/* ------------animation------------ */

/* ------------loading------------ */

.load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    /* transition: transform 1.2s cubic-bezier(1,0,.06,.98); */
    pointer-events: none;
}

.load_bk_black {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top:0;
    right: 0;
    z-index: 1000;
}

.load_bk_white {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top:0;
    right: 0;
    z-index: 999;
}

/* .load::before {
    content: "";
    width: 100%;
    height: 100vh;
    position: absolute;
    top:0;
    right: 100%;
    background-color: #fff;
} */

.load img {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 1001;
}

.load_text {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.slide_right {
    transform: translateX(100%);
    opacity: 1;
    transition: transform 0.6s cubic-bezier(.65,.11,.58,.97);
}
.slide_right2 {
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(.18,0,.11,1) .36s;
}

@media screen and (max-width: 767px) {
    .slide_right {
        transition: transform 0.4s cubic-bezier(.65,.11,.58,.97);
    }
    .slide_right2 {
        transition: transform 0.4s cubic-bezier(.18,0,.11,1) .3s;
    }
}

/* ------------loading------------ */
