@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap');
.mx-auto{margin-left:auto;margin-right:auto;}
.h-full{height:100%;}
.w-full{width:100%;}
*{
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
html{
    font-size:16px;
}
body{
    margin:0 auto;
    padding:0;
    font-size:100%;
    font-weight:400;
    font-family:'Noto Sans TC',sans-serif;
    line-height:1.8;
    letter-spacing:1px;
    background-color:#101B1F;
}
/* 漢堡選單開啟時鎖定背景捲動（含行動裝置） */
html.menu-open{
    overflow:hidden;
    height:100%;
}
body.menu-open{
    overflow:hidden;
    position:fixed;
    left:0;
    right:0;
    width:100%;
    touch-action:none;
}
h1{
    font-size:2rem;
    font-weight:600;
    padding-bottom:1rem;
}
p{
    font-size:18px;
    color: #DDDBD0;
    line-height: 1.8;
}
p span{
    display:inline-block;
    vertical-align:middle;
}
a{
    color:#fff;
    text-decoration:none;
}
a:hover{
    opacity:.9;
    -webkit-transition:all .2s ease;
    -o-transition:all .2s ease;
    transition:all .2s ease;
}
.top-nav{
    position:fixed;
    top:24px;
    left:50%;
    transform:translateX(-50%);
    width:380px;
    max-width:calc(100% - 48px);
    height:64px;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-radius:16px;
    background:rgba(16,27,31,.76);
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
    z-index:9999;
    transition:transform .3s ease;
}
.top-nav.top-nav-hidden{
    transform:translate(-50%,calc(-100% - 24px));
}
.top-nav-logo{
    display:flex;
    align-items:center;
}
.top-nav-logo img{
    height:24px;
    width:auto;
    opacity:.8;
}
.top-nav-menu{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:32px;
    height:32px;
    padding:0;
    border:none;
    background:transparent;
    cursor:pointer;
}
.top-nav-menu img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    opacity:.8;
}
.top-nav-panel{
    display:none;
    position:absolute;
    top:calc(100% + 12px);
    left:50%;
    transform:translateX(-50%);
    width:1080px;
    height:427px;
    border-radius:8px;
    background:rgba(255,255,255,.9);
    -webkit-backdrop-filter:blur(4px);
    backdrop-filter:blur(4px);
    flex-direction:row;
    align-items:center;
    padding:24px 64px;
    z-index:10000;
    box-shadow:0 4px 20px rgba(0,0,0,.15);
    gap:24px;
    box-sizing:border-box;
}
.top-nav-panel.is-open{
    display:flex;
}
.top-nav-panel-backdrop{
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(16,27,31,.8);
    z-index:9998;
    pointer-events:none;
}
.top-nav-panel-backdrop.is-open{
    display:block;
    pointer-events:auto;
}
.top-nav-panel-close{
    position:absolute;
    top:24px;
    right:24px;
    width:32px;
    height:32px;
    padding:0;
    border:none;
    background:transparent;
    cursor:pointer;
    z-index:11;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    line-height:1;
    color:#101B1F;
    opacity:.7;
    transition:opacity .2s ease;
}
.top-nav-panel-close:hover{
    opacity:1;
}
.top-nav-panel-close::before,
.top-nav-panel-close::after{
    content:'';
    position:absolute;
    width:20px;
    height:2px;
    background:currentColor;
    border-radius:1px;
}
.top-nav-panel-close::before{
    transform:rotate(45deg);
}
.top-nav-panel-close::after{
    transform:rotate(-45deg);
}
.top-nav-panel-menu{
    display:flex;
    flex-direction:column;
    flex:4;
    min-width:0;
}
.top-nav-panel-menu a{
    color:#101B1F;
    padding:16px 0;
    font-size:18px;
    border-bottom:1px solid rgba(16,27,31,.1);
    display:block;
    width:100%;
    box-sizing:border-box;
}
.top-nav-panel-menu a:last-child{
    border-bottom:none;
}
.top-nav-panel-menu .sharebox{
    display:flex;
    gap:12px;
    padding-top:20px;
    margin-top:8px;
}
.top-nav-panel-menu .sharebox div{
    display:flex;
    align-items:center;
    justify-content:center;
}
.top-nav-panel-menu .sharebox .share-item-x{
    order:98;
}
.top-nav-panel-menu .sharebox .share-item-threads{
    order:99;
}
.top-nav-panel-menu .sharebox .btn_FB,
.top-nav-panel-menu .sharebox .btn_LINE,
.top-nav-panel-menu .sharebox .btn_X,
.top-nav-panel-menu .sharebox .btn_threads{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    padding:0;
    border-radius:50%;
    background:rgba(89,141,184,.8);
    box-sizing:border-box;
}
.top-nav-panel-menu .sharebox .btn_support_cna{
    display:flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 18px;
    border-radius:80px;
    background:rgba(89,141,184,.8);
    color:#fff;
    font-size:16px;
    line-height:1;
    text-decoration:none;
    border-bottom:none;
    width:auto;
}
.top-nav-panel-menu .sharebox .fb-btn,
.top-nav-panel-menu .sharebox .line-btn,
.top-nav-panel-menu .sharebox .threads-btn,
.top-nav-panel-menu .sharebox .x-btn{
    width:28px;
    height:28px;
    display:block;
}
.top-nav-panel-menu .sharebox .fb-btn path,
.top-nav-panel-menu .sharebox .line-btn path{
    fill:#fff;
}
.top-nav-panel-menu .sharebox .threads-btn path{
    fill:#fff;
}
.top-nav-panel-video{
    flex:5;
    min-width:0;
    height:294px;
    border-radius:8px;
    overflow:hidden;
    background:#000;
    position:relative;
}
.top-nav-panel-video-inner{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border-radius:8px;
    overflow:hidden;
}
.top-nav-panel-video-inner::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    border-radius:inherit;
    /* 全幅柔化漸層，避免固定高度造成水平「切割線」 */
    background:linear-gradient(to top,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.42) 24%,
        rgba(0,0,0,.2) 45%,
        rgba(0,0,0,.08) 64%,
        rgba(0,0,0,.03) 80%,
        rgba(0,0,0,0) 100%
    );
    transition:background .35s ease;
}
.top-nav-panel-video-inner video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity .5s ease, filter .35s ease;
}
.top-nav-panel-video-inner img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity .5s ease, filter .35s ease;
}
.top-nav-panel-video-inner video.active{
    opacity:1;
    z-index:1;
}
.top-nav-panel-video-inner img.active{
    opacity:1;
    z-index:1;
}
@media (hover:hover){
    .top-nav-panel-video:hover .top-nav-panel-video-inner::before{
        /* 與預設共用相同色標位置，只加深下半部，過渡才不會出現色塊跳動 */
        background:linear-gradient(to top,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.48) 24%,
            rgba(0,0,0,.24) 45%,
            rgba(0,0,0,.1) 64%,
            rgba(0,0,0,.04) 80%,
            rgba(0,0,0,0) 100%
        );
    }
    .top-nav-panel-video:hover .top-nav-panel-video-inner video.active{
        filter:brightness(1.09);
    }
}
.top-nav-panel-video-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:10;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
    gap:6px;
    padding:10px 14px 14px;
    font-size:14px;
    color:#fff;
    text-align:right;
    max-width:none;
    margin-left:0;
    line-height:1.4;
    text-decoration:none;
    opacity:1;
    transform:translateY(0) scale(1);
    transform-origin:right bottom;
    transition:color .2s ease, transform .2s ease;
    text-shadow:0 1px 12px rgba(0,0,0,.65),0 0 1px rgba(0,0,0,.8);
}
.top-nav-panel-video-caption::after{
    content:'→';
    font-size:12px;
    opacity:0;
    transform:translateX(-4px);
    transition:opacity .2s ease, transform .2s ease;
}
.top-nav-panel-video-caption:hover{
    color:#fff;
}
.top-nav-panel-video-caption:hover::after{
    opacity:1;
    transform:translateX(0);
}
@media (hover:hover){
    .top-nav-panel-video:hover .top-nav-panel-video-caption{
        transform:scale(1.05);
        color:#fff;
    }
    .top-nav-panel-video:hover .top-nav-panel-video-caption::after{
        opacity:1;
        transform:translateX(0);
    }
}
img{
    max-width:100%;
    height:auto;
    display:-webkit-box;
    display:flex;
}
.fb-btn{
    fill: rgba(254, 253, 245, 0.80);
    width:32px;
    height:50px;
    vertical-align:middle;
}
.line-btn{
    fill:#fff;
    width:32px;
    height:50px;
    vertical-align:middle;
}
.threads-btn{
    fill:#fff;
    width:32px;
    height:50px;
    margin:0 0 0 5px;
    vertical-align:middle;
}
.wrapper{
    margin:0 auto;
    clear:both;
    background-color:#101B1F;
}
.mainvisual{
    position:relative;
    height:calc(110vh - 3rem);
    overflow:hidden;
    text-align:center;
}
.mainvisual:before{
    content:'';
    display:inline-block;
    vertical-align:middle;
    width:0;
    height:100%;
}
.pagetitle{
    position:absolute;
    inset:0;
    transform:none;
    z-index:8;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    margin:0;
    width:100%;
    height:100%;
    box-sizing:border-box;
}
.pagetitle-inner{
    flex:1 1 auto;
    min-height:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
}
.pagetitle-row{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    gap:.5rem 1rem;
    font-size:2rem;
}
.pagetitle-row > div{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.1rem;
}
.pagetitle-row img{
    height:4em;
    width:auto;
    flex-shrink:0;
}
.pagetitle-row p{
    margin:0;
    font-size:1.5rem;
}
.pagetitle-row h1{
    width:auto;
    margin:0;
    white-space:nowrap;
    font-size:2.25rem;
    color: #FFFFFF;
    font-family:"Noto Serif CJK TC","Noto Serif TC",serif;
}

#navi{
    margin-top:1.5em;
}
#navi .tabitem a{
    display:inline-block;
    border:1px #fff solid;
    filter:drop-shadow(0 4px 4px rgba(0, 0, 0, .25));
    border-radius:3px;
    padding:10px 20px;
    font-size:18px;
    color:#fff;
    margin: 1.5em 0.8em;
}
#navi .tabitem{
    list-style:none;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    padding:0;
    margin:0;
}
#navi .tabitem > li{
    list-style:none;
    display:contents;
}
#navi .tabitem a:hover{
    font-weight:700;
    filter:drop-shadow(0 0 5px rgba(255, 255, 255, .9));
    box-shadow:0 0 0 1px #fff;
}
#navi .current{
    border-left:3px solid #fec130;
}
#navi a.current{
    font-weight:700;
    filter:drop-shadow(0 0 1px rgba(255, 255, 255, .9));
    background-color:#fff;
    color:#3c3c3c;
    margin: 1.5em 0.8em;
}
.hero{
    position:absolute;
    width:100%;
    height:calc(110vh - 35px);
    top:0;
    left:0;
    overflow:hidden;
    pointer-events:none;
    z-index:0;
}
.mask{
    background:-webkit-gradient(linear,left top,left bottom,from(transparent),to(#141414));
    background:-webkit-linear-gradient(top,transparent 0,#141414 100%);
    background:-o-linear-gradient(top,transparent 0,#141414 100%);
    background:linear-gradient(to bottom,transparent 0,#141414 100%);
    height:100%;
    left:0;
    position:absolute;
    top:0;
    width:100%;
    z-index:1;
}
.sharebox div{
    cursor:pointer;
}
.nav-fixed{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    background:-moz-linear-gradient(top,#2E3033 0,#2E3033 89%,rgba(82,87,92,0) 100%);
    background:-webkit-linear-gradient(top,#2E3033 0,#2E3033 89%,rgba(82,87,92,0) 100%);
    background:linear-gradient(to bottom,#2E3033 0,#2E3033 89%,rgba(82,87,92,0) 100%);
}
.progress-container{
    width:100%;
    height:8px;
    background:#e8e8e8;
}
.progress-bar{
    height:8px;
    background:#DFD394;
    width:0%;
}
.scrollbox{
    position:relative;
    min-height:60px;
}
.scrollbox::before{
    content:'scroll';
    position:absolute;
    color:#fff;
    bottom:100%;
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap;
    margin-bottom:10px;
    line-height:1;
}
.scrollhint{
    width:1px;
    height:60px;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    margin:0 auto;
    overflow:hidden;
}
.scrollhint .sline{
    width:100%;
    height:100%;
    display:block;
    background:linear-gradient(to bottom,#fff 50%,rgba(255,255,255,0) 50%);
    background-position:0 -60px;
    background-size:100% 200%;
    -webkit-animation:scrolldown 2.2s cubic-bezier(.76,0,.3,1) forwards infinite;
    animation:scrolldown 2.2s cubic-bezier(.76,0,.3,1) forwards infinite;
}
.morepic{
    flex:0 0 auto;
    margin-top:0;
    padding-bottom:20px;
    z-index:999;
    width:100%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    pointer-events:auto;
    overflow:visible;
}
.morepic .scrollBlock{
    display:block;
    cursor:pointer;
    overflow:visible;
}
@keyframes scrolldown{
    0%{
        background-position:0 -60px
    }
    75%{
        background-position:0 0
    }
    100%{
        background-position:0 60px
    }
}
main{
    max-width:1024px;
    margin:0 auto;
    clear:both;
}
.image-wrapper{
    margin:0 auto;
}
.image-wrapper .foreword p{
    color:#598DB8;
    font-family:"Noto Serif CJK TC","Noto Serif TC",serif;
    max-width:750px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    text-align: justify;
    font-weight:bold;
    line-height: 1.8;
    padding: 48px 1.5rem 48px 1.5rem;
}
.image-wrapper .quote-top {
  display: block;
  width: 4%;
  margin: 0 auto;
  padding: 0 0 120px 0;
}

.one-pic{
    margin-top:150px;
}
.one-pic figure{
    margin-bottom:6rem;
}
figure{
    position:relative;
    margin:0 auto 5rem auto;
}
figure img{
    border-radius:12px;
}
figure .figbox{
    width:50%;
    max-width:100%;
    margin-left:auto;
    margin-right:0;
    padding-top: 16px;
}
figure figcaption{
    font-family: "Noto Sans TC";
    font-size:18px;
    color:#A2A9B4;
    width:100%;
    overflow-wrap:break-word;
    word-break:break-word;
    text-shadow:0 1px 3px rgba(0,0,0,.8);
}
figcaption span{
  font-family: "Noto Sans TC";
    color:#5B6472;
    font-size:16px;
}
.ftshare .btn_FB,
.ftshare .btn_LINE,
.ftshare .btn_X,
.ftshare .btn_threads{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position:relative;
    width:44px;
    height:44px;
    padding:0;
    border-radius:50%;
    background:rgba(89,141,184,.8);
    box-sizing:border-box;
}
.ftshare .btn_support_cna{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 18px;
    border-radius:80px;
    background:rgba(89,141,184,.8);
    color:#fff;
    font-size:16px;
    line-height:1;
    text-decoration:none;
    white-space:nowrap;
}
.ftshare .btn_FB .fb-btn,
.ftshare .btn_LINE .line-btn,
.ftshare .btn_threads .threads-btn,
.ftshare .btn_X .x-btn{
    position:absolute;
    left:46%;
    top:48%;
    transform:translate(-50%,-50%);
    width:28px;
    height:28px;
    margin:0;
    display:block;
}
.ftshare .sharebox div{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.ftshare .sharebox .share-item-threads{
    order:99;
}
.ftshare .sharebox .share-item-x{
    order:98;
}
.ftshare .sharebox{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}
@media (min-width:50.01rem){
.ftshare .sharebox{
    gap:16px;
}
}
.ftshare{
    padding-top:40px;
    padding-bottom:30px;
}
.ftshare > .credit{
    font-size:18px;
    padding-bottom:20px;
}
.page-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1024px;
    margin:0 auto;
    padding:24px 0 40px;
    box-sizing:border-box;
}
.page-nav-prev,
.page-nav-next{
    font-size:16px;
    color:#598DB8;
    text-decoration:none;
    transition:color .2s ease, text-decoration-color .2s ease;
}
@media (min-width:40.01rem){
.page-nav-prev:hover,
.page-nav-next:hover{
    color:#7eb3d9;
    text-decoration:underline;
    text-underline-offset:4px;
}
}
.page-nav-prev.is-disabled,
.page-nav-next.is-disabled{
    color:#5B6472;
    cursor:default;
    pointer-events:none;
}
.page-nav--no-prev{
    justify-content:flex-end;
}
.reflection{
    max-width:750px;
    margin: 0 auto;
    padding-top:48px;
}
.reflection h3{
    color:#598DB8;
    font-size: 28px;
    font-family:"Noto Serif CJK TC","Noto Serif TC",serif;
    margin-top:1.5em;
    padding-bottom: 8px;
}
.reflection h3:first-child{
    margin-top:0;
}
.reflection p{
    margin: 0 0 16px 0;
    color:#fff;
}
.credit{
    display:block;
    clear:both;
    max-width:45rem;
    font-size:14px;
    text-align:center;
    margin:0 auto;
    color:#A2A9B4;
    padding:40px 0;
}
.related-grid{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    width:100%;
    position:relative;
    margin:28px auto 96px;
    padding:28px 5% 96px;
    background:#27333D;
    box-sizing:border-box;
}
.related-item{
    display:block;
    flex:1 1 calc(25% - 0.75rem);
    min-width:0;
    border-radius:8px;
    overflow:hidden;
    position:relative;
    -webkit-transition:flex .3s ease, box-shadow .25s ease;
    -o-transition:flex .3s ease, box-shadow .25s ease;
    transition:flex .3s ease, box-shadow .25s ease;
}
.related-item:hover{
    flex:1.5 1 calc(25% - 0.75rem);
    box-shadow:0 8px 24px rgba(0,0,0,.2);
}
.related-item img{
    width:100%;
    height:auto;
    display:block;
    vertical-align:middle;
    -webkit-transition:transform .5s ease;
    -o-transition:transform .5s ease;
    transition:transform .5s ease;
}
.related-item:hover img{
    transform:scale(1.08);
}
.related-item::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4.5em;
    background:linear-gradient(transparent, rgba(0,0,0,.7));
    pointer-events:none;
}
.related-item-title{
    display:block;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:8px 12px;
    font-size:14px;
    line-height:1.4;
    color:#fff;
    max-width:8em;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    z-index:1;
    -webkit-transition:max-width .25s ease, font-size .25s ease, white-space .25s ease;
    transition:max-width .25s ease, font-size .25s ease, white-space .25s ease;
}
.related-item:hover .related-item-title{
    max-width:12em;
    font-size:18px;
    white-space:normal;
    -webkit-line-clamp:2;
    line-clamp:2;
    -webkit-box-orient:vertical;
    display:-webkit-box;
}
/* 外部連結：hover 前 8 字，hover 後完整標題 */
.related-item--external .related-item-title-full{
    display:none !important;
}
.related-item--external .related-item-title-short{
    display:block !important;
    max-width:8em !important;
    overflow:visible !important;
    text-overflow:unset !important;
    white-space:nowrap !important;
}
.related-item--external:hover .related-item-title-short{
    display:none !important;
}
.related-item--external:hover .related-item-title-full{
    display:block !important;
    max-width:100% !important;
    white-space:normal;
    -webkit-line-clamp:unset;
    line-clamp:unset;
}
.related-grid-more{
    position:absolute;
    bottom:0;
    right:0;
    width:280px;
    height:60px;
    opacity:.8;
}
@media (min-width:1921px){
    .related-grid{
        width:100%;
    }
}
footer{
    line-height: 64px;
    font-size:14px;
    color:#DDDBD0;
    text-align:center;
    margin-top:4rem;
    padding:1em 0;
    border-top: 2px solid #273947;
}
.cd-top{
    font-size:1.2rem;
    display:inline-block;
    width:45px;
    height:45px;
    line-height:48px;
    text-align:center;
    position:fixed;
    bottom:20px;
    right:10px;
    overflow:hidden;
    background:#DFD394;
    visibility:hidden;
    opacity:0;
    -webkit-transition:all .3s;
    -o-transition:all .3s;
    transition:all .3s;
    border-radius:100%;
    z-index:10;
}
.cd-top.cd-is-visible{
    visibility:visible;
    opacity:1;
    padding-top: 6px;
}
.cd-top.cd-fade-out{
    opacity:.5;
}
.cd-top p{
    color:#272B34;
    font-weight: bold;
    font-size: 16px;
    font-family:"Times New Roman",serif;
}
/* ========== media斷點 ========== */
@media (max-width:64rem){
    h1{
        font-size:1.375rem;
    }
    .morepic{
        margin-top:0;
        padding-bottom:20px;
    }
    .figbox{
        width:95%;
        margin:0 auto;
    }
    figcaption{
        width:100%;
    }
    footer{
        margin-top:2rem;
    }
}
@media (max-width:50rem){
    h1{
        font-size:2rem;
    }
    .pagetitle{
        width:100%;
        padding:0 1rem;
        box-sizing:border-box;
    }
    .pagetitle-inner{
        width:90%;
        max-width:380px;
        margin-left:auto;
        margin-right:auto;
        padding-top:clamp(32px,9vh,76px);
    }
    .pagetitle h1{
        margin:1.5rem auto;
    }
    .pagetitle-row p,
    .pagetitle-row h1{
        margin:0;
    }
    .pagetitle p{
        max-width:23.125rem;
    }
    #navi{
        margin-top:.7rem;
    }
    .scrollBlock{
        display:none;
    }
    .morepic{
        padding-bottom:0;
        min-height:0;
    }
    figcaption{
        font-size:16px;
    }
    figcaption span{
        font-size:14px;
    }
}
@media (max-width:40rem){
    .related-grid{
        width:100%;
        margin:0;
        padding:0;
        gap:0;
        background:transparent;
    }
    .related-grid .related-item{
        flex:1 1 calc(50% - 0.5rem);
        border-radius:0;
    }
    .related-grid .related-item:hover{
        flex:1 1 calc(50% - 0.5rem);
    }
    .related-grid-more{
        width:160px;
        height:auto;
    }
    .top-nav-panel{
        flex-direction:column;
        align-items:stretch;
        width:min(414px, calc(100vw - 32px));
        height:min(719px, calc(100vh - 100px));
        padding:20px 24px 24px;
        gap:20px;
    }
    .top-nav-panel-video{
        position:relative;
        display:flex;
        flex:1;
        min-height:180px;
        height:auto;
    }
    .top-nav-panel-menu{
        flex:0 0 auto;
        gap:0;
        align-items:center;
    }
    .top-nav-panel-menu a{
        padding:12px 0;
        text-align:center;
    }
    .top-nav-panel-menu .sharebox{
        padding-top:16px;
        margin-top:12px;
        justify-content:center;
    }
    .top-nav-panel-menu .sharebox .btn_support_cna{
        padding:0 14px;
        font-size:14px;
    }
    .ftshare .btn_support_cna{
        padding:0 14px;
        font-size:14px;
    }
    .top-nav-panel-close{
        top:16px;
        right:16px;
        width:28px;
        height:28px;
    }
    .top-nav-panel-close::before,
    .top-nav-panel-close::after{
        width:16px;
    }
    .top-nav{
        height:48px;
        padding:0 16px;
    }
    .top-nav-logo img{
        height:18px;
    }
    .top-nav-menu{
        width:24px;
        gap:4px;
    }
    .pagetitle-inner{
        padding-top:clamp(52px,13vh,132px);
    }
    .pagetitle-row{
        gap:.25rem .5rem;
        flex-wrap:nowrap;
        margin-bottom:.65rem;
    }
    .pagetitle-row img{
        height:2em;
        flex-shrink:0;
    }
    .pagetitle-row > div{
        flex:1 1 auto;
        min-width:0;
    }
    .pagetitle-row h1{
        white-space:normal;
        text-align:center;
        line-height:1.2;
    }
    #navi{
        width:100%;
        margin-top:.55rem;
    }
    #navi .tabitem{
        gap:.5em;
        justify-content:center;
        flex-wrap:wrap;
        width:100%;
    }
    #navi .tabitem a,
    #navi a.current{
        font-size:13px;
        padding:5px 8px;
        margin:0;
        box-sizing:border-box;
        text-align:center;
        flex:1 1 45%;
        min-width:0;
    }
    .image-wrapper .quote-top{
        padding:0 0 60px 0;
    }
    .image-wrapper .foreword p{
        font-size:1.1rem;
    }
    .reflection{
        padding-left:1rem;
        padding-right:1rem;
    }
    figure .figbox{
        width:100%;
        max-width:750px;
        margin-left:auto;
        margin-right:auto;
        padding-left:1.5rem;
        padding-right:1.5rem;
        box-sizing:border-box;
    }
    figure figcaption{
        font-size:18px;
    }
    figcaption span{
        font-size:16px;
    }
    .image-wrapper figure:last-of-type{
        margin-bottom:2rem;
    }
    h1{
        font-size:1.375rem;
    }
    .fb-btn,.line-btn,.threads-btn{
        width:30px;
        height:40px;
    }
    .pagetitle h1{
        width:76%;
    }
    .pagetitle-row > div{
        gap:.05rem;
    }
    .pagetitle-row{
        margin-bottom:.65rem;
    }
    .mainvisual{
        position:relative;
        height:90vh;
        height:calc(var(--vh, 1vh) * 90);
        overflow:hidden;
        text-align:center;
    }
    .pagetitle p{
        font-size:1em;
        font-weight:400;
    }
    .credit{
        padding-bottom:20px;
    }
    .ftshare{
        padding-top:20px;
    }
    .page-nav{
        padding:20px 1.5rem 32px;
    }
    .page-nav-title{
        display:none;
    }
}
@media (max-width:37.5rem){
    p{
        font-size:16px;
    }
    .fb-btn,.line-btn,.threads-btn{
        width:26px;
        height:26px;
    }
    .pagetitle h1{
        width:auto;
    }
    .pagetitle p{
        font-size:0.5em;
        font-weight:400;
    }
    .credit{
        margin:.875em auto 0 auto;
    }
    .morepic{
        margin-top:0;
    }
    .one-pic{
        margin-top:0;
    }
    figcaption{
        font-size:18px;
    }
    figcaption span{
        font-size:16px;
    }
    .cd-top{
        width:40px;
        height:40px;
        line-height:40px;
    }
}
@media (max-width:20rem){
    h1{
        font-size:1.25rem;
    }
    p{
        font-size:14px;
    }
    .pagetitle-inner{
        width:85%;
    }
    .pagetitle h1{
        margin:0 auto;
    }
}
@media (max-width:414px){
    .pagetitle-inner{
        padding-top:clamp(48px,12vh,112px);
    }
}
@media only screen and (min-width:40rem){
    .cd-top{
        right:20px;
        bottom:20px;
    }
}