#app{
    overflow:hidden;
    color: rgb(77, 77, 77);
    font-family:  "SF Pro SC","SF Pro Display","SF Pro Icons","PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
}


@keyframes blinker {
    30% { 
        color: transparent; 
    }
}


.seasonal {
    color: rgb(230, 0, 0);
}

._block_title1._priv_title{
    padding-top: 70px;
    margin-bottom:70px;
}
@media only screen and (min-width: 1000px) {
    
    .row{
        display:flex;
        flex-direction: row;
    }
    
    .clickable{
        /* color:#FFFFFF; */
        cursor: pointer;
        transition: color 0.2s linear;
    }
    .clickable_dark{
        color:#222222;
        cursor: pointer;
        transition: color 0.2s linear;
    }
    .clickable_dark:hover{
        color:#7b7b7b
    }
    
    .white{
        color:#FFFFFF
    }
    
    .dark{
        background-color:gray;
        color:white;
    }
    
    .mute{
        user-select:none
    }
    
    
    .default_text{
        font-weight: 300;
        font-size:16px;
        line-height:28px;
    }
    
    ._block_title {
        font-size: 28px;
        font-weight: 400;
        line-height: 55px;
        word-break: break-all;
        color: rgb(47, 47, 57);
      }
      ._block_title, ._block_title1 {
        font-size: 28px;
        font-weight: 400;
        line-height: 55px;
        word-break: break-all;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    ._block_title2 {
        font-size: 16px;
        color: rgb(150, 0, 0);
        font-weight: 400;
        word-break: break-all;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    
    /* Page Structure */
    .page_wrap{
        overflow-y: hidden;
        overflow-x: hidden;
        position: relative;
        width: 100%;
        min-height: 500px;
        background-color:white;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .head_image{
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
    }
    
    ._page_block {
        background-color:white;
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items:center;
        justify-content:center;
        height: calc(0.4 * ( 100vw - ( 100vw - 100% )));
        max-height: 850px;
        padding-top: 20px;
        padding-bottom: 20px;
        /* transition: all 1s linear, height 0s linear; */
    }
    
    ._page_block._reverse {
        flex-direction: row-reverse;
        background-color:#f1f1f1;
        align-items:center;
        justify-content:center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    ._half_piece {
        position: relative;
        max-width: 650px;
        width: 50%;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding-top: 5%;
        padding-bottom: 5%;
        text-overflow: ellipsis;
    }
    ._half_piece.portrait{
        width: 70%;
        max-width: 850px;
    }
    ._half_piece.portrait_img_wrap {
        position: relative;
        max-width: 650px;
        width: 40%;
    }
    ._half_piece.portrait_img {
        position: relative;
        max-width: 650px;
        width: 100%;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding-top: 5%;
        padding-bottom: 5%;
        text-overflow: ellipsis;
    }
    
    ._half_piece._right{
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    ._half_piece._left{
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        justify-content: center;
    }
    
    ._half_piece div{
        text-overflow: ellipsis;
    }
    
    ._text_left{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 70px;
        padding-left: 70px !important;
        /* width:425px; */
        text-align: justify;
        /* max-width: 500px; */
    }
    
    ._text_right{
        display: flex;
        flex-direction: column;
        padding-left: 70px;
        padding-right: 70px;
        max-width: 450px;
        text-align: justify;
    }
    
    video{
        /* max-height: 400px; */
        object-fit: contain;
        max-width: 100%;
    }
    
}



    
/* animation */
.fade-enter-active {
    transition: opacity 0.3s ease;
}
.fade-leave-active {
    transition: opacity 0.2s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}
    
.shift-enter-active {
    transition: opacity 0.3s ease;
}
.shift-leave-active {
    transition: opacity 0.2s ease;
}

.shift-enter-from,
.shift-leave-to {
    transform: translateX(100vw);
}
    



/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
a{
	border:none;
    text-decoration: none;
    cursor: pointer;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
    font-family:  "SF Pro SC","SF Pro Display","SF Pro Icons","PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
