@charset "utf-8";
/* CSS Document */
body{
    width: 100%;
}
@media screen and (orientation: portrait){
    body{
        width: 100%;
        height: 100%;
        position: fixed;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
}

body>#wrap{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    body>#wrap{
        width: 100%;
        height: 100%;
        min-height: auto;
        position: absolute;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    body.openMenu>#wrap{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}
body>.loading{
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
}
body>.loading>img{
    width: 4vw;
    height: 4vw;
    opacity: 0;
}
@media screen and (orientation: portrait){
    body>.loading>img{
        width: 12vw;
        height: 12vw;
    }
}

.page{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: center;
    align-items: flex-start;
}

.page>.mainPicture{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.page>.mainPicture>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hidden{
    width: 1px;
    height: 1px;
    padding: 1px 0px 0px 1px;
    position: fixed;
    top: -1px;
    left: -1px;
    overflow: hidden;
}

@keyframes animationSlideUp{
    0%  { top: 100%; }
    100%{ top: 0px; }
}
@keyframes animationFadeIn{
    0%  { opacity: 0; }
    100%{ opacity: 1; }
}
@keyframes animationFadeOut{
    0%  { opacity: 1; }
    100%{ opacity: 0; }
}
@keyframes animationFadeIn70{
    0%  { opacity: 0.7; }
    100%{ opacity: 1; }
}
@keyframes animationScaleUp{
    0%  { transform: scale(1); }
    100%{ transform: scale(1.1); }
}


/* =========================================================
 * 頁首
 * ========================================================= */
#wrap>header{
    width: calc(100% - 30px * 2);
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 0px calc(3vw * 2) 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: relative;
}
@media screen and (orientation: portrait){
    #wrap>header{
        width: calc(100% - 4.8vw * 2);
        height: auto;
        max-height: calc(16vw - (4.8vw + 6.1333vw));
        background: #FFFFFF;
        box-shadow: 0px 0px calc(0.4167vw * 2) 0px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4.8vw 4.8vw 6.1333vw 4.8vw;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 10;
        overflow: hidden;
    }
    body.openMenu #wrap>header{
        max-height: calc(100vh - 4.8vw * 2);
        background: #595757;
        animation: 1s linear 0s normal forwards 1 animationHeaderPortrait;
    }
}
@keyframes animationHeaderPortrait{
    0%  {   max-height: calc(16vw - 4.8vw * 2);}
    100%{   max-height: calc(100vh - 4.8vw * 2);}
}

html.index #wrap>header.scrolling,
#wrap>header.scrolling{
    height: 65px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
}
@media screen and (orientation: portrait){
    html.index #wrap>header.scrolling,
    #wrap>header.scrolling{
        height: auto;
    }
}
#wrap>header>.headerArea{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-between;
    align-items: flex-start;
}
#wrap>header>.headerArea>.logoArea,
#wrap>header>.headerArea>.logoArea>a{
    display: block;
    z-index: 10;
}
#wrap>header>.headerArea>.logoArea img{
    width: auto;
    height: 30px;
    display: block;
}
@media screen and (orientation: portrait){
    #wrap>header>.headerArea>.logoArea img{
        height: 7.4667vw;
    }
}
#wrap>header.scrolling>.headerArea>.logoArea img{
    height: 33px;
}

@media screen and (orientation: landscape){
    #wrap>header>.headerArea>.menuIcon{
        display: none;
    }
}
@media screen and (orientation: portrait){
    #wrap>header>.headerArea>.menuIcon{
        width: 6.667vw;
        height: 6.667vw;
        background-color: transparent;
        background-image: url(/images/menuOpenBtn.svg);
        background-size: auto 100%;
        background-position: center center;
        background-repeat: no-repeat;
        border: 0px;
        color: transparent;
        position: absolute;
        top: 4.8vw;
        right: 4.8vw;
        z-index: 30;
        cursor: pointer;
    }
    body.openMenu #wrap>header>.headerArea>.menuIcon{
        width: calc(5.8667vw + 4.2667vw * 4 + 2.5333vw * 4);
        height: 5.8667vw;
        background-image: url(/images/menuCloseBtnWhite.svg);
        background-size: auto 100%;
        background-position: right center;
        color: #FFFFFF;
        font-size: 4.2667vw;
        letter-spacing: 2.5333vw;
        text-align: left;
    }
}

#wrap>header>.menuArea{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    justify-content: center;
    align-items: center;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea{
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
#wrap>header>.menuArea>#mainMenu{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>#mainMenu{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 16vw 0px;
    }
}
#wrap>header>.menuArea>#mainMenu>ul{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>#mainMenu>ul{
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
#wrap>header>.menuArea>#mainMenu>ul>li{
    border-right: 1px solid rgba(0, 0, 0, 1);
    overflow: hidden;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>#mainMenu>ul>li{
        max-width: unset !important;
        width: 100% !important;
        border: 0px;
        margin: 0px 0px 6vw 0px;
        overflow: auto;
    }
}
#wrap>header.scrolling>.menuArea>#mainMenu>ul>li{
    /*transform: scale(1.0454);*/
}
@media screen and (orientation: portrait){
    #wrap>header.scrolling>.menuArea>#mainMenu>ul>li{
        width: auto !important;
        border: 0px;
    }
}
#wrap>header>.menuArea>#mainMenu>ul>li:first-child{
    border-left: 1px solid rgba(0, 0, 0, 1);
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>#mainMenu>ul>li:first-child{
        border: 0px;
    }
}
@media screen and (orientation: portrait){
    #wrap>header.scrolling>.menuArea>#mainMenu>ul>li:first-child{
        border: 0px;
    }
}
#wrap>header>.menuArea>#mainMenu>ul>li.aboutJcpc{
    max-width: 165px;
    width: 10vw;
}
#wrap>header>.menuArea>#mainMenu>ul>li.workflow,
#wrap>header>.menuArea>#mainMenu>ul>li.collection{
    max-width: 175px;
    width: 9.1146vw;
}
#wrap>header>.menuArea>#mainMenu>ul>li.blog{
    max-width: 135px;
    width: 7.0312vw;
}
#wrap>header>.menuArea>#mainMenu>ul>li.news{
    max-width: 125px;
    width: 6.5104vw;
}
#wrap>header>.menuArea>#mainMenu>ul>li.consultation{
    max-width: 205px;
    width: 10.6771vw;
}
#wrap>header>.menuArea>#mainMenu>ul>li>a{
    width: 100%;
    color: #000000;
    font-size: 14px;
    line-height: 200%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>#mainMenu>ul>li>a{
        color: #FFFFFF;
        font-size: 4.5vw;
        line-height: normal;
        justify-content: flex-start;
    }
}
#wrap>header>.menuArea>#mainMenu>ul>li>a>em{
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    font-style: normal;
    display: none;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>#mainMenu>ul>li>a>em{
        width: auto;
        height: auto;
        background: transparent;
        font-size: 4vw;
        letter-spacing: unset !important;
        display: inline;
        padding: 0px !important;
        position: relative;
    }
    #wrap>header>.menuArea>#mainMenu>ul>li>a>em:before{
        content: '/';
        font-size: 4.5vw;
        margin: 0px 2vw;
    }
}
#wrap>header>.menuArea>#mainMenu>ul>li>a:hover>em{
    display: flex;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>#mainMenu>ul>li>a:hover>em{
        display: inline;
    }
}
#wrap>header>.menuArea>#mainMenu>ul>li.aboutJcpc>a>em{
    letter-spacing: 2.67vw;
    padding: 0px 0px 0px calc(2.8125vw / 2);
}
#wrap>header>.menuArea>#mainMenu>ul>li.workflow>a>em{
    letter-spacing: 2.6042vw;
    padding: 0px 0px 0px calc(2.6042vw / 2);
}
#wrap>header>.menuArea>#mainMenu>ul>li.collection>a>em{
    letter-spacing: 2.5vw;
    padding: 0px 0px 0px calc(2.5vw / 2);
}
#wrap>header>.menuArea>#mainMenu>ul>li.news>a>em{
    letter-spacing: 0.6771vw;
    padding: 0px 0px 0px calc(0.6771vw / 2);
}
#wrap>header>.menuArea>#mainMenu>ul>li.consultation>a>em{
    letter-spacing: 3.125vw;
    padding: 0px 0px 0px calc(3.125vw / 2);
}

#wrap>header>.menuArea>.socialArea{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>.socialArea{
        width: 100%;
        position: relative;
    }
}
#wrap>header>.menuArea>.socialArea>div{
    display: none;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>.socialArea>div{
        color: #FFFFFF;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        flex-grow: 1;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    #wrap>header>.menuArea>.socialArea>div>em{
        color: #FFFFFF;
        font-size: 3.8vw;
        font-style: normal;
        letter-spacing: 2.1333vw;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        flex-grow: 0;
        flex-shrink: 0;
        justify-content: space-between;
        align-items: center;
    }
    #wrap>header>.menuArea>.socialArea>div:after{
        content: '';
        height: 1px;
        border-top: 1px solid #FFFFFF;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        flex-grow: 1;
        flex-shrink: 1;
        justify-content: center;
        align-items: center;
        margin: 0px 0px 0px calc(3.2vw - 2.1333vw);
    }
}
#wrap>header>.menuArea>.socialArea>ul{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 0px 1.8229vw;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>.socialArea>ul{
        margin: 0px 0px 0px 3.2vw;
    }
}
#wrap>header>.menuArea>.socialArea>ul>li{
    margin: 0px 0px 0px 10px;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>.socialArea>ul>li{
        margin: 0px 0px 0px 2.667vw;
    }
}
#wrap>header>.menuArea>.socialArea>ul>li:first-child{
    margin: 0px 0px 0px 0px;
}
#wrap>header>.menuArea>.socialArea>ul>li img{
    width: 22px;
    height: 22px;
    display: flex;
}
@media screen and (orientation: portrait){
    #wrap>header>.menuArea>.socialArea>ul>li img{
        width: 5.938vw;
        height: 5.938vw;
    }
}


/* =========================================================
 * 首頁
 * ========================================================= */
html.index .page{
    position: relative;
}
@media screen and (orientation: portrait){
    html .page{
        width: 100%;
        margin: 16vw 0px 0px 0px;
    }
}
/* Banner */
html.index .page .bannerArea{
    width: 100vw;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
@media screen and (orientation: portrait){
    html.index .page .bannerArea{
        height: calc(100vh - 16vw);
    }
}
html.index .page .bannerArea>#indexBannerSlide{
    width: 100vw;
    height: calc(100vh - 80px);
    opacity: 0;
    position: relative;
    overflow: hidden;
    animation: 1.5s linear 1s normal forwards 1 animationFadeIn;
}
@media screen and (orientation: portrait){
    html.index .page .bannerArea>#indexBannerSlide{
        height: calc(100vh - 16vw);
    }
}
html.index .page .bannerArea.close>#indexBannerSlide{
    animation: 1.5s linear 0s normal forwards 1 animationFadeOut;
}
html.index .page .bannerArea>#indexBannerSlide>.banners{
    height: calc(100vh - 80px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media screen and (orientation: portrait){
    html.index .page .bannerArea>#indexBannerSlide>.banners{
        height: calc(100vh - 16vw);
    }
}
html.index .page .bannerArea>#indexBannerSlide>.banners>li{
    width: 100vw;
    height: calc(100vh - 80px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    flex-basis: 100vw;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
}
@media screen and (orientation: portrait){
    html.index .page .bannerArea>#indexBannerSlide>.banners>li{
        height: calc(100vh - 16vw);
    }
}
html.index .page .bannerArea>#indexBannerSlide>.banners>li a{
    width: 100%;
    height: 100%;
    display: block;
}
html.index .page .bannerArea>#indexBannerSlide>.banners>li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: 8s linear 0s normal forwards 1 animationScaleUp;
}
html.index .page .bannerArea>.page{
    /*display: flex;*/
    display: none;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 4.1667vw;
    left: 4.1667vw;
}
@media screen and (orientation: portrait){
    html.index .page .bannerArea>.page{
        display: none;
    }
}
html.index .page .bannerArea>.page>li{
    width: 0.625vw;
    height: 0.625vw;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    color: transparent;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px 1.5625vw 0px 0px;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
    cursor: pointer;
    overflow: hidden;
}
html.index .page .bannerArea>.page>li:last-of-type{
    margin: 0px;
}
html.index .page .bannerArea>.page>li.current{
    background: #FFFFFF;
}
html.index .page .bannerArea>.scrollDownBtn{
    width: 6vw;
    height: 2.7994vw;
    background-color: transparent;
    background-image: url(/images/iconScrollDown.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    border: 0px;
    color: transparent;
    font-family: Microsoft JhengHei light, Microsoft JhengHei, Arial;
    font-size: 0.625vw;
    font-weight: normal;
    text-align: center;
    padding: 0px;
    overflow: hidden;
    position: absolute;
    bottom: 2vw;
    left: 50%;
    transform: translateX(-50%);
    animation: 3s linear 0.5s normal forwards 1 animationFadeIn;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.index .page .bannerArea>input[type='button']{
        width: 24.4470vw;
        height: 11.4061vw;
        font-size: 3.2vw;
        bottom: 8vw;
    }
}
html.index .page .bannerArea.close>input[type='button']{
    opacity: 1;
    color: transparent;
}

html.index .page .collectionArea{
    width: calc(100% - 10vw * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 4.1667vw 10vw;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea{
        width: calc(100% - 4.8vw * 2);
        padding: 4.8vw 4.8vw 12vw 4.8vw;
    }
}
html.index .page .collectionArea>h2{
    width: 17.8589vw;
    height: 2.3132vw;
    background-color: transparent;
    background-image: url(/images/collection.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>h2{
        display: none;
    }
}
html.index .page .collectionArea>h3{
    color: #3E3A39;
    font-weight: normal;
    font-size: 1.0417vw;
    letter-spacing: 0.5208vw;
    margin: 1.5625vw 0px 0px calc(0.5208vw / 2);
    padding: 1.5625vw 0px 0px 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>h3{
        display: none;
    }
}
html.index .page .collectionArea>h3:before{
    content: '';
    width: 3.125vw;
    border-top: 1px solid #3E3A39;
    position: absolute;
    top: 0px;
    left: calc(50% - (0.5208vw / 2));
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>h3:before{
        width: 15.523vw;
    }
}
html.index .page .collectionArea>ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    justify-content: center;
    margin: 3.6458vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>ul{
        margin: 0px;
    }
}
html.index .page .collectionArea>ul>li{
    width: calc((100% - 15px * 2) / 3);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px 15px 30px 0px;
    position: relative;
    overflow: hidden;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>ul>li{
        width: 100%;
        margin: 4.8vw 0px 0px 0px;
    }
}
html.index .page .collectionArea>ul>li:nth-child(3n){
    margin: 0px 0px 30px 0px;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>ul>li:nth-child(3n){
        margin: 4.8vw 0px 0px 0px;
    }
    html.index .page .collectionArea>ul>li:first-of-type{
        margin: 0px;
    }
}
html.index .page .collectionArea>ul>li:before{
    content: '';
    display: block;
    margin-top: 100%;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>ul>li:before{
        margin-top: 70.5882%;
    }
}
html.index .page .collectionArea>ul>li>a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
}
html.index .page .collectionArea>ul>li figure{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
}
html.index .page .collectionArea>ul>li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    margin: 0px;
    position: relative;
    z-index: 1;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}
html.index .page .collectionArea>ul>li:hover figure img{
    transform: scale(1.02) rotate(0.03deg);
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>ul>li:hover figure img{
        transform: unset;
    }
}
html.index .page .collectionArea>ul>li figure figcaption{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    font-size: 1.2vw;
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>ul>li figure figcaption{
        width: 100%;
        height: 37.5%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
        font-size: 6.4vw;
        align-items: flex-start;
        display: flex;
        padding: 0px 5.3333vw;
        top: unset;
        bottom: 0px;
        left: 0px;
    }
}
html.index .page .collectionArea>ul>li:hover figure figcaption{
    display: flex;
}
html.index .page .collectionArea>ul>li figure figcaption>em{
    font-size: 0.8vw;
    font-style: normal;
}
@media screen and (orientation: portrait){
    html.index .page .collectionArea>ul>li figure figcaption>em{
        font-size: 3.2vw;
    }
}

html.index .page .newsArea{
    width: calc(100% - 10vw * 2);
    background: #EFEFEF;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 4.6875vw 10vw;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea{
        width: calc(100% - 4.8vw * 2);
        padding: 12vw 4.8vw;
    }
}
html.index .page .newsArea>h2{
    width: 11.3678vw;
    height: 2.3132vw;
    background-color: transparent;
    background-image: url(/images/pinning.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>h2{
        display: none;
    }
}
html.index .page .newsArea>h3{
    color: #3E3A39;
    font-weight: normal;
    font-size: 1.0417vw;
    letter-spacing: 2.3438vw;
    margin: 1.5625vw 0px 0px calc(2.3438vw / 2);
    padding: 1.5625vw 0px 0px 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>h3{
        display: none;
    }
}
html.index .page .newsArea>h3:before{
    content: '';
    width: 3.125vw;
    border-top: 1px solid #3E3A39;
    position: absolute;
    top: 0px;
    left: calc(50% - (2.3438vw / 2));
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>h3:before{
        width: 15.523vw;
    }
}
html.index .page .newsArea>ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 3.6458vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>ul{
        margin: 0px;
    }
}
html.index .page .newsArea>ul>li{
    width: calc((100% - 15px * 2) / 3);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px 15px 30px 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>ul>li{
        width: 100%;
        margin: 6.6667vw 0px 0px 0px;
    }
}
html.index .page .newsArea>ul>li:nth-child(3n){
    margin: 0px 0px 30px 0px;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>ul>li:nth-child(3n){
        margin: 4.8vw 0px 0px 0px;
    }
    html.index .page .newsArea>ul>li:first-of-type{
        margin: 0px;
    }
}
html.index .page .newsArea>ul>li>a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
}
html.index .page .newsArea>ul>li figure{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
}
html.index .page .newsArea>ul>li figure>div{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
html.index .page .newsArea>ul>li figure>div:before{
    content: '';
    display: block;
    margin-top: 76.9207%;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>ul>li figure>div:before{
        margin-top: 70.5882%;
    }
}
html.index .page .newsArea>ul>li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}
html.index .page .newsArea>ul>li:hover figure img{
    transform: scale(1.02) rotate(0.03deg);
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>ul>li:hover figure img{
        transform: unset;
    }
}
html.index .page .newsArea>ul>li figure figcaption{
    width: 100%;
    height: calc(1.5vw * 5);
    color: #3E3A39;
    font-size: 0.8vw;
    line-height: 1.5vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 30px 0px 0px 0px;
    overflow: hidden;
}
@media screen and (orientation: portrait){
    html.index .page .newsArea>ul>li figure figcaption{
        height: auto;
        font-size: 3.75vw;
        line-height: 6.2vw;
        margin: 4.8vw 0px 0px 0px;
        overflow: display;
    }
}


html.index .page .awardsArea{
    width: calc(100% - 25vw * 2);
    margin: 5.2083vh 0px 0px 0px;
    padding: 5.2083vh 25vw 0px 25vw;
    position: relative;
}
@media screen and (orientation: portrait){
    html.index .page .awardsArea{
        width: calc(100% - 9.6vw * 2);
        margin: 12vw 0px 0px 0px;
        padding: 6.6667vw 9.6vw 0px 9.6vw;
    }
}
html.index .page .awardsArea:before{
    content: '';
    width: 11.1979vw;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 1);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    html.index .page .awardsArea:before{
        width: 13.3333vw;
    }
}
html.index .page .awardsArea>ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
html.index .page .awardsArea>ul>li{
    width: calc((100% - 2.6042vw * 4) / 5);
    margin: 0px 2.5vw 2.5vw 0px;
    position: relative;
    overflow: hidden;
}
@media screen and (orientation: portrait){
    html.index .page .awardsArea>ul>li{
        width: calc((100% - 4vw * 2) / 3);
        margin: 0px 4vw 4vw 0px;
    }
}
html.index .page .awardsArea>ul>li:nth-child(3n){
    margin: 0px 0px 2.5vw 0px;
}
@media screen and (orientation: portrait){
    html.index .page .awardsArea>ul>li:nth-child(3n){
        margin: 0px 0px 4vw 0px;
    }
}
html.index .page .awardsArea>ul>li:last-child{
    margin: 0px;
}
html.index .page .awardsArea>ul>li:before{
    content: '';
    display: block;
    margin-top: 100%;
}
html.index .page .awardsArea>ul>li>figure{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
}
html.index .page .awardsArea>ul>li>figure>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* =========================================================
 * 關於我們
 * ========================================================= */
.page>.aboutArea{
    width: calc(100% - 15vw * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px 15vw;
    margin: 6vh 0px 0px 0px;
}
@media screen and (orientation: portrait){
    .page>.aboutArea{
        width: calc(100% - 7.3333vw * 2);
        margin: 10.1333vw 0px 0px 0px;
        padding: 0px 7.3333vw;
    }
}
.page>.aboutArea>article{
    margin: 0px 0px 7vh 0px;
}
@media screen and (orientation: portrait){
    .page>.aboutArea>article{
        margin: 0px 0px 9.333vw 0px;
    }
}
.page>.aboutArea>article:last-child{
    margin: 0px;
}
.page>.aboutArea>article p{
    color: rgba(0, 0, 0, 1);
    font-size: 0.8vw;
    text-align: justify;
    line-height: 1.5vw;
    margin: 0px 0px 2vw 0px;
}
@media screen and (orientation: portrait){
    .page>.aboutArea>article p{
        font-size: 3.75vw;
        line-height: 6.2vw;
        margin: 0px 0px 9.333vw 0px;
    }
}
.page>.aboutArea>article p:last-child{
    margin: 0px;
}
.page>.aboutArea>article img{
    max-width: 100%;
}
.page>.aboutArea>.designer{
    width: 100%;
    margin: 0px 0px 8.5vh 0px;
}
@media screen and (orientation: portrait){
    .page>.aboutArea>.designer{
        margin: 0px 0px 9.333vw 0px;
    }
}
.page>.aboutArea>.partner{
    width: 100%;
    margin: 0px 0px 8.5vh 0px;
}
@media screen and (orientation: portrait){
    .page>.aboutArea>.partner{
        margin: 0px 0px 9.333vw 0px;
    }
}
.page>.aboutArea>.awards{
    width: 100%;
    margin: 0px 0px 8.5vh 0px;
}



/* =========================================================
 * 流程
 * ========================================================= */
html.workflow .page>.workflow{
    width: calc(100% - 3.125vw * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: stretch;
    margin: 7.2917vw 0px 0px 0px;
    padding: 0px 3.125vw;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow{
        width: calc(100% - 7.3333vw * 2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 10.1333vw 0px 14.6667vw 0px;
        padding: 0px 7.3333vw;
    }
}
html.workflow .page>.workflow>.workflowType{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowType{
        width: 100%;
        margin: 0px 0px 13.3333vw 0px;
        padding: 0px 0px 13.3333vw 0px;
        position: relative;
    }
    html.workflow .page>.workflow>.workflowType:after{
        content: '';
        width: 13.333vw;
        border-bottom: 1px solid rgba(0, 0, 0, 1);
        position: absolute;
        left: 0px;
        bottom: -1px;
    }
}
html.workflow .page>.workflow>.workflowType>ul{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowType>ul{
        padding: 0px;
    }
}
html.workflow .page>.workflow>.workflowType>ul>li{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 0px 1.5625vw 0px;
}
html.workflow .page>.workflow>.workflowType>ul>li{
    width: 100%;
    color: rgba(62, 58, 51, 1);
    font-size: 0.8vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowType>ul>li{
        margin: 0px 0px 4vw 0px;
    }
    html.workflow .page>.workflow>.workflowType>ul>li:last-child{
        margin: 0px;
    }
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowType>ul>li{
        font-size: 3.75vw;
    }
}
html.workflow .page>.workflow>.workflowType>ul>li.current{
    color: rgba(0, 41, 63, 1);
    font-weight: bold;
}
html.workflow .page>.workflow>.workflowList{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 8.333vw 0px 11.4583vw;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList{
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
}
html.workflow .page>.workflow>div.workflowList:last-child{
    margin: 0px 8.333vw 0px 11.4583vw;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>div.workflowList:last-child{
        margin: 0px;
    }
}

html.workflow .page>.workflow>.workflowList>ul{
    width: calc(100% - 30px * 2);
    max-width: calc(1200px - 30px * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul{
        width: 100%;
        max-width: unset;
        padding: 0px;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li{
    width: 100%;
    /*display: flex;*/
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
}
html.workflow .page>.workflow>.workflowList>ul>li.current{
    display: flex;
}
html.workflow .page>.workflow>.workflowList>ul>li>h2{
    font-size: 2vw;
    font-weight: normal;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>h2{
        font-size: 7.5vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 3rem 0px 0px 0px;
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li{
    width: calc(100% - 100vw * 400 / 1920);
    border-top: 1px solid #3E3A39;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 4rem 0px 4rem calc(100vw * 400 / 1920);
    position: relative;
}
@media screen and (orientation: landscape) and (min-width: 1920px){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li.text{
        padding: 4rem 0px 4rem calc(100vw * 225 / 1920);
    }
}
@media screen and (orientation: landscape) and (max-width: 1919px) {
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li.text{
        flex-wrap: unset;
    }
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li{
        width: 100%;
        padding: 4rem 0px !important;
    }
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li:last-child{
        padding: 4rem 0px 0px 0px !important;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>h3{
    background: #FFFFFF;
    font-size: 1.6vw;
    font-weight: normal;
    padding: 0px 1.3vw 0px 0px;
    position: absolute;
    top: calc(-1.4rem);
    left: 0px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>h3{
        font-size: 6.25vw;
        padding: 0px 2.5vw 0px 0px;
        top: calc(-1.25rem);
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul{
        width: 100%;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 25px 0px;
}
@media screen and (orientation: landscape) and (min-width: 1920px){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li.text>ul>li{
        flex-direction: row;
    }
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li{
        width: 100%;
        align-items: center;
        margin: 6.75vw 0px;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li>figure{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li>figure{
        flex-direction: column;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li>figure>picture{
    width: 100px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 0px 40px 0px 0px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li>figure>picture{
        align-items: center;
        margin: 0px 0px 2.5vw 0px;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.fee>figure>picture>img{
    height: 90px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.fee>figure>picture>img{
        height: 28.125vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.requirement>figure>picture>img{
    height: 95px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.requirement>figure>picture>img{
        height: 29.688vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.proposal>figure>picture>img{
    height: 80px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.proposal>figure>picture>img{
        height: 25vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.plan>figure>picture>img{
    height: 77px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.plan>figure>picture>img{
        height: 24.063vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.changeContract>figure>picture>img{
    height: 88px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.changeContract>figure>picture>img{
        height: 27.5vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.changeDrawings>figure>picture>img{
    height: 89px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.changeDrawings>figure>picture>img{
        height: 27.813vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.onsiteMeasurement>figure>picture>img{
    height: 83px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.onsiteMeasurement>figure>picture>img{
        height: 25.938vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.designProposal>figure>picture>img{
    height: 83px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.designProposal>figure>picture>img{
        height: 25.938vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.contractSigning>figure>picture>img{
    height: 90px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.contractSigning>figure>picture>img{
        height: 28.125vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.workerEntry>figure>picture>img{
    height: 69px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.workerEntry>figure>picture>img{
        height: 21.563vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.workerEntry>figure>picture>img{
    height: 69px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.workerEntry>figure>picture>img{
        height: 21.563vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.initialInspection>figure>picture>img{
    height: 93px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.initialInspection>figure>picture>img{
        height: 29.063vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.finished>figure>picture>img{
    height: 88px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li.finished>figure>picture>img{
        height: 27.5vw;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li>figure>figcaption{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li>figure>figcaption{
        align-items: center;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li h4{
    color: #00293F;
    font-size: 24px;
    line-height: 150%;
}
@media screen and (orientation: landscape){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li.text>ul>li h4{
        width: 20vw;
    }
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li h4{
        width: auto;
        font-size: 5vw;
        text-align: center;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li p{
    font-size: 17px;
    line-height: 200%;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul>li p{
        font-size: 3.75vw;
        text-align: center;
    }
}
html.workflow .page>.workflow>.workflowList>ul>li>ul>li.text>ul{
    margin: 0px 0px 25px 0px;
}
html.workflow .page>.workflow>.workflowList>ul>li>ul ~ p,
html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul ~ p{
    font-size: 17px;
    line-height: 200%;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>.workflowList>ul>li>ul ~ p,
    html.workflow .page>.workflow>.workflowList>ul>li>ul>li>ul ~ p{
        font-size: 3.75vw;
        text-indent: -2.75vw;
        margin: 0px 0px 0px 2.75vw;
    }
}
html.workflow .page>.workflow>div{
    margin: 0px 0px 8.5vh 0px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>div{
        width: calc(100% - 7.3333vw * 2);
        margin: 0px 0px 9.333vw 0px;
        padding: 0px 7.3333vw;
    }
}
html.workflow .page>.workflow>div:last-child{
    margin: 0px;
}
html.workflow .page>.workflow>div>p{
    color: rgba(0, 0, 0, 1);
    font-size: 0.8vw;
    text-align: justify;
    margin: 0px 0px 15px 0px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>div>p{
        font-size: 3.75vw;
        line-height: 6.2vw;
        margin: 0px 0px calc(6.2vw - 3.75vw) 0px;
    }
    html.workflow .page>.workflow>div>p:last-child{
        margin: 0px;
    }
}
html.workflow .page>.workflow>div>ul{
    width: calc(100% - 30px * 2);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: stretch;
    margin: 0px;
    padding: 0px 30px;
}
html.workflow .page>.workflow>div>ul>li{
    width: 240px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
}
html.workflow .page>.workflow>div>ul>div.hr{
    width: 100%;
    height: calc(85px * 2 + 1px);
    display: none;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>div>ul>div.hr{
        display: flex;
        height: calc(7.8125vw * 2 + 1px);
    }
}
html.workflow .page>.workflow>div>ul>div.hr:nth-of-type(4n){
    display: flex;
}
html.workflow .page>.workflow>div>ul>div.hr>hr{
    width: 43.2292vw;
    border: 0px;
    border-bottom: 1px solid #606060;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>div>ul>div.hr>hr{
        width: 50px;
    }
}
html.workflow .page>.workflow>div>ul>li>div{
    width: 100%;
    height: 100px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0px 0px 10px 0px;
    padding: 0px;
}
@media screen and (orientation: portrait){
    html.workflow .page>.workflow>div>ul>li>div{
        height: auto;
    }
}
html.workflow .page>.workflow>div>ul>li>div>h2{
    font-size: 20px;
    font-weight: normal;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0px;
    padding: 0px;
}
html.workflow .page>.workflow>div>ul>li>div>img{
    max-width: 90px;
    max-height: 90px;
    margin: 0px 0px 5px 5px;
}


/* =========================================================
 * 作品案例
 * ========================================================= */
html.projects .page>.projectsArea{
    width: calc(100% - 10vw * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 2.8645vw 0px 9vh 0px;
    padding: 0px 10vw;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea{
        width: calc(100% - 7.3333vw * 2);
        align-items: flex-start;
        margin: 10.1333vw 0px 14.6667vw 0px;
        padding: 0px 7.3333vw;
    }
}
html.projects .page>.projectsArea>.projectsType{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 0px 2.8645vw 0px;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projectsType{
        margin: 0px 0px 13.3333vw 0px;
        padding: 0px 0px 13.3333vw 0px;
        position: relative;
    }
    html.projects .page>.projectsArea>.projectsType:after{
        content: '';
        width: 13.333vw;
        border-bottom: 1px solid rgba(0, 0, 0, 1);
        position: absolute;
        left: 0px;
        bottom: -1px;
    }
}
html.projects .page>.projectsArea>.projectsType>ul{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: space-around;
    align-items: center;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projectsType>ul{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
html.projects .page>.projectsArea>.projectsType>ul>li{
    color: rgba(62, 58, 51, 1);
    font-size: 0.8vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projectsType>ul>li{
        width: 100%;
        font-size: 3.75vw;
        margin: 0px 0px 4vw 0px;
    }
    html.projects .page>.projectsArea>.projectsType>ul>li:last-child{
        margin: 0px;
    }
}
html.projects .page>.projectsArea>.projectsType>ul>li.current{
    color: rgba(0, 41, 63, 1);
    font-weight: bold;
}
html.projects .page>.projectsArea>.projects{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projects>ul{
        width: 100%;
        flex-shrink: 0;
    }
}
html.projects .page>.projectsArea>.projects>ul{
    /*display: flex;*/
    display: none;
    flex-wrap: wrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projects>ul{
        width: 100%;
        flex-shrink: 0;
    }
}
html.projects .page>.projectsArea>.projects>ul.current{
    display: flex;
}
html.projects .page>.projectsArea>.projects>ul>li{
    width: calc((100% - 15px * 2) / 3);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 15px 30px 0px;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projects>ul>li{
        width: 100%;
        margin: 0px 0px 6.6667vw 0px;
    }
    html.projects .page>.projectsArea>.projects>ul>li:last-child{
        margin: 0px;
    }
}
html.projects .page>.projectsArea>.projects>ul>li:nth-child(3n){
    margin: 0px 0px 30px 0px;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projects>ul>li:nth-child(3n){
        margin: 0px 0px 6.6667vw 0px;
    }
}
html.projects .page>.projectsArea>.projects>ul>li>a{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-end;
}
html.projects .page>.projectsArea>.projects>ul>li>a>figure{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start;
        align-items: flex-start;
    margin: 0px;
    padding: 0px;
}
html.projects .page>.projectsArea>.projects>ul>li>a>figure>div{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}
html.projects .page>.projectsArea>.projects>ul>li>a>figure>div:before{
    content: '';
    display: block;
    margin-top: 65%;
}
html.projects .page>.projectsArea>.projects>ul>li>a>figure>div>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}
html.projects .page>.projectsArea>.projects>ul>li:hover>a>figure>div>img{
    transform: scale(1.02) rotate(0.03deg);
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projects>ul>li:hover>a>figure>div>img{
        transform: unset;
    }
}
html.projects .page>.projectsArea>.projects>ul>li>a>figure>figcaption{
    color: rgba(62, 58, 51, 1);
    font-size: 0.8vw;
    font-weight: normal;
    word-wrap: break-word;
    margin: 15px 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.projects .page>.projectsArea>.projects>ul>li>a>figure>figcaption{
        font-size: 3.75vw;
        margin: 3.125vw 0px 0px 0px;
    }
}


/* =========================================================
 * 作品案例內頁
 * ========================================================= */
html.projectsDetail .page{
    width: 100%;
}
html.projectsDetail .page>.project{
    width: calc(100% - 14.8438vw * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5.2083vw 14.8438vw 0px 14.8438vw;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project{
        width: calc(100% - 7.3333vw * 2);
        background-color: transparent;
        background-image: linear-gradient(180deg, rgba(204, 204, 204, 0.7) 0%, rgba(204, 204, 204, 0) 15vw);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 4.26667vw 7.3333vw 0px 7.3333vw;
    }
}

html.projectsDetail .page>.project>article{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
html.projectsDetail .page>.project>article>.title{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
html.projectsDetail .page>.project>article>.title h1{
    color: rgba(0, 0, 0, 1);
    font-size: 1.5vw;
    font-weight: normal;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.title h1{
        font-size: 5.8667vw;
    }
}
html.projectsDetail .page>.project>article>.title h1>em{
    font-size: 1.1vw;
    font-style: normal;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.title h1>em{
        font-size: 3.2vw;
    }
}
html.projectsDetail .page>.project>article>.masonry{
    width: 100%;
    column-count: 2;
    column-gap: 10px;
    margin: 1.5625vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.masonry{
        column-count: unset;
        column-gap: unset;
        margin: 5.3333vw 0px 0px 0px;
    }
}
html.projectsDetail .page>.project>article>.masonry>li{
    break-inside: avoid;
    box-sizing: border-box;
    display: flex;
    margin: 0px 0px 10px 0px;
    overflow: hidden;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.masonry>li{
        break-inside: unset;
        box-sizing: unset;
    }
}
html.projectsDetail .page>.project>article>.masonry>li>figure{
    width: 100%;
    position: relative;
}
html.projectsDetail .page>.project>article>.masonry>li>figure:before{
    content: 'View Fullscreen';
    width: calc(100% - 25px * 2);
    height: calc(100% - 25px * 2);
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    font-size: 0.8vw;
    font-family: var(--langFont-zh-Hant);
    display: none;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 25px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.masonry>li>figure:before{
        font-size: 14px;
    }
}
html.projectsDetail .page>.project>article>.masonry>li:hover>figure:before{
    display: flex;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.masonry>li:hover>figure:before{
        display: none;
    }
}
html.projectsDetail .page>.project>article>.masonry>li>figure>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}
html.projectsDetail .page>.project>article>.masonry>li:hover>figure>img{
    transform: scale(1.02) rotate(0.03deg);
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.masonry>li:hover>figure>img{
        transform: unset;
    }
}
html.projectsDetail .page>.project>article>.info{
    width: 100%;
    color: rgba(0, 41, 63, 1);
    font-size: 0.9375vw;
    text-align: justify;
    line-height: 2.604167vw;
    margin: 3.3854vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.info{
        font-size: 3.2vw;
        line-height: 200%;
        margin: 5.3333vw 0px 0px 0px;
    }
}
html.projectsDetail .page>.project>article>.info>ul{
    width: 100%;
    line-height: normal;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
html.projectsDetail .page>.project>article>.info>ul>li{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1.5625vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.info>ul>li{
        margin: 3.2vw 0px 0px 0px;
    }
}
html.projectsDetail .page>.project>article>.info>ul>li:first-child{
    margin: 0px;
}
html.projectsDetail .page>.project>article>.info>ul>li>.title{
    border-right: 1px solid rgba(0, 41, 63, 1);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 0.46875vw 0px 0px;
    padding: 0px 0.46875vw 0px 0px;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.info>ul>li>.title{
        margin: 0px 1.875vw 0px 0px;
        padding: 0px 1.875vw 0px 0px;
    }
}
html.projectsDetail .page>.project>article>.info>ul>li>.data{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    align-items: flex-start;
}
html.projectsDetail .page>.project>article>.youtube{
    margin: 1.5625vw 0px 0px  0px;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.youtube{
        width: 15vw;
        margin: 3.2vw 0px 0px 0px;
    }
}
html.projectsDetail .page>.project>article>.youtube img{
    max-width: 100%;
}
html.projectsDetail .page>.project>article>.content,
html.projectsDetail .page>.project>article>.content p{
    width: 100%;
    color: #3E3A39;
    font-size: 0.8vw;
    text-align: justify;
    line-height: 1.5vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 2vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>article>.content,
    html.projectsDetail .page>.project>article>.content p{
        font-size: 3.2vw;
        line-height: 200%;
        margin: 5.3333vw 0px 0px 0px;
    }
}
html.projectsDetail .page>.project>article>.content p:first-child{
    margin: 0px;
}
html.projectsDetail .page>.project>article>.content img{
    max-width: 100%;
}

html.projectsDetail .page>.project>.mainPicture{
    width: calc(100% - 2.6042vw * 2);
    height: calc(100% - 4.1667vw * 2);
    background: #000000;
    /*display: flex;*/
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 4.1667vw 2.6042vw;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture{
        width: calc(100% - 5vw * 2);
        height: calc(100% - 15vw * 2);
        padding: 15vw 5vw;
        overflow-y: auto;
    }
}
html.projectsDetail .page>.project>.mainPicture>.closeBtn{
    width: 2vw;
    height: 2vw;
    background-color: transparent;
    background-image: url(/images/menuCloseBtnWhite.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0px;
    color: transparent;
    position: absolute;
    top: 2.6042vw;
    right: 2.3438vw;
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.closeBtn{
        width: 5vw;
        height: 5vw;
        top: 5vw;
        right: 5vw;
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer{
    width: 100%;
    max-height: 44.2708vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer{
        max-height: 850px;
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>figure{
    width: 70.3125vw;
    max-width: 1350px;
    height: 44.2708vw;
    max-height: 850px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 1;
    justify-content: center;
    align-items: center;
    margin: 0px 2.8646vw;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>figure{
        width: 90vw;
        max-width: auto;
        height: 90vw;
        max-height: auto;
        margin: 0px;
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>figure>img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center center;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>figure>img{
        position: relative;
    }
}
.page>.newsArea>.newsList>article>.news>li figure>figcaption{
    display: none;
}
html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button{
    width: 1.5625vw;
    height: 3.125vw;
    background: transparent;
    border: 0px;
    color: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button{
        width: 10vw;
        height: 10vw;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        position: absolute;
        z-index: 2;
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button:before{
    content: '';
    width: 1.5625vw;
    height: 1.5625vw;
    border-left: 2px solid rgba(255, 255, 255, 1);
    border-bottom: 2px solid rgba(255, 255, 255, 1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button:before{
        width: 2.5vw;
        height: 2.5vw;
        border-left: 1px solid rgba(255, 255, 255, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 1);
    }
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button.prev{
        left: 0.5vw;
    }
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button.prev:before{
        left: calc((10vw / 2) - (2.5vw * 1.4142 / 2 / 2));
    }
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button.next{
        right: 0.5vw;
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button.next:before{
    left: calc(-1.5625vw / 2);
    transform: translateY(-50%) rotate(225deg);
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictureVeiwer>button.next:before{
        left: calc((10vw / 2) - (2.5vw * 1.4142 / 2));
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictures{
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 850px - 4.1667vw - 4.1667vw * 2 + 10px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 4.1667vw 0px 0px 0px;
    overflow-y: auto;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictures{
        max-height: calc(100vh - 90vw - 5.3333vw - 4.167vw * 2);
        margin: 5.3333vw 0px 0px 0px;
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictures>ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}
html.projectsDetail .page>.project>.mainPicture>.pictures>ul>li{
    /*width: 9vw;*/
    height: 5.6vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    margin: 0px 5px 10px 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.projectsDetail .page>.project>.mainPicture>.pictures>ul>li{
        height: 13.3333vw;
        margin: 0px 2.5px 5px 2.5px;
    }
}
html.projectsDetail .page>.project>.mainPicture>.pictures>ul>li:after{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0px;
    left: 0px;
}
html.projectsDetail .page>.project>.mainPicture>.pictures>ul>li.current:after{
    display: none;
}
html.projectsDetail .page>.project>.mainPicture>.pictures>ul>li:hover{
    animation: 0.3s linear 0s normal forwards 1 animationFadeIn70;
}
html.projectsDetail .page>.project>.mainPicture>.pictures>ul>li>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}


/* =========================================================
 * 部落格
 * ========================================================= */
html.blog .page>.blogArea{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 4.1667vw 0px 0px 0px;
}
html.blog .page>.blogArea>h1{
    width: 7.2396vw;
    height: 2.3132vw;
    background-color: transparent;
    background-image: url(/images/blog.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.blog .page>.blogArea>h1{
        width: 68.1844vw;
        height: 7.1063vw;
        font-size: 8vw;
    }
}
html.blog .page>.blogArea>h2{
    color: #3E3A39;
    font-weight: normal;
    font-size: 1vw;
    margin: 1.302vw 0px 2.8646vw 0px;
    padding: 1.302vw 0px 0px 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    html.blog .page>.blogArea>h2{
        border: 0px;
        font-size: 3.2vw;
        margin: 5.333vw 0px 0px 0px;
        padding: 5.333vw 0px 0px 0px;
    }
}
html.blog .page>.blogArea>h2:before{
    content: '';
    width: 3.125vw;
    border-top: 1px solid #3E3A39;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    html.blog .page>.blogArea>h2:before{
        width: 15.523vw;
    }
}
.page>.blogArea>.searchArea{
    width: calc(100% - 3.125vw * 2);
    max-width: 1200px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px 3.125vw;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.searchArea{
        width: calc(100% - 4.8vw * 2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 10.6667vw 0px 0px 0px;
        padding: 0px 4.8vw;
    }
}
.page>.blogArea>.searchArea>div{
    border-bottom: 1px solid #000000;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.searchArea>div{
        width: 100%;
        padding: 4vw 0px;
    }
}
.page>.blogArea>.searchArea>div:last-child{
    width: 29.5833%;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0px 0px 0px 25px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.searchArea>div:last-child{
        width: 100%;
        margin: 4vw 0px 0px 0px;
    }
}
.page>.blogArea>.searchArea>div>select{
    background: transparent;
    border: 0px;
    font-size: 1.28rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: space-between;
    align-items: center;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.searchArea>div>select{
        font-size: 3.7333vw;
    }
}
.page>.blogArea>.searchArea>div>input[type='search']{
    background: transparent;
    border: 0px;
    font-size: 1.28rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: space-between;
    align-items: center;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.searchArea>div>input[type='search']{
        font-size: 3.7333vw;
    }
}
.page>.blogArea>.searchArea>div>input[type='submit']{
    width: 20px;
    height: 20px;
    background-color: transparent;
    background-image: url(/images/iconSearch.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0px;
    color: transparent;
    flex-grow: 0;
    flex-shrink: 0;
    cursor: pointer;
}
.page>.blogArea>.result{
    width: calc(100% - 3.125vw * 2);
    max-width: 1200px;
    font-size: 1.28rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 1.5625vw 0px 0px 0px;
    padding: 0px 3.125vw;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.result{
        width: calc(100% - 4.8vw * 2);
        font-size: 3.7333vw;
        justify-content: flex-start;
        margin: 0.88rem 0px 0px 0px;
        padding: 0px 4.8vw;
    }
}
.page>.blogArea>.blogList{
    width: calc(100% - 3.125vw * 2);
    max-width: 1200px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 2.0833vw 0px 0px 0px;
    padding: 0px 3.125vw;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList{
        width: calc(100% - 4.8vw * 2);
        margin: 8.8vw 0px 0px 0px;
        padding: 0px 4.8vw;
    }
}
.page>.blogArea>.blogList>li{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 0px 3.9063vw 0px;
    padding: 0px 0px 2.6042vw 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li{
        margin: 0px 0px 8vw 0px;
        padding: 0px 0px 8vw 0px;
    }
}
.page>.blogArea>.blogList>li:after{
    content: '';
    width: 10vw;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 1);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li:after{
        width: 23.7333vw;
    }
}
.page>.blogArea>.blogList>li:last-child:after{
    display: none;
}
.page>.blogArea>.blogList>li figure{
    width: 100%;
    max-height: 800px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    position: relative;
    overflow: hidden;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li figure{
        max-height: auto;
    }
}
.page>.blogArea>.blogList>li figure>img{
    max-width: 100%;
}
.page>.blogArea>.blogList>li>.categories{
    font-weight: bold;
    font-size: 1.28rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    align-items: center;
    margin: 1.2rem 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li>.categories{
        font-size: 3.7333vw;
    }
}
.page>.blogArea>.blogList>li>.categories>li{
    cursor: pointer;
}
.page>.blogArea>.blogList>li>.categories>li:before{
    content: '．';
    cursor: default;
}
.page>.blogArea>.blogList>li>.categories>li:first-child:before{
    display: none;
}
.page>.blogArea>.blogList>li>.date{
    color: #8A8A8A;
    font-size: 1.28rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-end;
    align-items: center;
    margin: 1.2rem 0px 1.2rem 25px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li>.date{
        font-size: 3.7333vw;
        flex-grow: 1;
        flex-shrink: 1;
        justify-content: flex-start;
        order: 3;
        margin: 0.88rem 0px 0px 0px;
    }
}
.page>.blogArea>.blogList>li>h3{
    width: 100%;
    font-size: 2.304rem;
    font-weight: normal;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0px 0px 1.4rem 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li>h3{
        font-size: 1.5086rem;
    }
}
.page>.blogArea>.blogList>li>p{
    color: rgba(0, 0, 0, 1);
    font-size: 1.28rem;
    text-align: justify;
    line-height: 250%;
    margin: 0px 0px 1.28rem 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li>p{
        font-size: 3.2vw;
        margin: 0px 0px 0.7543rem 0px;
    }
}
.page>.blogArea>.blogList>li>p:last-of-type{
    margin: 0px;
}
.page>.blogArea>.blogList>li>.buttonArea{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 1rem 0px 0px 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.blogList>li>.buttonArea{
        width: auto;
        flex-grow: 0;
        flex-shrink: 0;
        order: 4;
        margin: 0.88rem 0px 0px 0px;
    }
}
.page>.blogArea>.blogList>li>.buttonArea>.more{
    color: #00293F;
    font-size: 1.28rem;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 1023px){
    .page>.blogArea>.blogList>li>.buttonArea>.more{
        font-size: 3.7333vw;
    }
}
.page>.blogArea>.blogList>li>.buttonArea>.more:after{
    content: '';
    width: 0.64rem;
    height: 0.64rem;
    color: #00293F;
    border-style: solid;
    border-width: 1px 1px 0px 0px;
    display: flex;
    margin: 2px 0px 0px 0.384rem;
    position: relative;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (orientation: portrait) and (max-width: 1023px){
    .page>.blogArea>.blogList>li>.buttonArea>.more:after{
        width: 0.44rem;
        height: 0.44rem;
        margin: 2px 0px 0px 0.264rem;
    }
}

.page>.blogArea>article{
    width: calc(100% - 3.125vw * 2);
    max-width: 1200px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 4.1667vw 0px 0px 0px;
    padding: 0px 3.125vw;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article{
        width: calc(100% - 4.8vw * 2);
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        margin: 8vw 0px 0px 0px;
        padding: 0px 4.8vw;
    }
}
.page>.blogArea>article>.title{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: stretch;
    margin: 4.1667vw 0px 5.2083vw 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title{
        flex-direction: column;
        margin: 0px 0px 8vw 0px;
    }
}
.page>.blogArea>article>.title>.left{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: space-between;
    align-items: flex-start;
}
.page>.blogArea>article>.title>.left>h1{
    width: 100%;
    font-size: 3.2rem;
    font-weight: normal;
    text-align: justify;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0px 0px 2.24rem 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.left>h1{
        font-size: 6.4vw;
        margin: 0px 0px 1rem 0px;
    }
}
.page>.blogArea>article>.title>.left>.categories{
    font-weight: bold;
    font-size: 1.28rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.left>.categories{
        font-size: 4.3077vw;
    }
}
.page>.blogArea>article>.title>.left>.categories>li{
    cursor: pointer;
}
.page>.blogArea>article>.title>.left>.categories>li:before{
    content: '．';
    cursor: default;
}
.page>.blogArea>article>.title>.left>.categories>li:first-child:before{
    display: none;
}
.page>.blogArea>article>.title>.right{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: flex-end;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.right{
        flex-direction: row-reverse;
        margin: 3.2vw 0px 0px 0px;
    }
}
.page>.blogArea>article>.title>.right>.shareTools{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
}
.page>.blogArea>article>.title>.right>.shareTools>li{
    background-color: transparent;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0px;
    color: transparent;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 12px 1vw;
    cursor: pointer;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.right>.shareTools>li{
        margin: 0px 2.6667vw;
    }
}
.page>.blogArea>article>.title>.right>.shareTools>li.facebook{
    width: 14.6602px;
    height: 28px;
    background-image: url(/images/shareFacebook.svg);
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.right>.shareTools>li.facebook{
        width: 2.1749vw;
        height: 4.1539vw;
    }
}
.page>.blogArea>article>.title>.right>.shareTools>li.twitter{
    width: 34.4507px;
    height: 28px;
    background-image: url(/images/shareTwitter.svg);
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.right>.shareTools>li.twitter{
        width: 5.1109vw;
        height: 4.5151vw;
    }
}
.page>.blogArea>article>.title>.right>.shareTools>li.link{
    width: 23.5938px;
    height: 25px;
    background-image: url(/images/shareLink.svg);
    position: relative;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.right>.shareTools>li.link{
        width: 3.5002vw;
        height: 3.7089vw;
    }
}
.page>.blogArea>article>.title>.right>.shareTools>li.link>.shareLink{
    max-width: 80vw;
    background: #EEEEEE;
    border-radius: 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    position: absolute;
    top: calc(100% + 20px);
    right: -20px;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.5));
}
.page>.blogArea>article>.title>.right>.shareTools>li.link>.shareLink:after{
    content: '';
    border-width: 0 15px 15px 15px;
    border-style: solid;
    border-color: transparent transparent #EEEEEE transparent;
    position: absolute;
    bottom: 100%;
    right: 0px;
    transform: translateX(-50%);
}
.page>.blogArea>article>.title>.right>.shareTools>li.link>.shareLink>input[type='text']{
    border: 0px;
    border-radius: 3px;
    color: #00293F;
    padding: 5px 10px;
}
.page>.blogArea>article>.title>.right>.shareTools>li.link>.shareLink>input[type='text']::selection{
    background: #595757;
    color: #FFFFFF;
}
.page>.blogArea>article>.title>.right>.shareTools>li.link>.shareLink>input[type='button']{
    border: 0px;
    color: #FFFFFF;
    background: #00293F;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0px 0px 0px 5px;
}

.page>.blogArea>article>.title>.right>.date{
    color: #8A8A8A;
    font-size: 1.28rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-end;
    align-items: center;
    margin: 1.2rem 0px 1.2rem 25px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.title>.right>.date{
        font-size: 4.3077vw;
        flex-grow: 1;
        flex-shrink: 1;
        justify-content: flex-start;
        margin: 0px;
    }
}
.page>.blogArea>article>.content p{
    font-size: 1.28rem;
    text-align: justify;
    line-height: 250%;
    margin: 0px 0px 2rem 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>article>.content p{
        font-size: 3.2vw;
        line-height: 200%;
        margin: 0px 0px 6.4vw 0px;
    }
}
.page>.blogArea>article>.content p:last-child{
    margin: 0px;
}
.page>.blogArea>article>.content *{
    max-width: 100%;
}
.page>.blogArea>article>.content img{
    display: block;
}
.page>.blogArea>article>.content .youtube{
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
}
.page>.blogArea>article>.content .youtube>iframe{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

html.blogDetail .page>.blogArea>h2{
    width: calc(100% - 3.125vw * 2);
    max-width: 1200px;
    border-bottom: 1px solid #000000;
    font-weight: normal;
    font-size: 2.56rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 2.56rem 3.125vw 1.92rem 3.125vw;
    padding: 1.92rem 0px;
}
@media screen and (orientation: portrait){
    html.blogDetail .page>.blogArea>h2{
        width: calc(100% - 4.8vw * 2);
        font-size: 4.5333vw;
        margin: 10.6667vw 4.8vw 6.6667vw 4.8vw;
        padding: 0px 0px 4.5333vw 0px;
    }
}
.page>.blogArea>.others{
    width: calc(100% - 3.125vw * 2);
    max-width: 1200px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0rem 0px 1.92rem 0px;
    padding: 0px 3.125vw;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.others{
        width: calc(100% - 4.8vw * 2);
        margin: 0px;
        padding: 0px 4.8vw;
    }
}
.page>.blogArea>.others>li{
    font-size: 1.792rem;
    line-height: 150%;
    text-align: justify;
    margin: 0rem 0px 1.92rem 0px;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.others>li{
        font-size: 4.5333vw;
        margin: 0rem 0px 4.5333vw 0px;
    }
}
.page>.blogArea>.others>li:last-child{
    margin: 0px;
}
.page>.blogArea>.tags{
    width: calc(100% - 3.125vw * 2);
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.7292vw 0.7292vw;
    margin: 0px 3.125vw;
    padding: 1.92rem 0px 0px 0px;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.tags{
        width: calc(100% - 4.8vw * 2);
        gap: 1.3333vw 1.3333vw;
        margin: 0px 4.8vw;
        padding: 8vw 0px 0px 0px;
    }
}
.page>.blogArea>.tags>li{
    height: 40px;
    border: 1px solid #9FA0A0;
    color: #9FA0A0;
    font-size: 16px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 40px;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    .page>.blogArea>.tags>li{
        height: 12vw;
        border: 0.26667vw solid #9FA0A0;
        font-size: 4.2667vw;
        padding: 0px 5.3333vw;
    }
}
.page>.blogArea>.tags>li:after{
    content: '+';
}

/* =========================================================
 * 消息
 * ========================================================= */
html.news .page>.newsArea{
    width: calc(100% - 3.125vw * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: stretch;
    margin: 7.2917vw 0px 0px 0px;
    padding: 0px 3.125vw;
}
@media screen and (orientation: portrait){
    html.news .page>.newsArea{
        width: calc(100% - 7.3333vw * 2);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 10.1333vw 0px 14.6667vw 0px;
        padding: 0px 7.3333vw;
    }
}
html.news .page>.newsArea>.newsType{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (orientation: portrait){
    html.news .page>.newsArea>.newsType{
        width: 100%;
        margin: 0px 0px 13.3333vw 0px;
        padding: 0px 0px 13.3333vw 0px;
        position: relative;
    }
    html.news .page>.newsArea>.newsType:after{
        content: '';
        width: 13.333vw;
        border-bottom: 1px solid rgba(0, 0, 0, 1);
        position: absolute;
        left: 0px;
        bottom: -1px;
    }
}
html.news .page>.newsArea>.newsType>ul{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;;
    align-items: flex-start;
}
html.news .page>.newsArea>.newsType>ul>li{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 0px 1.5625vw 0px;
}
html.news .page>.newsArea>.newsType>ul>li{
    width: 100%;
    color: rgba(62, 58, 51, 1);
    font-size: 0.8vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.news .page>.newsArea>.newsType>ul>li{
        margin: 0px 0px 4vw 0px;
    }
    html.news .page>.newsArea>.newsType>ul>li:last-child{
        margin: 0px;
    }
}
@media screen and (orientation: portrait){
    html.news .page>.newsArea>.newsType>ul>li{
        font-size: 3.75vw;
    }
}
html.news .page>.newsArea>.newsType>ul>li.current{
    color: rgba(0, 41, 63, 1);
    font-weight: bold;
}

.page>.newsArea>.newsList{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 8.333vw 0px 11.4583vw;
}
@media screen and (orientation: portrait){
    .page>.newsArea>.newsList{
        margin: 0px;
    }
}
.page>.newsArea>.newsList>article{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
}
.page>.newsArea>.newsList>article>.news{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page>.newsArea>.newsList>article>.news>li{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.page>.newsArea>.newsList>article>.news>li.gap{
    margin: 0px 0px 6.5104vw 0px;
    padding: 0px 0px 6.5104vw 0px;
}
@media screen and (orientation: portrait){
    .page>.newsArea>.newsList>article>.news>li.gap{
        margin: 0px 0px 9.3333vw 0px;
        padding: 0px 0px 9.33337vw 0px;
    }
}
.page>.newsArea>.newsList>article>.news>li.gap:after{
    content: '';
    width: 10vw;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 1);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    .page>.newsArea>.newsList>article>.news>li.gap:after{
        width: 13.3333vw;
    }
}
.page>.newsArea>.newsList>article>.news>.gap:last-child:after{
    display: none;
}
.page>.newsArea>.newsList>article>.news>li figure{
    max-height: 800px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    position: relative;
    overflow: hidden;
}
@media screen and (orientation: portrait){
    .page>.newsArea>.newsList>article>.news>li figure{
        max-height: auto;
    }
}
.page>.newsArea>.newsList>article>.news>li figure>img{
    max-width: 100%;
    margin: 0px 0px 5vh 0px;
}
@media screen and (orientation: portrait){
    .page>.newsArea>.newsList>article>.news>li figure>img{
        margin: 0px 0px 5.333vw 0px;
    }
}
.page>.newsArea>.newsList>article>.news>li figure>figcaption{
    display: none;
}
.page>.newsArea>.newsList>article>.news>li p{
    color: rgba(0, 0, 0, 1);
    font-size: 0.8vw;
    text-align: justify;
    line-height: 1.5vw;
    margin: 0px 0px 2vw 0px;
}
@media screen and (orientation: portrait){
    .page>.newsArea>.newsList>article>.news>li p{
        font-size: 3.75vw;
        line-height: 6.2vw;
        margin: 0px 0px 9.333vw 0px;
    }
}
.page>.newsArea>.newsList>article>.news>li p:last-child{
    margin: 0px;
}



/* =========================================================
 * 諮詢
 * ========================================================= */
html.consultation .page>.consultationArea{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
}
html.consultation .page>.consultationArea>.consultation{
    max-width: 1350px;
    width: 70.3125vw;
    color: #3E3A39;
    font-family: Microsoft JhengHei light, Microsoft JhengHei, Arial;
    font-size: 0.8vw;
    font-weight: normal;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 4.1667vw 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation{
        width: calc(100% - 7.3333vw * 2);
        font-size: 3.2vw;
        justify-content: center;
        padding: 8vw 7.3333vw;
    }
}
html.consultation .page>.consultationArea>.consultation>h1{
    width: 22.1875vw;
    height: 2.2916vw;
    background-color: transparent;
    background-image: url(/images/consultation.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>h1{
        width: 68.1844vw;
        height: 7.1063vw;
        font-size: 8vw;
    }
}
html.consultation .page>.consultationArea>.consultation>h2{
    color: #3E3A39;
    font-weight: normal;
    font-size: 1vw;
    margin: 1.302vw 0px 0px 0px;
    padding: 1.302vw 0px 0px 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>h2{
        font-size: 3.2vw;
        margin: 5.333vw 0px 0px 0px;
        padding: 5.333vw 0px 0px 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>h2:before{
    content: '';
    width: 3.125vw;
    border-top: 1px solid #3E3A39;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>h2:before{
        width: 15.523vw;
    }
}
html.consultation .page>.consultationArea>.consultation>.form{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 7.0313vw 0px 0px 0px;
}
html.consultation .page>.consultationArea>.consultation>.form>.block{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 0px 4.1667vw 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block{
        margin: 6.6667vw 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block:last-of-type{
    margin: 0px;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 3.125vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row{
        flex-direction: column;
        margin: 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row:first-of-type{
    margin: 0px;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div{
    width: calc((100% - 1.8229vw) / 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 1.8229vw 0px 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div{
        width: 100%;
        margin: 0px 0px 8vw 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div:nth-child(even){
    margin: 0px 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div:nth-child(even){
        margin: 0px 0px 8vw 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>.from{
    width: 100%;
    margin: 0px 0px 0px 0px;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.required>label{
    width: 100%;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.required>label:after{
    content: '*';
    margin: 0px 0px 0px 5px;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='text'],
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='email'],
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='tel'],
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='number'],
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='date'],
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>select{
    width: calc(100% - 5px * 2);
    height: 1.771vw;
    border: 0px;
    border-bottom: 1px solid #3E3A39;
    font-size: 0.8vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0.5208vw 0px 0px 0px;
    padding: 0px 5px;
    position: relative;
    outline: none;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='text'],
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='email'],
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='tel'],
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='number'],
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='date'],
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>select{
        height: 4.8vw;
        font-size: 3.2vw;
        margin: 1.3333vw 0px 0px 0px;
    }
}

html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>select{
    width: 100%;
    background-color: transparent;
    background-image: url(/images/IconArrow.svg);
    background-size: 0.6771vw auto;
    background-position: right 7px center;
    background-repeat: no-repeat;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>select{
        background-size: 2.044vw auto;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='date']::-webkit-calendar-picker-indicator{
    width: 1.1979vw;
    background-color: transparent;
    background-image: url(/images/iconCalander.svg);
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='date']{
        background: transparent;
    }
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='date']::-webkit-calendar-picker-indicator{
        width: 3.3678vw;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='date'].empty{
    color: #DCDDDD;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='text'].date{
    background-color: transparent;
    background-image: url(/images/iconCalander.svg);
    background-size: 1.1979vw auto;
    background-position: right 7px center;
    background-repeat: no-repeat;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input[type='text'].date{
        background-size: 3.3678vw auto;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div>input::placeholder{
    color: #DCDDDD;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.budget,
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.urgency,
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.others{
        flex-wrap: wrap;
    }
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.budget select,
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.urgency select,
    html.consultation .page>.consultationArea>.consultation>.form>.block>.row>div.others input[type='text']{
        width: 100%;
        margin: 8vw 0px 0px 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table{
    width: 100%;
    display: table;
    border-spacing: 0px 0.3125vw;
    margin: 1.5625vw 0px 0px 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.table{
        border-spacing: 0px 1.0667vw;
        margin: 5.3333vw 0px 0px 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table:first-of-type{
    margin: 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.table:last-of-type{
        margin: 0px 0px 5.3333vw 0px;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr{
    display: table-row;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td{
    width: 12.5926%;
    height: 2.2917vw;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td{
        width: 10.8%;
        height: 7vw;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td:first-child{
    width: auto;
    text-align: left;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr:nth-child(even)>.td{
    background: #EFEFEF
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td>input[type='radio']{
    width: 1.1458vw;
    height: 1.1458vw;
    background: #FFFFFF;
    border: 1px solid #9FA0A0;;
    border-radius: 50%;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td>input[type='radio']{
        width: 3.4667vw;
        height: 3.4667vw;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td>input[type='radio']:before{
    content: '';
    width: 60%;
    height: 60%;
    border-radius: 50%;
    margin: 20% auto;n
    display: block;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td>input[type='radio']:before{
        width: 80%;
        height: 80%;
        margin: 10% auto;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td>input[type='radio']:checked:before{
    background: #231815;
}
html.consultation .page>.consultationArea>.consultation>.form>.block>.table>.tr>.td>input[type='radio']:checked{
    border-color: #231815;
}
html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea{
        flex-wrap: wrap;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea>img{
    height: 2.5781vw;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea>img{
        height: 9.3333vw;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea>input[type='text']{
    width: calc(10.4167vw - 1px * 2);
    height: calc(2.5781vw - 1px * 2);
    border: 1px solid #3E3A39;
    border-left: 0px;
    text-align: center;
    padding: 0px;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea>input[type='text']{
        width: auto;
        height: calc(9.3333vw - 1px * 2);
        border-left: 1px solid #3E3A39;
        font-size: 3.2vw;
        flex-grow: 1;
        flex-shrink: 1;
        margin: 0px 0px 0px 1.3333vw;
    }
}
html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea>input[type='submit']{
    width: 15.625vw;
    height: 2.5781vw;
    background: #3E3A39;
    border: 0px;
    color: #FFFFFF;
    margin: 0px 0px 0px 1.3021vw;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.consultation .page>.consultationArea>.consultation>.form>.block.buttonArea>input[type='submit']{
        width: 100%;
        height: 9.3333vw;
        font-size: 3.2vw;
        margin: 2.1333vw 0px 0px 0px;
    }
}

html.consultation .formLink{
    width: calc(100% - 4.1667vw * 2);
    background: #595757;
    color: #FFFFFF;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4.1667vw;
}
@media screen and (orientation: portrait){
    html.consultation .formLink{
        width: calc(100% - 10.6667vw * 2);
        padding: 13.3333vw 10.6667vw;
    }
}
html.consultation .formLink>h2{
    width: 34.8958vw;
    height: 2.3132vw;
    background-color: transparent;
    background-image: url(/images/letUsKnowYouMore.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    color: transparent;
    -webkit-user-select: none;
}
@media screen and (orientation: portrait){
    html.consultation .formLink>h2{
        width: 78.9333vw;
        height: 19.859vw;
        background-image: url(/images/letUsKnowYouMorePortrait.svg);
        font-size: 8vw;
    }
}
html.consultation .formLink>h3{
    font-weight: normal;
    font-size: 1vw;
    margin: 1.5625vw 0px 0px 0px;
    padding: 1.5625vw 0px 0px 0px;
    position: relative;
}
@media screen and (orientation: portrait){
    html.consultation .formLink>h3{
        font-size: 3.2vw;
        margin: 4.2667vw 0px 0px 0px;
        padding: 4.2667vw 0px 0px 0px;
    }
}
html.consultation .formLink>h3:before{
    content: '';
    width: 3.125vw;
    border-top: 1px solid #FFFFFF;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (orientation: portrait){
    html.consultation .formLink>h3:before{
        width: 10vw;
    }
}
html.consultation .formLink>input[type='button']{
    width: 12.5vw;
    height: 2.6042vw;
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 1vw;
    margin: 1.8229vw 0px 0px 0px;
    cursor: pointer;
}
@media screen and (orientation: portrait){
    html.consultation .formLink>input[type='button']{
        width: 64vw;
        height: 10.1333vw;
        margin: 8vw 0px 0px 0px;
    }
}

/* =========================================================
 * OOPS
 * ========================================================= */
html.oops .page{
    flex-direction: column;
}
html.oops .page>.oopsArea{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
html.oops .page>.oopsArea .sorry{
    width: 23.6740vw;
    margin: 0px 0px 1.5625vw 0px;
}
@media screen and (orientation: portrait){
    html.oops .page>.oopsArea .sorry{
        width: 58.1333vw;
        margin: 0px 0px 5.3333vw 0px;
    }
    html.oops .page>.oopsArea p{
        font-size: 3.75vw;
        text-align: center;
        margin: 0px 0px 2.6667vw 0px;
    }
}


/* =========================================================
 * Go To Top
 * ========================================================= */
#wrap>.goToTop{
    width: calc(100% - 3.125vw * 2);
    background: transparent;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 3vh 3.125vw 6vh 3.125vw;
    position: relative;
}
@media screen and (orientation: portrait){
    #wrap>.goToTop{
        width: calc(100% - 4.2667vw * 2) !important;
        justify-content: center;
        align-items: center;
        padding: calc(4.2667vw * 2) 4.2667vw 4.2667vw 4.2667vw !important;
    }
}
html.index #wrap>.goToTop{
    width: calc(100% - 5.20833vw * 2);
    padding: 3vh 5.20833vw;
}
@media screen and (orientation: portrait){
    html.index #wrap>.goToTop{
        padding: 6.6667vw 4.2667vw 12vw 4.2667vw !important;
    }
}
html.about #wrap>.goToTop{
    width: calc(100% - 14.84375vw * 2);
    background: #FFFFFF;
    padding: 3vh 14.84375vw 6vh 14.84375vw;
}
html.indexProjects #wrap>.goToTop,
html.projectsDetail #wrap>.goToTop,
html.media #wrap>.goToTop,
html.awards #wrap>.goToTop,
html.contact #wrap>.goToTop{
    width: calc(100% - 14.84375vw * 2);
    padding: 3vh 14.84375vw 6vh 14.84375vw;
}
#wrap>.goToTop>input[type='button']{
    width: 1.25vw;
    height: 1.25vw;
    background: transparent;
    border-top: 0px;
    border-right: 1px solid rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    border-left: 0px;
    color: transparent;
    transform: rotate(225deg);
    cursor: pointer;
}
@media screen and (orientation: portrait){
    #wrap>.goToTop>input[type='button']{
        width: auto;
        height: auto;
        border: 0px !important;
        color: rgba(62, 58, 57, 1);
        font-size: 3.2vw;
        transform: unset;
    }
}


/* =========================================================
 * 頁尾區塊
 * ========================================================= */
#wrap>footer{
    width: calc(100% - 40px * 2);
    background-color: rgba(181, 181, 182, 1);
    color: #FFFFFF;
    font-family: Microsoft JhengHei light, Microsoft JhengHei, Arial;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    line-height: 1.4874953vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 40px;
    position: relative;
}
@media screen and (orientation: portrait){
    #wrap>footer{
        width: calc(100% - 4.8vw * 2);
        font-size: 4vw;
        line-height: 200%;
        padding: 4.8vw;
    }
}
#wrap>footer>div:last-child{
    border-top: 1px solid #FFFFFF;
}

#wrap>footer>.locationArea{
    width: calc(100% - 100px * 2);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 35px 100px 0px 100px;
}
@media screen and (orientation: portrait){
    #wrap>footer>.locationArea{
        width: 100%;
        padding: 0px;
    }
}
#wrap>footer>.locationArea>ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
@media screen and (orientation: portrait){
    #wrap>footer>.locationArea>ul{
        flex-wrap: nowrap;
        flex-direction: column;
    }
}
#wrap>footer>.locationArea>ul>li{
    width: 300px;
    line-height: normal;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 10px 35px 10px;
}
@media screen and (orientation: portrait){
    #wrap>footer>.locationArea>ul>li{
        width: 100%;
        margin: 0px 0px 20px 0px;
    }
}
#wrap>footer>.locationArea>ul>li>p>em{
    font-style: normal;
    margin: 0px 0px 0px 5px;
}
#wrap>footer>.locationArea>ul>li>p>em:first-child{
    margin: 0px;
}
#wrap>footer>.infoArea{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea{
        height: auto;
        font-size: 3.2vw;
        flex-direction: column;
        order: 2;
    }
}
#wrap>footer>.infoArea>.socialArea{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.socialArea{
        width: 100%;
        margin: 2vw 0px 0px 0px;
    }
}
#wrap>footer>.infoArea>.socialArea>ul{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.socialArea>ul{
        width: 100%;
        margin: 0px;
    }
}
#wrap>footer>.infoArea>.socialArea>ul>li{
    margin: 0px 0px 0px 8px;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.socialArea>ul>li{
        line-height: 0px;
        margin: 0px 3.2vw 0px 0px;
    }
}
#wrap>footer>.infoArea>.socialArea>ul>li img{
    max-width: 30px;
    max-height: 30px;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.socialArea>ul>li img{
        width: 8vw;
        height: 8vw;
    }
}
#wrap>footer>.infoArea>.socialArea>ul>li:first-child{
    margin: 0px;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.socialArea>ul>li:first-child{
        margin: 0px 3.2vw 0px 0px;
    }
    #wrap>footer>.infoArea>.socialArea>ul>li:last-child{
        margin: 0px;
    }
}
#wrap>footer>.infoArea>.othersInfo{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0px 0px 0px 15px;
}
#wrap>footer>.infoArea>.othersInfo>.slogan{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.othersInfo>.slogan{
        flex-wrap: wrap;
        justify-content: center;
        margin: 0px;
        order: 3;
    }
}
#wrap>footer>.infoArea>.othersInfo>.slogan>span{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
#wrap>footer>.infoArea>.othersInfo>.copyright{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.othersInfo>.copyright{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        margin: 6vw 0px 0px 0px;
    }
}
#wrap>footer>.infoArea>.othersInfo>.copyright em{
    font-style: normal;
    margin: 0px 0px 0px 0.520833vw;
}
@media screen and (orientation: portrait){
    #wrap>footer>.infoArea>.othersInfo>.copyright em{
        margin: 0px 0px 3.75vw 0px;
        padding: 0px 0px 3.75vw 0px;
        position: relative;
    }
    #wrap>footer>.infoArea>.othersInfo>.copyright em:before{
        content: '';
        width: 13.3333vw;
        border-bottom: 1px solid rgba(255, 255, 255, 1);
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
}

#wrap>footer a{
    color: #FFFFFF;
}

.lineChat{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
}
@media screen and (orientation: portrait){
    .lineChat{
        right: 10px;
        bottom: 10px;
        z-index: 9;
    }
}
.lineChat>input[type='button']{
    width: 60px;
    height: 60px;
    background-color: transparent;
    background-image: url(/images/iconLine.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0px;
    border-radius: 50%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    color: transparent;
    position: relative;
    top: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, top 0.3s;
}
@media screen and (orientation: portrait){
    .lineChat>input[type='button']{
        width: 45px;
        height: 45px;
        box-shadow: 3.75px 3.75px 7.5px rgba(0, 0, 0, 0.3);
    }
}
.lineChat>input[type='button']:hover{
    box-shadow: 7px 7px 14px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
    top: -10px;
}
@media screen and (orientation: portrait){
    .lineChat>input[type='button']:hover{
        box-shadow: 5.25px 5.25px 10.5px rgba(0, 0, 0, 0.3);
    }
}