@charset "utf-8";
/*
designed and coded by Dorgel Chung 202002
last updated in 202602
*/

/*--------------------
global
--------------------*/
:root {
    --color-bg-emp:  #fff;
    --color-bg-pri:  #f6f6f6;
    --color-bg-sec:  #eee;
    --color-deco:    #d9d9d9;
    --color-txt-sec: #888;
    --color-txt-pri: #3c3c3c;
    --color-txt-emp: #282828;
    
    --color-floor:   #e6e6e6;
    --color-bench:   #d9d9d9;
}

html {
    font-size: 100px;
}
body {
    position: relative;
    height: auto;
    font-size: .14rem;
    color: var(--color-txt-pri);
    background-color: var(--color-floor);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.noscroll {
    overflow: hidden;
}

* {
    box-sizing: border-box;
}
a {
    color: #32a0b4;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 981px) {
    a:hover {
        color: #64c8dc;
        text-decoration: none;
    }
}
h1, h2, h3, h4, h5, h6 {
    margin: 0; padding: 0;
    font-weight: normal;
}
ul {
    margin: 0; padding: 0;
    list-style: none;
}
p {
    word-break: normal;
    word-wrap: break-word;
}
[class^="icon-"], [class*=" icon-"] {
    position: relative; display: inline-block; 
    top: 1px;
}
::selection {
    color: #fff; background: #ff696e;
}

*,
*:after { 
    transition: 
        color .2s linear, background-color .2s linear, 
        border-color .2s linear, opacity .2s linear;
}
@media screen and (min-width: 981px) {
    *:hover,
    *:hover:after { 
        transition: 
            color .1s linear, background-color .1s linear, 
            border-color .1s linear, opacity .1s linear;
    }
}
.transition { transition: all .3s ease-in-out; }
a * { transition: none; }

.clearfix:after { 
    content: "";
    display: table; clear: both;
    height: 0; line-height: 0;
}


/*--------------------
layout
--------------------*/
header {
    z-index: 120;
    position: fixed;
    top: 36px; left: calc(50vw - 580px);
    width: 160px; min-height: 200px;
    letter-spacing: .03em;
}
nav {
    z-index: 150;
    position: fixed;
    left: 0; bottom: 0;
    width: 100vw; height: 70px;
    padding: 0 calc(50vw - 580px);
    letter-spacing: .03em;
    color: #fff;
    background-color: #c83c46;
    border-top: 0 solid #ff696e;
}
main {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - 150px);
    margin: 40px 0 40px;
    padding: 0 calc(50vw - 580px);
}
footer {
    position: relative;
    display: block;
    width: 100vw; height: 160px;
    padding: 0 calc(50vw - 580px);
    font-size: .12rem; text-align: center;
    letter-spacing: .03em;
    color: #ff696e;
    background-color: #c83c46;
}
    footer p { padding-top: 85px; }
    footer a { color: var(--color-txt-sec); }
    footer:before {
        content: "";
        position: absolute;
        display: block;
        top: 25px; left: calc(50% - 50px);
        width: 100px; height: 50px;
        background: url(img/sitelogo-dorgel-amb.png) no-repeat 0 0 / 100px auto;
    }

/*--------------------
body bg & mask
--------------------*/
.bodybg {
    z-index: -1;
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
}
.bodybg:after {
    content: "";
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
}
.mask {
    z-index: 100;
    position: fixed; display: none;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: var(--color-floor);
    transition: none;
}
    .mask > i {
        position: absolute;
        left: calc(50% - 30px); top: calc(50% - 50px);
        width: 60px; height: 60px;
        line-height: 60px; font-size: 60px;
        text-align: center; color: #64c8dc;
        animation: spin 1s infinite linear;
    }
        @keyframes spin {
            0%   { transform: rotate(0deg)   translateZ(0); }
            100% { transform: rotate(359deg) translateZ(0); }
        }
    .mask > div {
        position: absolute;
        left: calc(50% - 150px); top: calc(50% + 20px);
        width: 300px;
        text-align: center; color: var(--color-txt-sec);
    }
    .mask > div span { color: #32a0b4; }


/*--------------------
head & nav components
--------------------*/
.h-sitelogo {
    display: block;
    width: 160px; height: 200px;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 260px;
}
.h-sitelogo a {
    display: block;
    height: 124px;
    background-position: -160px top;
    background-size: auto 260px;
    opacity: 0;
}
.h-sitelogo a:hover { opacity: 1; }

header .menu {
    margin-top: 30px;
    font-size: 0;
}
header .menu li {
    position: relative; display: block;
    height: 28px;
    margin-bottom: 4px;
    font-size: .14rem;
    transition: all .3s ease-in-out, color .2s linear;
}
header .menu li a {
    display: block;
    padding-left: 5px;
    height: 100%;
    line-height: 28px; 
    font-variant: small-caps;
    color: var(--color-txt-sec);
}
header .menu li a:hover { color: #ff696e; }
header .menu li.current a { color: #ff696e; }
header .menu li.current a:after {
    content: "\2192";
    position: absolute; display: block;
    width: 16px;
    right: 0; top: -1px;
    font-family: "dicon";
}

nav .menu {
    float: left;
    height: 70px;
    padding: 21px 0;
    font-size: 0;
    transition: all .2s linear;
    transform-origin: left center;
}
nav .menu li {
    float: left;
    display: block;
    height: 28px;
    font-size: .15rem; font-variant: small-caps;
    transition: all .2s linear;
}
nav .menu li + li {
    margin-left: 8px;
}
nav .menu li a {
    position: relative; display: inline-block;
    height: 100%;
    margin: 0; padding: 0 8px;
    line-height: 28px; color: #fff; 
}
nav .menu li a:after {
    content: "";
    position: absolute; display: block;
    left: 8px; bottom: 0;
    width: calc(100% - 16px); height: 2px;
    background-color: #ff696e;
    transform: scaleX(0);
    transition: all .2s linear;
}

nav .menu#menu-social {
    float: right;
    margin-right: 4px;
    transform-origin: right center;
}
nav .menu#menu-social li {
    width: 28px;
    font-size: 0;
    background: url(img/menu-social.png) 0 0 / auto 28px;
    border-radius: 99rem;
}
nav .menu#menu-social li#menu-item-db { background-position: 0 0; }
nav .menu#menu-social li#menu-item-wb { background-position: -28px 0; }
nav .menu#menu-social li#menu-item-ig { background-position: -56px 0; }
nav .menu#menu-social li#menu-item-aa { background-position: -84px 0; }
nav .menu#menu-social li + li { margin-left: 16px; }
nav .menu#menu-social li a { width: 28px; padding: 0; }
nav .menu#menu-social li a:after { display: none; }

@media screen and (min-width: 981px) {
    nav .menu li:hover a:after { transform: scaleX(1); }
    nav .menu#menu-social li:hover { background-color: #ff696e; }
    
    nav.compress,
    .single.internal nav.compress {
        height: 38px;
        border-top-width: 1px;
        transform: translate(0, 0); 
    }
    nav.compress .menu { height: 38px; padding: 5px 0; transform: scale(.85); }
    nav.compress .menu li + li { margin-left: 16px; }
    nav.compress .menu#menu-social li + li { margin-left: 18px; }
}
nav .menu li.current a:after { transform: scaleX(1); }

.n-copyright {
    float: right;
    margin-top: 25px;
    line-height: 20px; font-size: 12px;
    text-align: right;
}

.n-sitelogo {
    position: absolute; display: block;
    left: calc(50% - 100px); top: 0;
    width: 200px; height: 60px;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 260px;
}

.n-back, .n-trigger {
    position: absolute; display: block;
    top: 0; left: 0;
    width: 40px; height: 60px;
    font-size: 24px;
    text-align: center; color: #64c8dc;
}
.n-back i, .n-trigger i { width: 100%; line-height: 60px; }
.n-back { opacity: 0; pointer-events: none; }
.n-trigger {
    left: auto; right: 0;
    -webkit-perspective: 60px;
    perspective: 60px;
    z-index: 1;
}
.n-trigger i {
    position: absolute;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.n-trigger i.icon-menu,
.n-trigger.close i.icon-close { transform: rotateY(0deg); }
.n-trigger i.icon-close { transform: rotateY(180deg); }
.n-trigger.close i.icon-menu { transform: rotateY(-180deg); }

.n-sitelogo, .n-back, .n-trigger { display: none; }


/*--------------------
single page
--------------------*/
.single header .menu li { opacity: 0; pointer-events: none; }
    .single header .menu li:nth-child(1) { transform: translate(0, 4px); }
    .single header .menu li:nth-child(2) { transform: translate(0, 8px); }
    .single header .menu li:nth-child(3) { transform: translate(0, 12px); }
    .single header .menu li:nth-child(4) { transform: translate(0, 16px); }
    .single header .menu li:nth-child(5) { transform: translate(0, 20px); }
    .single header .menu li:nth-child(6) { transform: translate(0, 24px); }

.single.internal nav { transform: translate(0, 58px); }
@media screen and (min-width: 981px) {
    .single nav:hover { transform: translate(0, 0); }
}
.single .n-back,
.notfront .n-back { opacity: 1; pointer-events: all; }

.sidebtn {
    z-index: 50;
    position: fixed; display: block;
    right: calc(50vw - 580px + 120px);
    width: 40px; height: 40px;
    line-height: 40px;
    font-size: 40px; text-align: center;
    cursor: pointer;
}
.sidebtn.close   { top: 40px; }
.sidebtn.backtop { top: auto; bottom: 60px; opacity: 0; pointer-events: none; }
.sidebtn.backtop.show { bottom: 80px; opacity: 1; pointer-events: all; }
.sidebtn.backtop:hover { transition: all .3s ease-in-out, color .1s linear; }
/*.internal .sidebtn.backtop { bottom: 10px; }
.internal .sidebtn.backtop.show { bottom: 30px; }*/

.end-symbol {
    font-size: .2rem;
    text-align: center; color: var(--color-deco);
}
.end-symbol:before,
.end-symbol:after {
    content: "—";
    position: relative;
    top: -2px;
    padding: 0 10px;
    font-size: .14rem;
}

/* page transition animation for internal single page */
@keyframes ascend { 
    0%   { transform: translate(0, 40px); opacity: 0; }
    100% { transform: translate(0, 0);    opacity: 1; }
}
@keyframes slideleft { 
    0%   { transform: translate(60vw, 0); opacity: 0; }
    100% { transform: translate(0, 0);    opacity: 1; }
}
.single.internal .pagetrans { animation: ascend .4s 1 ease-in-out; }


/*--------------------
homepage title
--------------------*/
.pagetitle {
    z-index: 80;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 40px;
    margin-bottom: 30px; /*margin: 0 20px 30px;*/
    line-height: 40px; font-size: 0;
    text-align: center; color: #ff696e;
    background-color: rgba(200, 60, 70, .85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.pagetitle span { font-size: .2rem; }
.pagetitle span i { top: 2px; }
.pagetitle .close {
    position: absolute; display: block;
    left: 0; top: 0;
    width: 40px; height: 40px;
    line-height: 41px;
    font-size: 20px; text-align: center;
    color: #64c8dc;
}
.pagetitle .close:hover { color: #fff; }


/*--------------------
img zoom
--------------------*/
.zoom {
    z-index: 1000;
    position: fixed; display: block;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: #111;
    overflow: hidden;
    opacity: 0; pointer-events: none;
    transition: opacity .2s linear;
    transform-origin: center bottom;
    -webkit-overflow-scrolling: touch;
}
.zoom.show { opacity: 1; pointer-events: all; }
.zoom ul {
    display: flex;
    height: calc(100% - 50px);
    cursor: zoom-out;
}
.zoom li {
    display: block;
    width: 100vw; height: 100%;
}
.zoom li img {
    position: relative;
    left: 50%; top: 50%;
    max-width: 100%; max-height: 100%;
    padding: 5px;
    transform: translate(-50%, -50%);
}
.zoom > div {
    position: fixed;
    left: 0; bottom: 0;
    width: 100%; height: 54px;
    line-height: 54px;
    text-align: center; color: #888;
}
.zoom-count.current {
    color: #c83c46;
}
.zoom-control,
.zoom-close,
.zoom-position {
    position: absolute; display: block;
    top: 0;
    width: 50px; height: 54px;
    line-height: 55px; font-size: 20px;
    color: #32a0b4;
    cursor: pointer;
}
.zoom-control.left { left: calc(50% - 70px); }
.zoom-control.right { right: calc(50% - 70px); }
.zoom-control.disable/*,
.zoom-control.disable:hover*/ {
    color: #3c3c3c;
    cursor: default;
}
.zoom-close { display: none; left: 0; }
.zoom-position { right: 0; }
.zoom::selection,
.zoom *::selection {
    color: inherit;
    background: none;
}


/*--------------------
responsive
--------------------*/
@media screen and (max-width: 1200px) {
    
    header { left: calc(50vw - 480px); }
    nav, main, footer, .loading { padding: 0 calc(50vw - 480px); }
    .sidebtn { right: calc(50vw - 480px - 10px); }
    
}


@media screen and (max-width: 980px) {
    
    html { font-size: 106px; height: 100%; }
    body { min-height: 100%; }
    header { display: none; }
    nav, main, footer { display: block; padding: 0; }
    main { min-height: calc(100vh - 180px); margin-top: 0; padding: 60px 0 0; overflow: hidden; }
    footer { height: 120px; color: var(--color-txt-sec); background: none; }
    footer p { padding-top: 70px; opacity: .5; }
    footer:before { top: 10px; background-image: url(img/sitelogo-dorgel-amb-grey.png); opacity: .5;}
    .bodybg, .sidebtn { display: none; }
    .single.internal .pagetrans { animation: slideleft .4s 1 ease-in-out; }
    
    nav {
        top: 0; bottom: auto;
        height: 60px;
    }
    .single.internal nav { transform: translate(0, 0); }
    header .menu, nav .menu/*, .n-sitelogo*/ { opacity: 0; pointer-events: none; }
    header .menu.show, nav .menu.show/*, .n-sitelogo.show*/ { opacity: 1; pointer-events: all; transform: none; }
    nav .menu {
        float: none;
        position: absolute;
        left: 0/*40px*/; top: 0;
        width: 100%/*calc(100% - 80px)*/; height: 120px;
        margin: 0; padding: 88px 0 0;
        text-align: center;
        background-color: #c83c46;
        transform: translate(0, -20px);
        transition: all .3s ease-in-out;
    }
    nav .menu li { float: none; display: inline-block; }
    /*nav .menu li a:hover { background-color: transparent; }
    nav .menu li.current a { background-color: #ff696e; }*/
    nav .menu li.current a:after { bottom: -4px; height: 3px; }
    nav .menu li:first-child {
        display: block; position: absolute;
        top: 12px; left: calc(50% - 52px);
        width: 104px; height: 65px;
        background: url(img/sitelogo-dorgel-amb.png) no-repeat center top / 100% auto;
    }
    nav .menu li:first-child a { width: 100%; height: 100%; font-size: 0; }
    nav .menu li:nth-child(2) { margin-left: 0; }
    nav .menu li a span { display: none; }
    nav .menu#menu-social { display: none; }
    .n-sitelogo, .n-back, .n-trigger { display: block; }
    .n-copyright { display: none; }
    
    .pagetitle {
        position: fixed;
        left: 0; top: 60px;
        width: 100%; margin: 0;
        border-radius: 0;
    }
    .pagetitle .close { display: none; }
    
    .zoom ul { height: calc(100% - 60px); cursor: default; }
    .zoom li { pointer-events: none; }
    .zoom > div { margin-bottom: 10px; }
    .zoom-close { display: block; }
    
}


@media screen and (max-width: 700px) {
    html { font-size: 100px; }
    /*main { padding: 60px 0 0; }*/
    nav .menu li:first-child { letter-spacing: -.03em; }
}

@media screen and (max-width: 340px) {
    html { font-size: 90px; }
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-emp:  #1c1c1c;
        --color-bg-pri:  #222;
        --color-bg-sec:  #282828;
        --color-deco:    #3c3c3c;
        --color-txt-sec: #888;
        --color-txt-pri: #d9d9d9;
        --color-txt-emp: #eee;
        
        --color-floor:   #111;
        --color-bench:   #1c1c1c;
    }
    /*footer { color: #3c3c3c; }*/
}