@charset "UTF-8";

body {
    background-image: url(../img/bg/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

p,li,dl,h2 {
    color: #333;
}


.main {
    position: relative;
    width: 85%;
}

.logo {
    position: absolute;
    z-index: 100;
}

.logo img {
    width: 15vw;
    margin: 10px 0 0 10px;
    vertical-align: bottom;
}

.tel {
    position: absolute;
    padding: 0.2vw 1vw 0vw 1vw;
    right: -5vw;
    top: 9vw;
    border: #fff solid 2px;
    z-index: 100;
    font-size: 1.6vw;
    color: #fff;
    font-weight: 100;
    transform: rotate(-90deg);
    font-family: "Allura", cursive;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    cursor: pointer;
}

.tel:hover {
    transform: rotate(-90deg)scale(1.1);
    transition: 0.3s;
}

.tel a {
    text-decoration: none;
    color: #fff;
}

#stage {
    position: relative;
    width: 100%;
    max-width: 1700px;
    background: #ddd;
}

.pic {
    position: absolute;
}

.pic img {
    width: 100%;
    height: auto;
    opacity: 0;
    -moz-animation: imgTrans 40s infinite;
    -webkit-animation: imgTrans 40s ease-in infinite;
    animation: imgTrans 40s infinite;

}

#photo1 img {
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

#photo2 img {
    -moz-animation-delay: 8s;
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}

#photo3 img {
    -moz-animation-delay: 16s;
    -webkit-animation-delay: 16s;
    animation-delay: 16s;
}

#photo4 img {
    -moz-animation-delay: 24s;
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
}

#photo5 img {
    -moz-animation-delay: 32s;
    -webkit-animation-delay: 32s;
    animation-delay: 32s;
}

@-webkit-keyframes imgTrans {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }

    18% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes imgTrans {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }

    18% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes imgTrans {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }

    18% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.main_tb {
    display: none;
}


/* ハンバーグ */

/* ここから下がハンバーガーメニューに関するCSS */

/* チェックボックスを非表示にする */

.nav {
    position: fixed;
    right: 20px;
    z-index: 150;
    top: 0;
    transition: .2s;
    opacity: 0;
}

.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
}

.drawer_open span::before {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
}

.drawer_open span:after {
    content: 'menu';
    display: block;
    height: 3px;
    width: 25px;
    transition: 0.5s;
    position: absolute;
    font-family: "Petit Formal Script", cursive;
    font-weight: 600;
    font-style: normal;
}


/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 10px;
}

.drawer_open span:before {
    bottom: 15px;

}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    transform: rotate(45deg);
    width: 35px;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    opacity: 0;

}

#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(-90deg);

}

/* メニューのデザイン*/
.nav_content {
    width: 20%;
    min-width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background-color: rgba(216, 190, 255, 0.7);
    backdrop-filter: blur(5px);
    transition: .5s;
}

.hun_icon {
    display: flex;
    justify-content: center;

}

.sns {
    margin: 10px 7px 5px 7px;
}

.sns_img {
    width: 3vw;
    min-width: 25px;
    max-width: 40px;
    cursor: pointer;
}

.sns_img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* メインメニューFlex */

main {
    background-image: url(../img/bg/backimg2_2_white.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 60vw 10%;
}

.mainflex {
    display: flex;
}

.main_list {
    list-style: none;
    width: 15%;
    margin: auto 0 2% 0;
}

.main_nav_item {
    text-align: center;
    margin: 0 5% 0 0;
    vertical-align: bottom;
}

.main_nav_item a {
    text-decoration: none;
    color: #444;
    cursor: pointer;
}

/* メニュー黒ポチを消す */
.nav_list {
    list-style: none;
    margin: 100px 0 0 0;
}

.nav_item {
    text-align: center;
    margin: 25px 0;
}

.nav_item a {
    text-decoration: none;
    color: #444;
    cursor: pointer;
}

.en_color {
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(15px, 1.5vw, 18px);
    color: #9F84FF;
}

.jp_color {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(15px, 1.6vw, 20px);
    color: #9F84FF;
}


.en {
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(15px, 1.5vw, 18px);
}

.jp {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(15px, 1.6vw, 20px);
}


/* 文字回転 */

.rotate {
    /* 3D変形させた際の、奥行きを指定 */
    perspective: 300px;
    text-decoration: none;
    display: inline-block;
}

.rotate>span {
    /* 背面の要素（2個目のspanタグ）を非表示にする */
    backface-visibility: hidden;
    /* アニメーション効果を0.5秒間で適用 */
    transition: transform .5s;
    display: block;
    height: 20px;
}

/* ホバー前 */
.rotate>span:first-child {
    /* 10px下に移動し縦中央に表示する */
    transform: translateY(10px) rotateX(0deg);
}

.rotate>span:last-child {
    /* 90度回転させ非表示にする */
    transform: rotateX(-90deg);
}

/* ホバー時 */
.rotate:hover>span:first-child {
    /* X軸周りに90度回転して非表示にする */
    transform: rotateX(90deg);
}

.rotate:hover>span:last-child {
    /* 10px上に移動し表示する */
    transform: translateY(-10px) rotateX(0deg);
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
    right: 0;
    /* メニューを画面に入れる */
}

.top_sns {
    display: none;
}

@media screen and (max-width: 730px) {

    .mainflex {
       display: none;
    }

    .main_tb {
        display: block;
        width: 100%;
     
    }
    
    .logo_tb {
        position: absolute;
        z-index: 100;

    }
    
    .logo_tb img {
        width: 30vw;
        margin: 10px 0 0 10px;
        vertical-align: bottom;
    }

    .top_sns {
        margin: 3vw 4vw 0 0;
        display: flex;
        justify-content: right;

    }
    
    .tel_tb {
        padding: 0.2vw 1vw 0vw 1vw;
        right: 8vw;
        bottom: 4vw;
        border: #fff solid 2px;
        z-index: 100;
        font-size: 18px;
        color: #fff;
        font-weight: 100;
        font-family: "Allura", cursive;
        font-weight: 400;
        font-style: normal;
        letter-spacing: 2px;
        cursor: pointer;
        background: #fff;
    }
    
    .tel_tb:hover {
        transition: 0.3s;
    }
    
    .tel_tb a {
        text-decoration: none;
        color: #9F84FF;
    }
    
    #stage_tb {
        position: relative;
        width: 100%;
        height: 132vw;
        max-width: none;
        background: #ddd;
    }
    
    .pic_tb {
        position: absolute;
    }
    
    .pic_tb img {
        width: 100%;
        height: auto;
        opacity: 0;
        -moz-animation: imgTrans 40s infinite;
        -webkit-animation: imgTrans 40s ease-in infinite;
        animation: imgTrans 40s infinite;
    
    }
    
    #photo1_tb img {
        -moz-animation-delay: 0s;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }
    
    #photo2_tb img {
        -moz-animation-delay: 8s;
        -webkit-animation-delay: 8s;
        animation-delay: 8s;
    }
    
    #photo3_tb img {
        -moz-animation-delay: 16s;
        -webkit-animation-delay: 16s;
        animation-delay: 16s;
    }
    
    #photo4_tb img {
        -moz-animation-delay: 24s;
        -webkit-animation-delay: 24s;
        animation-delay: 24s;
    }
    
    #photo5_tb img {
        -moz-animation-delay: 32s;
        -webkit-animation-delay: 32s;
        animation-delay: 32s;
    }
    
    @-webkit-keyframes imgTrans {
        0% {
            opacity: 0;
        }
    
        7% {
            opacity: 1;
        }
    
        18% {
            opacity: 1;
        }
    
        25% {
            opacity: 0;
        }
    
        100% {
            opacity: 0;
        }
    }
    
    @-moz-keyframes imgTrans {
        0% {
            opacity: 0;
        }
    
        7% {
            opacity: 1;
        }
    
        18% {
            opacity: 1;
        }
    
        25% {
            opacity: 0;
        }
    
        100% {
            opacity: 0;
        }
    }
    
    @keyframes imgTrans {
        0% {
            opacity: 0;
        }
    
        7% {
            opacity: 1;
        }
    
        18% {
            opacity: 1;
        }
    
        25% {
            opacity: 0;
        }
    
        100% {
            opacity: 0;
        }
    }

    .nav_content {
        width: 40%;
        
    }

    .nav_item {
        font-size: 18px;
    }
    

}

/* ここらかmain */

.horizon {
    width: 85%;
    max-width: 1300px;
    margin: 50px auto ;
}

.horizon img {
    width: 100%;
}

.greeting {
    width: 70%;
    background-color: rgba(218, 190, 255, 0.3);
    color: #000;
    margin: 0 0 0 0;
    padding: 0 3%;
    display: flex;
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
}

.greet {
    margin-left: 10px;
    font-size: 20px;
    color: #9F84FF;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    letter-spacing: 2px;
}

.greeting_flex {
    width: 80%;
    margin: 3% 3% 3% 8%;
}

.greeting_text {
    margin: 0 0 20px 0;
}

.greeting_text h2 {
    letter-spacing: 2px;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.greeting_textflex {
    display: flex;
    align-items: flex-end;
    margin: 0 0 10px 0;
}

.daihyo {
    font-size: 18px;
    margin: auto 20px auto 0;
}

.name {
    font-size: 22px;
}

.roma {
    font-size: 17px;
}

.daihyo_text {
    width: 100%;
    letter-spacing: 1px;
}

.daihyo_p {
    margin: 0 0 10px 0;
}

.teacher {
    width: 30%;
    margin: auto 5% auto 0;
    max-width: 250px;
}

.teacher_tb {
    display: none;
}

@media screen and (max-width: 770px) {

    body {
        font-size: 15px;
    }

    .horizon {
        width: 85%;
        max-width: 1300px;
        margin: 4vw auto ;
    }

    .greeting_flex {
        width: 90%;
        margin: 3% 5% 3% 5%;
        padding: 20px 0;
    }

    .greeting {
        width: 90%;
        display: block;
    }

    .greeting_textflex {
        display: block;
        align-items: flex-end;
        margin: auto 5% auto 0;
    }

    .tb_greet {
        width: 100%;
        display: flex;
        margin: 0 auto;
        justify-content: center;
    }

    .roma {
        display: block;
        font-size: 14px;
    }

    .teacher_tb {
        display: inline;
        width: 30%;
        margin: auto 0 auto 5%;
        max-width: 120px;
    }

    .teacher {
        display: none;
    }

    .daihyo_text {
        margin-top: 20px;
    }

    .daihyo_p {
        width: 100%;
    }


}

@media screen and (max-width: 730px) {

    .horizon {
        width: 85%;
        max-width: 1300px;
        margin: 0vw auto 4vw auto ;
    }

}

.top_about {
    width: 80%;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    display: flex;
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
}

.top_about_flex {
    width: 60%;
}


.les_title {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.les_text {
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.les_class {
    margin: 0 0 0 1em;
}

.class_li {
    margin: 0 0 5px 0;
}

/*矢印が右に移動する*/
.btnarrow3 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    padding: 0 0 0 0px;
    color: #333;
    text-decoration: none;
    outline: none;
    width: 250px;
    max-width: 300px;
    margin: 20px 0;
}

/*矢印と下線の形状*/
.btnarrow3::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: -8px;
    left: 0;
    /*下線の形状*/
    width: 85%;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.btnarrow3::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: -3px;
    right: 15%;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow3:hover::before {
    left: 10%;
}

.btnarrow3:hover::after {
    right: 5%;
}

.fees_p {
    font-size: 15px;
}

.fees_p a {
    text-decoration: none;
    color: #000;
}

.top_about_img {
    width: 40%;
    margin: auto 0;
    text-align: right;
}

.top_about_img_tb {
    display: none;
}

.les_img {
    width: 90%;
    border-radius: 10px
}

.top_map_flex {
    width: 100%;
    max-width: 1200px;
    display: flex;
    margin: 50px auto 0 auto;

}

.top_map {
    width: 50%;
    text-align: center;
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
}

.top_map_title {
    font-size: 1.3em;
     font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.top_map p {
    width: 70%;
    margin: 10px auto;
    text-wrap: balance;
    word-break: auto-phrase;
}

.studio_img {
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow:
        7.2px 6.1px 3.7px -7px rgba(0, 0, 0, 0.023),
        24.1px 20.5px 12.5px -7px rgba(0, 0, 0, 0.034),
        108px 92px 56px -7px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 770px) {

    .top_about {
        width: 80%;
        max-width: 1200px;
        margin: 50px auto 0 auto;
        display: block;
    }

    .top_about_flex {
        width: 100%;
    }

    .about_lesson {
        width: 100%;
    }

    .about_lesson_tb {
        width: 60%;
    }

    .about_lesson_tb_flex {
        display: flex;
    }

    .top_about_img_tb {
        display: block;
        width: 40%;
        margin: auto 0;
        text-align: right;
    }

    .les_img_tb {
        width: 100%;
        border-radius: 10px
    }

    .top_about_img {

        display: none;
    }

    .pointe {
        display: block;
    }

    /*矢印*/
    .btnarrow3 {
        width: 200px;
    }

    .top_map_title {
        font-size: 18px;
    }

}

@media screen and (max-width: 590px) {

    .about_lesson_tb_flex {
        display: block;
    }

    .about_lesson_tb {
        width: 100%;
    }

    .top_about_img_tb {
        
        width: 80%;
        max-width: 250px;
        margin: 7% auto 0 auto;
        text-align: right;
    }

    .top_map_flex {
        margin-top: 10px;
        display: block;
        width: 80%;
    }

    .top_map {
        width: 100%;
        margin-bottom: 15px;
    }

}

/* ここからaside */

.aside {
    width: 100%;
    padding: 30px 0;
    margin: 30px 0 0 0;
    background: rgba(217, 210, 255, 0.7);
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
}

.aside_title {
    margin: 0 0 3vw 10%;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    letter-spacing: 2px;
}

.aside_flex {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
}

.acces_text {
    width: 35%;
    margin: auto;

}

.acces_text p {
    width: 90%;
    padding: 0 5px;
    margin: 0 auto 10px auto;
    letter-spacing: 1px;
}

.studio_name {
    font-size: 1.5em;
    text-align: center;
    text-wrap: nowrap;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.studio_border {
    border-bottom: #fff solid 2px;
    padding: 0 10px;
}

.add {
    text-align: center;
}

.aside_img {
    margin: 10px 0 0 0;
    width: 100%;
    border-radius: 10px;
    box-shadow:
        7.2px 6.1px 3.7px -7px rgba(0, 0, 0, 0.023),
        24.1px 20.5px 12.5px -7px rgba(0, 0, 0, 0.034),
        108px 92px 56px -7px rgba(0, 0, 0, 0.05);

}

.aside_map {
    width: 45%;
    margin: 3em auto 0 auto;
}

.aside_map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px
}

.aside_contact {
    width: 100%;
    margin: 50px 0 0 0;
    background-image: url(../img/bg/backimg4_2_white.png);
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: 0% 60%;
}

.banner {
    width: 20%;
    display: flex;
    flex-direction: column;
    margin: 0 5% 0 auto;
}

.banner p {
    margin: 0 0 30px 0;
}

.banner_img {
    width: 100%;
    cursor: pointer;
    vertical-align: bottom;
}

.banner_img:hover {
    opacity: 0.7;
}

.aside_sns {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.snsimg {
    align-items: center;
}

.aside_snsimg {
    width: 3vw;
    min-width: 25px;
    max-width: 40px;
    margin: 0 20px 0 0;
    vertical-align: bottom;
}

.aside_snsimg:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.aside_tel {
    padding: 0.2vw 1vw 0vw 1vw;
    right: -5vw;
    top: 9vw;
    border: #999 solid 2px;
    z-index: 100;
    font-size: 22px;
    font-weight: 100;
    font-family: "Allura", cursive;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2px;
    cursor: pointer;
    margin: 0 0 0 20px;
}

.aside_tel:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.aside_tel a {
    text-decoration: none;
    color: #555;
}

.aside_border {
    width: 90%;
    margin: 30px auto 50px auto;
    border-bottom: #9F84FF solid 2px;
}

@media screen and (max-width: 770px) {
    .aside_flex {
        width: 90%;
        display: block;
        margin-bottom: 30px;
    }

    .acces_text {
        width: 100%;
        text-align: center;
    }

    .studio_name {
        font-size: 20px;
        text-wrap: wrap;
    }

    .aside_img {
        display: none;

    }

    .aside_map {
        width: 60%;
        height: 100%;
        margin: 20px auto 0 auto;
    }

    .banner {
        width: 40%;
    }

    .aside_sns {
        align-items: center;
    }


    .aside_snsimg {
        margin: 0 10px 0 0;

    }

    .aside_tel {
        margin: 0 10px 0 0;
        font-size: 17px;
        font-weight: 300;
    }
}


/* ここからfooter */

.footer {
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin: 0 0 50px 0;

}

.footer_content {
    width: 30%;
    text-align: center;
}

.footer_logo {
    width: 100%;
    vertical-align: bottom;
}

.footer_img {
    width: 50%;
}

.coppy {
    font-size: 12px;
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
}

.main_list_foter {
    list-style: none;
    width: 30%;
    margin: 0 0 0 auto;
}

.main_nav_item_foter {
    text-align: center;
    margin: 0;
    vertical-align: bottom;
    max-height: 50px;
}

.main_nav_item_foter a {
    text-decoration: none;
    color: #444;
    cursor: pointer;
    width: 7vw;
}

.en_color_foter {
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 1.5vw, 15px);
    color: #9F84FF;
}

.jp_color_foter {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 1.6vw, 17px);
    color: #9F84FF;
}


.en_foter {
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 1.5vw, 15px);
}

.jp_foter {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 1.6vw, 17px);
}

.main_list_foter_tb {
    display: none;
}

.footer_content_tb {
    display: none;
}

@media screen and (max-width: 770px) {

    .footer {
        display: block;
    }

    .footer_content {
        display: none;
    }

    .main_list_foter {
        display: none;
    }

    .main_list_foter_tb {
        display: block;
        font-family: "Playwrite BE VLG", cursive;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        display: flex;
        width: 80%;
        align-items: flex-start;
        justify-content: space-around;
        flex-wrap:wrap;
        margin: 0 auto 30px auto;
    }

    .footerli_tb {
        list-style: none;
        vertical-align: bottom;
        margin: 0 0 20px 0;
        width: 30%;
        text-align: center;
    }

    .tb_a {
        text-decoration: none;
        color: #444;
    }

    .en_color_foter_tb {
        color: #9F84FF;
    }

    .footer_content_tb {
        display: block;
        width: 100%;
        text-align: center;
    }

    .footer_logo_tb {
        width: 100%;
    }

    .footer_img_tb {
        min-width: 150px;
        width: 30%;
    }

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}