@charset "utf-8";

/*==============================
    基本設定
==============================*/
body{
    color:#1f1f1f;
    font-size:12px;
    font-family:YakuHanMP,'Zen Old Mincho', serif;
    margin:0;
    padding:0;
    text-align:left;
    background:#fff;
    -webkit-text-size-adjust:100%;
    position:relative;
    word-break:break-all;
    min-width:1400px;
    overflow-y: scroll;
}
@media only screen and (max-width:767px){
    body{
        min-width:0;
    }
}

body *, body *::before, body *::after{box-sizing:border-box;}
img{vertical-align:bottom;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
th{
    font-weight:normal;
    text-align:left;
}

/*font layout*/
.fBold{font-weight:bold;}
.fBold900{font-weight:900;}
.fGothic{font-family:YakuHanMP,"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;}
.fEBG{font-family: 'EB Garamond', serif;font-weight: 600;}
.fEBG02{font-family: 'EB Garamond', serif;}

/*rollover*/
.ro a:hover,
a.ro:hover,
a .ro:hover,
.cursorPointer:hover{ opacity:0.8; }
.ro a,
a.ro,
a .ro,
.cursorPointer{
    transition:opacity 0.2s ease-out;
}
.cursorPointer{cursor:pointer;}

/*rollover(brightnessによる変化)*/
.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1.1);filter: brightness(1.1); }
.brt a,
a.brt,
a .brt{
    transition:filter 0.2s ease-out;
}

a{
    text-decoration: none;
}


/*ro無効化*/
.ro .no_ro a:hover,
.ro a.no_ro:hover,
.ro .no_ro .cursorPointer:hover,
.ro .cursorPointer.no_ro:hover{ opacity:1; }

/* 電話リンクの無効化 */
a[href^="tel:"]{
    pointer-events:none;
    cursor:default;
}
@media only screen and (max-width:767px){
    a[href^="tel:"]{
        pointer-events:auto;
        cursor:pointer;
    }
}

/* container */
#container{
    overflow: hidden;
    /* max-width: 1920px; */
    width: 100%;
    margin: 0 auto;
}

#page-top img{
    display: block;
    width: 100%;
    height: auto;
}

/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly,
.brSp,
.imgSp{
    display:none;
}
.img100{
    width:100%;
    height:auto;
}
@media only screen and (max-width:767px){
    .spNone,
    .brPc,
    .imgPc{
        display:none;
    }
    .spOnly{
        display:block;
    }
    .brSp,
    .imgSp{
        display:inline;
    }
    .imgR{
        width:100%;
        height:auto;
    }
}

/*-----------------------------------------------
    imgCover
-----------------------------------------------*/
/* imgCover */
.imgCover,
.imgCont{
    position:relative;
}
.imgCover img {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.imgCont img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    display:block;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
}
/*-----------------------------------------------
	jsHide
-----------------------------------------------*/
/* jsHide */
.jsHide{
    opacity: 0;
    transition: opacity 3.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.jsHide.jsShow{
    opacity: 1;
}

/* jsHideImg */
.jsHideImg,
.ro a.jsHideImg{
    filter: blur(20px) brightness(4);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1),filter 1s cubic-bezier(0.19, 1, 0.22, 1),opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center top;
}
.jsHideImg.jsShow,
.ro a.jsHideImg.jsShow{
    filter: blur(0) brightness(1);
    transform: translateY(0);
    opacity: 1;
}

/* 文字圖逐步呈現 */
.jsHideChar{
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
.jsHideChar.jsShow{
    animation: jsHideCharAnimation 0.5s cubic-bezier(.785,.135,.15,.86) .3s normal forwards;
}
@keyframes jsHideCharAnimation{
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    to {
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
}
/*-----------------------------------------------
    wrapper
-----------------------------------------------*/
.wrapper1460{
    width: 1460px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
.wrapper1230{
    width: 1230px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
.wrapper1080{
    width:calc(100% - 40px);
    max-width:1080px;
    margin:0 auto;
}
.wrapper1020{
    width:calc(100% - 40px);
    max-width:1020px;
    margin:0 auto;
}
.wrapper900{
    width: 900px;
    margin: 0 auto;
}
@media only screen and (max-width:767px){
    .wrapper1020,
    .wrapper1080,
    .wrapper1230,
    .wrapper1460{
        width: 100%;
        max-width: none;
    }
    .wrapper900{
        width: 100%;
    }
    .wrapperSp{
        width:92%;
        margin:0 auto;
    }
}

#footer{
}

/*-----------------------------------------------
    共通パーツ
-----------------------------------------------*/
/* cmnTit */
.cmnTitCenter{
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
}
@media only screen and (max-width:767px){
    .cmnTitCenter{
        font-size: 16px;
    }
}

.cmnTitRomanCenter{
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}
@media only screen and (max-width:767px){
    .cmnTitRomanCenter{
        font-size: 16px;
    }
}

.cmnTitRomanLeft{
    font-size: 26px;
    letter-spacing: 1px;
}
@media only screen and (max-width:767px){
    .cmnTitRomanLeft{
        font-size: 16px;
        letter-spacing: 1px;
    }
}

/* cmnBtnMore */
.cmnBtnMore .btn{
    display:flex;
    text-align:center;
    text-decoration:none;
    justify-content: center;
    align-items: center;
    position:relative;
    background:#000;
    width:400px;
    margin:0 auto;
    padding:33px 0 34px;
    color:#fff;
    font-weight:700;
    font-size:18px;
    letter-spacing:1px;
}
.cmnBtnMore .btn::after{
    content: "";
    background:url(../img/common/arrowWhite.png) left top / 6px no-repeat;
    width: 6px;
    height: 7px;
    display: block;
    margin: 0 0 0 10px;
}
.cmnBtnMore.is-white .btn{
    color:#000;
    background-color: #fff;
    border: solid 1px #000;
}
.cmnBtnMore.is-white .btn::after{
    background:url(../img/common/iconPagerArrow02.gif) left top / 6px no-repeat;
}
.cmnBtnMore.is-white2 .btn{
    color:#45555e;
    background-color: #fff;
    border: solid 1px #45555e;
}
.cmnBtnMore.is-white2 .btn::after{
    background:url(../img/common/arrowNavy.png) left top / 6px no-repeat;
}
.cmnBtnMore.is-gray .btn{
    background-color: #45555e;
}
.cmnBtnMore.is-yellow .btn{
    background-color: #fedf00;
    color: #000;
}
.cmnBtnMore.is-yellow .btn::after{
    background:url(../img/common/arrowBlack.png) left top / 6px no-repeat;
}
.cmnBtnMore.arrow-right .btn::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
}
@media only screen and (max-width:767px){
    .cmnBtnMore .btn,
    .cmnBtnMore.is-white .btn{
        position:relative;
        font-size:15px;
        width:100%;
        padding:23px 0 22px;
    }
}

/* cmnBtnMoreS */
.cmnBtnMoreS .btn{
    display:flex;
    text-align:center;
    text-decoration:none;
    justify-content: center;
    align-items: center;
    position:relative;
    width:260px;
    margin:0 auto;
    padding:20px 0;
    color:#fff;
    background-color: #000;
    font-weight:700;
    font-size:15px;
    letter-spacing:1px;
}
.cmnBtnMoreS .btn::after{
    content: "";
    background:url(../img/common/arrowWhite.png) left top / 6px no-repeat;
    width: 6px;
    height: 7px;
    display: block;
    margin: 0 0 0 10px;
}
.cmnBtnMoreS.is-white .btn{
    color:#000;
    background-color: #fff;
    border: solid 1px #000;
}
.cmnBtnMoreS.is-white .btn::after{
    background:url(../img/common/iconPagerArrow02.gif) left top / 6px no-repeat;
}
@media only screen and (max-width:767px){
    .cmnBtnMoreS .btn{
        position:relative;
        font-size:15px;
        width:100%;
        padding:23px 0 22px;
    }
}

/* secCmnError */
.secCmnError{
    font-size: 16px;
    text-align: center;
    padding: 50px 0;
}
@media only screen and (max-width:767px){
    .secCmnError{
        font-size: 12px;
        line-height: 1.4;
        padding: 30px 0;
    }
}

/* secCmnIndexPager */
.secCmnIndexPager{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.secCmnIndexPager .boxList{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.secCmnIndexPager .btn{
   margin: 0 5px;
}
.secCmnIndexPager .btn.on{
    margin: 0 5px;
}
.secCmnIndexPager .inner{
    font-size: 17px;
    color:#1f1f1f;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0 0 2px 1px;
    background: #fff;
}
.secCmnIndexPager .on .inner{
    background: #222222;
    color: #fff;
}
.secCmnIndexPager .dots{
    border: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
	margin: 0 5px 10px;
    font-size: 17px;
    color:#1f1f1f;
}
.secCmnIndexPager .btnPrev .inner,
.secCmnIndexPager .btnNext .inner{
    position: relative;
    flex-shrink: 0;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.secCmnIndexPager .btnPrev{
    margin-right: 5px;
}
.secCmnIndexPager .btnNext{
    margin-left: 5px;
}
.secCmnIndexPager .btnPrev .inner,.secCmnIndexPager .btnNext .inner{
    position: relative;
}
.secCmnIndexPager .btnPrev .inner:after,.secCmnIndexPager .btnNext .inner::after{
    content: "";
    position: absolute;
	width: 10px;
	height: 13px;
    left: calc(50% - 5px);
	top: calc(50% - 6.5px);
}
.secCmnIndexPager .btnPrev .inner.lazyloaded:after{
	background: url(../img/common/iconPagerArrow01.gif) center top / cover;
}
.secCmnIndexPager .btnNext .inner.lazyloaded:after{
	background: url(../img/common/iconPagerArrow02.gif) center top / cover;
}
.secCmnIndexPager .btnPrev.none,.secCmnIndexPager .btnNext.none{
    display: none;
}
@media only screen and (max-width:767px){
    .secCmnIndexPager{
        margin-top: 30px;
    }
    .page-ebook .secCmnIndexPager{
        margin-top: 60px;
    }
    .secCmnIndexPager .btn,
    .secCmnIndexPager .btn.on{
        margin: 0;
    }
}
@media only screen and (max-width:360px){
    .secCmnIndexPager .inner{
        font-size: 14px;
        width: 30px;
        height: 30px;
    }
}

/* cmnContact */
.cmnContact{
    margin-top: 200px;
    background-color: #f8f7f6;
    padding-top: 108px;
    padding-bottom: 100px;
}
.cmnContact .inner{
    max-width: 1300px;
    min-height: 721px;
    margin: 0 auto;
    padding-bottom: 40px;
    position: relative;
}
/* .page-top-index .cmnContact{
    margin-top: 280px;
} */
.cmnContact .boxTit{
    text-align: center;
}
.cmnContact .boxTit .subtit{
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: 1px;
}
.cmnContact .boxTit .tit{
    font-size:18px;
    line-height: 1.5;
    font-weight: bold;
    padding-top: 9px;
}
.cmnContact .linklist{
    display: flex;
    margin-top: 54px;
}
.cmnContact .linklist .item{
    width: 25%;
    border-right: 1px solid #dfdfdf;
}
.cmnContact .linklist .item:last-child{
    width:25%;
    border-right: none;
}
.cmnContact .linklist .item a{
    display: block;
    text-decoration: none;
    background: #f8f7f6;
    color: #0e0e0e;
    opacity: 1;
}
.cmnContact .linklist .item .imgbox{
    width: 100%;
    height: 14.584vw;
    min-height: 208px;
    overflow: hidden;
    position: relative;
    display: block;
}
.cmnContact .linklist .item:last-child .imgbox{
    height: 14.584vw;
}
.cmnContact .linklist .item .imgbox img{
    transition: .3s;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.cmnContact .linklist .item a:hover .imgbox img{
    transform: scale(1.1);
}
.cmnContact .linklist .item .txtbox{
    position: relative;
    padding-top: 125px;
    padding-bottom: 120px;
}
.cmnContact .linklist .item .txtbox .Iconbox{
    position: absolute;
    top: calc(0% - 35px);
    left: calc(50% - 35px);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    overflow: hidden;
}
.cmnContact .linklist .item .txtbox .Iconbox::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.2s ease-out;
}
.cmnContact .linklist .item a:hover .txtbox .Iconbox::before{
    opacity: 0.6;
}
.cmnContact .linklist.lazyloaded .item:nth-child(1) .txtbox .Iconbox::before{
    background: url(../img/phone.png) center center no-repeat #ffffff;
    background-size:30px auto;
}
.cmnContact .linklist.lazyloaded .item:nth-child(2) .txtbox .Iconbox::before{
    background: url(../img/agreement.png) center center no-repeat #ffffff;
    background-size:30px auto;
}
.cmnContact .linklist.lazyloaded .item:nth-child(3) .txtbox .Iconbox::before{
    background: url(../img/loupe.png) center center no-repeat #ffffff;
    background-size:30px auto;
}
.cmnContact .linklist.lazyloaded .item:nth-child(4) .txtbox .Iconbox::before{
    background: url(../img/handshake.png) center center no-repeat #ffffff;
    background-size:30px auto;
}
.cmnContact .linklist .item .txtbox .inbox{
    text-align: center;
    transition: opacity 0.2s ease-out;
}
.cmnContact .linklist .item a:hover .txtbox .inbox{
    opacity: 0.6;
}
.cmnContact .linklist .item .txtbox .inbox .sub{
    font-size: 20px;
    line-height: 1;
}
.cmnContact .linklist .item .txtbox .inbox .tit{
    font-size:13px;
    line-height: 18px;
    font-weight: bold;
    padding-top: 31px;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox{
    width: 120px;
    position: relative;
    margin: 0 auto;
    text-align: left;
    margin-top: 47px;
    padding-bottom: 15px;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox span{
    display: block;
    position: relative;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox span::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #000000;
    transition: .3s;
}
.cmnContact .linklist .item a:hover .txtbox .inbox .btnbox span::after{
    right: -4px;
}
@media only screen and (max-width:767px){
    .cmnContact{
        margin-top: 120px;
    }
    .page-top-index .cmnContact{
        margin-top: 68px;
        background-color: #f1f1f1;
    }
    .cmnContact .boxTit .tit{
        font-size: 12px;
        padding-top: 3px;
    }
    .cmnContact .linklist{
        flex-wrap: wrap;
        margin-top: 27px;
        padding: 39px 4% 50px;
        background: #f8f7f6;
    }
    .cmnContact .linklist .item{
        width: 49.278%;
        margin-right: 1.444%;
        border-right:none;
    }
    .cmnContact .linklist .item:nth-child(n + 3){
        margin-top: 21px;
    }
    .cmnContact .linklist .item:last-child,
    .cmnContact .linklist .item:nth-child(2n){
        width:49.278%;
       margin-right: 0;
    }
    .cmnContact .linklist .item a{
        background: none;
    }
    .cmnContact .linklist .item .imgbox{
        height: 26.4vw;
        min-height: 0;
    }
    .cmnContact .linklist .item:last-child .imgbox{
        height: 26.4vw;
    }
    .cmnContact .linklist .item .txtbox{
        padding-top: 28px;
        padding-bottom: 20px;
    }
    .cmnContact .linklist .item .txtbox .Iconbox{
        top: calc(0% - 18px);
        left: calc(50% - 18px);
        width: 36px;
        height: 36px;
    }
    .cmnContact .linklist.lazyloaded .item:nth-child(1) .txtbox .Iconbox::before{
        background-size:23px auto;
    }
    .cmnContact .linklist.lazyloaded .item:nth-child(2) .txtbox .Iconbox::before{
        background-size:17px auto;
    }
    .cmnContact .linklist.lazyloaded .item:nth-child(3) .txtbox .Iconbox::before{
        background-size:22px auto;
    }
    .cmnContact .linklist.lazyloaded .item:nth-child(4) .txtbox .Iconbox::before{
        background-size:21px auto;
    }
    .cmnContact .linklist .item .txtbox .inbox{
        text-align: center;
    }
    .cmnContact .linklist .item .txtbox .inbox .sub{
        font-size: 16px;
    }
    .cmnContact .linklist .item .txtbox .inbox .tit{
        font-size: 11px;
        line-height: 1.45;
        padding-top: 9px;
    }
    .cmnContact .linklist .item .txtbox .inbox .btnbox{
        width: 66px;
        margin-top: 19px;
        padding-bottom: 6px;
    }
}

.cmnContact .boxTel{
    text-align: center;
    padding: 75px 0 85px;
}
.cmnContact .boxTel .tit{
    font-size:13px;
    line-height: 1.5;
    font-weight: bold;
}
.cmnContact .boxTel .num{
    display: inline-block;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    color: #000;
}
.cmnContact .boxTel .time{
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    padding-top: 13px;
    letter-spacing: 1px;
}
@media only screen and (max-width:767px){   
    .cmnContact .boxTel{
        text-align: center;
        padding: 50px 0;
    }
    .cmnContact .boxTel .tit{
        font-size: 12px;
    }
    .cmnContact .boxTel .num{
        font-size: 26px;
        letter-spacing: 0px;
        margin-top: 9px;
    }
    .cmnContact .boxTel .time{
        font-size: 11px;
        padding-top: 8px;
        letter-spacing: 0px;
    }
}

/* secCmnIndexTit */
.secCmnIndexTit{
    height: 750px;
    padding-top: 70px;
    background: url(../img/common/tp.gif) center top no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    position: relative;
}
.secCmnIndexTit::after{
    content: "";
    width: 1px;
    height: 100px;
    background: #efefef;
    position: absolute;
    bottom: -50px;
    left: calc(50% - 0.5px);
}
.secCmnIndexTit .titEng{
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 2px;
}
.secCmnIndexTit .titJpn{
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
}
@media only screen and (max-width:767px){
    .secCmnIndexTit{
        height: 93.334vw;
        background-size: cover;
        padding-top: 26px;
    }
    .secCmnIndexTit::after{
        height: 40px;
        bottom: -20px;
    }
    .secCmnIndexTit .titEng{
        font-size: 30px;
        letter-spacing: 1px;
    }
    .secCmnIndexTit .titJpn{
        font-size: 12px;
        margin-top: 7px;
    }
}

/* secCmnDetailsTit */
.secCmnDetailsTit{
    font-size: 40px;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 250px;
}
@media only screen and (max-width:767px){
    .secCmnDetailsTit{
        font-size: 20px;
        margin-top: 100px;
    }
}

/* secCmnWorksList */
.secCmnWorksList{
    margin-top: 150px;
}
.secCmnWorksList .worksList{
    display: flex;
    flex-wrap: wrap;
}
.secCmnWorksList .worksItem{
    width: calc(100% / 3);
}
.secCmnWorksList .worksItem:nth-child(n+4){
    margin-top: 95px;
}
.secCmnWorksList .worksInner{
    display: block;
    text-decoration: none;
    color: #1f1f1f;
}
.secCmnWorksList .imgBox{
    position: relative;
    overflow: hidden;
}
.secCmnWorksList .imgBox::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.502);
    opacity: 0;
}
.secCmnWorksList .img{
    width: 100%;
    height: 0;
    padding-top: 67.96875%;
    -webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.secCmnWorksList .hoverTxt{
    font-size: 15px;
    letter-spacing: 0.5px;
    padding-right: 18px;
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(-120%);
    z-index: 10;
    transition-delay: 0s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
}
.secCmnWorksList .subTxt{
    position: relative;
}
.secCmnWorksList .subTxt::after{
    position: absolute;
    content: "";
    width: 14px;
    height: 15px;
    right: -20px;
    top: calc(50% - 7px);
}
.secCmnWorksList .subTxt.lazyloaded::after{
    background: url(../img/iconWorksImg.png) center top / cover;
}
.secCmnWorksList .txtBox{
    padding: 38px 33px 0;
    transition: opacity 0.2s ease-out;
}
.secCmnWorksList .worksInner:hover .txtBox{
    opacity: 0.6;
}
.secCmnWorksList .tit{
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.secCmnWorksList .mainTit{
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 1.5px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 15px;
}
.secCmnWorksList .txt{
    font-size: 12px;
    line-height: 1.5;
    color: #787878;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 13px;
}
.secCmnWorksList .worksInner:hover{
    opacity: 1;
}
.secCmnWorksList .worksInner:hover .imgBox::after{
    opacity: 1;
}
.secCmnWorksList .worksInner:hover .img{
    -webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.secCmnWorksList .worksInner:hover .img img{
    -webkit-filter: blur(2px);
    filter: blur(2px);
}
.secCmnWorksList .worksInner:hover .hoverTxt{
    opacity: 1;
    transform: translateY(-50%);
}
@media only screen and (max-width:767px){
    .secCmnWorksList{
        margin-top: 60px;
    }
    .secCmnWorksList .worksItem{
        width: 50%;
    }
    .secCmnWorksList .worksItem:nth-child(n+4){
        margin-top: 37px;
    }
    .secCmnWorksList .worksItem:nth-child(n+3){
        margin-top: 37px;
    }
    .secCmnWorksList .img{
        padding-top: 68.086%;
    }
    .secCmnWorksList .txtBox{
        padding: 15px 14px 0;
    }
    .secCmnWorksList .tit{
        font-size: 11px;
    }
    .secCmnWorksList .mainTit{
        font-size: 15px;
        line-height: 1.33;
        letter-spacing: 1px;
        white-space: normal;
        text-overflow: inherit;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        max-height: 60px;
        margin-top: 9px;
    }
    .secCmnWorksList .txt{
        font-size: 10px;
        margin-top: 7px;
    }
}

/* cmnIconEvent */
.cmnIconEvent{
    width: 110px;
    height: 44px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cmnIconEvent.bg01{
    background: #868273;
}
.cmnIconEvent.bg02{
    background: #4a4a4a;
}
@media only screen and (max-width:767px){
    .cmnIconEvent{
        width: 100%;
        height: 22px;
        font-size: 10px;
    }
}

/* secCmnEventList */
.secCmnEventList{
    margin-top: 150px;
}
.secCmnEventList .eventList{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.secCmnEventList .eventItem{
    width: 30.895%;
    margin-right: 3.6575%;
}
.secCmnEventList .eventItem:nth-child(3n),
.secCmnEventList .eventItem:last-child{
    margin-right: 0;
}
.secCmnEventList .eventItem:nth-child(n+4){
    margin-top: 77px;
}
.secCmnEventList .eventInner{
    display: block;
    text-decoration: none;
    color: #1f1f1f;
}
.secCmnEventList .imgBox{
    position: relative;
    overflow: hidden;
}
.secCmnEventList .imgBox::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.502);
    opacity: 0;
}
.secCmnEventList .img{
    width: 100%;
    height: 0;
    padding-top: 73.685%;
    -webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.secCmnEventList .hoverTxt{
    font-size: 15px;
    letter-spacing: 0.5px;
    padding-right: 18px;
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(-120%);
    z-index: 10;
    transition-delay: 0s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
}
.secCmnEventList .subTxt{
    position: relative;
}
.secCmnEventList .subTxt::after{
    position: absolute;
    content: "";
    width: 14px;
    height: 15px;
    right: -20px;
    top: calc(50% - 7px);
}
.secCmnEventList .subTxt.lazyloaded::after{
    background: url(../img/iconWorksImg.png) center top / cover;
}
.secCmnEventList .txtBox{
    padding: 25px 0 0;
    transition: opacity 0.2s ease-out;
}
.secCmnEventList .eventInner:hover .txtBox{
    opacity: 0.6;
}
.secCmnEventList .mainTit{
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 16px;
}
.secCmnEventList .tit{
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 12px;
}
.secCmnEventList .txt{
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}
.secCmnEventList .endBox,
.secDetailsTop .endBox{
    display: flex;
    align-items: center;
}
.secCmnEventList .endTit,
.secDetailsTop .endTit{
    font-size: 13px;
    margin-left: 10px;
}
.secCmnEventList .endTxt{
    font-size: 14px;
    line-height: 1.85;
    margin-top: 9px;
}
.secCmnEventList .eventInner:hover{
    opacity: 1;
}
.secCmnEventList .eventInner:hover .imgBox::after{
    opacity: 1;
}
.secCmnEventList .eventInner:hover .img{
    -webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.secCmnEventList .eventInner:hover .img img{
    -webkit-filter: blur(2px);
    filter: blur(2px);
}
.secCmnEventList .eventInner:hover .hoverTxt{
    opacity: 1;
    transform: translateY(-50%);
}
.secCmnEventList .img.end{
    filter: grayscale(100%);
}
@media only screen and (max-width:767px){
    .secCmnEventList{
        margin-top: 60px;
    }
    .secCmnEventList .eventItem{
        width: 48.696%;
        margin-right: 2.608%;
    }
    .secCmnEventList .eventItem:nth-child(3n){
        margin-right: 2.608%;
    }
    .secCmnEventList .eventItem:nth-child(2n){
        margin-right: 0;
    }
    .secCmnEventList .eventItem:nth-child(n+4){
        margin-top: 28px;
    }
    .secCmnEventList .eventItem:nth-child(n+3){
        margin-top: 28px;
    }
    .secCmnEventList .img{
        padding-top: 73.81%;
    }
    .secCmnEventList .txtBox{
        padding: 0;
    }
    .secCmnEventList .mainTit{
        font-size: 15px;
        line-height: 1.4;
        white-space: normal;
        text-overflow: inherit;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        max-height: 42px;
        margin-top: 14px;
    }
    .secCmnEventList .tit{
        font-size: 11px;
        margin-top: 2px;
    }
    .secCmnEventList .txt{
        font-size: 11px;
        margin-top: 1px;
    }
    .secCmnEventList .endBox{
        display: block;
        align-items: center;
    }
    .secCmnEventList .endTit{
        display: none;
    }
    .secCmnEventList .endTxt{
        font-size: 10px;
        line-height: 1.3;
        margin-top: 4px;
        text-align: center;
    }
    .secDetailsTop .endTit{
        font-size: 12px;
    }
}

/* animViewMore */
.animViewMore .imgBox{
    position: relative;
    overflow: hidden;
}
.animViewMore .imgBox::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.502);
    opacity: 0;
}
.animViewMore .img{
    width: 100%;
    height: 0;
    padding-top: 73.685%;
    -webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.animViewMore .hoverTxt{
    font-size: 15px;
    letter-spacing: 0.5px;
    padding-right: 18px;
    position: absolute;
    top: 50%;
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(-120%);
    z-index: 10;
    transition-delay: 0s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
}
.animViewMore:hover{
    opacity: 1;
}
.animViewMore:hover .imgBox::after{
    opacity: 1;
}
.animViewMore:hover .img{
    -webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.animViewMore:hover .img img{
    -webkit-filter: blur(2px);
    filter: blur(2px);
}
.animViewMore:hover .hoverTxt{
    opacity: 1;
    transform: translateY(-50%);
}

/* animThumb */
.animThumb{
    cursor: pointer;
}
.animThumb .imgBox{
    position: relative;
    overflow: hidden;
}
.animThumb .img{
    width: 100%;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
}
.animThumb .img::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.502);
    opacity: 0;
}
.animThumb .borderBox::before,
.animThumb .borderBox::after{
    content:"";
    position: absolute;
    background:#fff;
    width: 0;
    height:1px;
    transition: all 0.2s linear;
    z-index: 10;
}
.animThumb .borderBox::before{
    right: 5px;
    bottom: 5px;
}
.animThumb .borderBox::after{
    left: 5px;
    top: 5px;
}
.animThumb .imgBox{
    display: block;
}
.animThumb .imgBox::before,
.animThumb .imgBox::after{
    content:"";
    position: absolute;
    background: #fff;
    width:1px;
    height:0;
    transition: all 0.1s linear;
    z-index: 10;
}
.animThumb .imgBox::before{
    left: 5px;
    bottom: 5px;
}
.animThumb .imgBox::after{
    right: 5px;
    top: 5px;
}
.animThumb.swiper-slide-thumb-active{
    opacity: 1;
}
.animThumb.swiper-slide-thumb-active .img::after{
    opacity: 1;
}
.animThumb.swiper-slide-thumb-active .borderBox::before,
.animThumb.swiper-slide-thumb-active .borderBox::after{
    width: calc(100% - 10px);
}
.animThumb.swiper-slide-thumb-active .borderBox::after{
    transition-delay: 0s;/*すぐ線を出現させる*/
}
.animThumb.swiper-slide-thumb-active .borderBox::before{
    transition-delay: 0.3s;/*線の出現を0.3秒遅らせる*/
}
.animThumb.swiper-slide-thumb-active .imgBox::before,
.animThumb.swiper-slide-thumb-active .imgBox::after{
    height: calc(100% - 10px);
}
.animThumb.swiper-slide-thumb-active .imgBox::before{
    transition-delay: 0.5s;/*線の出現を0.5秒遅らせる*/
}
.animThumb.swiper-slide-thumb-active .imgBox::after{
    transition-delay: 0.2s;/*線の出現を0.2秒遅らせる*/
}
@media only screen and (max-width:767px){
    .animThumb .borderBox::before{
        right: 2px;
        bottom: 2px;
    }
    .animThumb .borderBox::after{
        left: 2px;
        top: 2px;
    }
    .animThumb .imgBox::before{
        left: 2px;
        bottom: 2px;
    }
    .animThumb .imgBox::after{
        right: 2px;
        top: 2px;
    }
    .animThumb.swiper-slide-thumb-active .borderBox::before,
    .animThumb.swiper-slide-thumb-active .borderBox::after{
        width: calc(100% - 4px);
    }
    .animThumb.swiper-slide-thumb-active .imgBox::before,
    .animThumb.swiper-slide-thumb-active .imgBox::after{
        height: calc(100% - 4px);
    }
}

#header{
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    z-index: 1000;
    min-width: 1400px;
    transition: 0.5s;
}
#header.scroll{
    background: #666666;
    transition: 0.5s;
}
#header .inner{
    max-width: 1860px;
    width: calc(100% - 40px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s linear 0.5s 1 normal both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#header .inner .logo{
    display: block;
    width: 259px;
}
#header.scroll .inner .logo{
    width: 152px;
}
#header .inner .logo img{
    width: 100%;
    height: auto;
}
#header .inner .rightbox{
    padding-right: 61px;
    padding-top: 2px;
    display: flex;
}
#header .inner .rightbox .linklist{
    display: flex;
}
#header .inner .rightbox .linklist li{
    padding-right: 45px;
    position: relative;
    transition: 0s;
}
#header.scroll .inner .rightbox .linklist,
#header .inner .rightbox .linklist.scrollonly{
    display: none;
}
#header.scroll .inner .rightbox .linklist.scrollonly{
    display: flex;
}
#header.scroll .inner .rightbox .linklist li{
    padding-right: 36px;
}
#header .inner .rightbox .linklist .item.on a::after,
#header .inner .rightbox .linklist .item a:hover::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    bottom: 0;
    left: 0;
}
#header .inner .rightbox .linklist li:last-child{
}
#header .inner .rightbox .linklist li a{
    font-size:16px;
    line-height: 18px;
    letter-spacing: 2px;
    padding: 28px 0;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: 0.5s;
}
#header.scroll .inner .rightbox .linklist li a{
    font-size:16px;
}
#header .inner .rightbox .linkright{
    display: none;
}
#header.scroll .inner .rightbox .linkright{
    display: flex;
}
#header .inner .rightbox .linkright .item{
    position: relative;
    padding: 0 40px;
}
#header .inner .rightbox .linkright .item::after{
    content: "";
    width: 1px;
    height: 20px;
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    background: #fff;
}
#header .inner .rightbox .linkright .item a{
    font-size:11px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #fff;
    text-decoration: none;
}
#header .inner .logo img.is-brown{
    display: none;
}
.header-black #header .inner .logo img.is-brown{
    display: inline;
}
.header-black #header .inner .logo img.is-white{
    display: none;
}
.header-black #header.scroll .inner .logo img.is-brown{
    display: none;
}
.header-black #header.scroll .inner .logo img.is-white{
    display: inline;
}
.header-black #header:not(.scroll) .inner .rightbox .linklist li a{
    color: #1f1f1f;
}
@media only screen and (max-width:767px){
    #header{
        position: absolute;
        width: 100vw;
        height: 67px;
        top: 0;
        left: 0;
        z-index: 100;
        min-width: 0;
    }
    #header.scroll{
        background: none;
    }
    #header .inner{
        width: 87%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    #header .inner .logo{
    width: 124px;
    }
    #header .inner .rightbox{
        display: none;
    }
}
#header .boxSubList {
    display: none;
    width: 240px;
    z-index: 999;
    position: absolute;
    top: 34px;
    left: -8px;
    padding-top: 20px;
}
#header .inner .rightbox .linklist .headerOpen .boxSubList a{
    color: #000;
}
#header .inner .rightbox .active .boxSubList{
    display: block;
}
#header .inner .rightbox .boxSubList .subItem{
    border-bottom: 1px solid #e5e6e7;
    background: #fff;
    padding: 0;
}
#header .inner .rightbox .boxSubList .subItem a{
    display: block;
    position: relative;
    font-size:12px;
    line-height: 30px;
    padding: 9px 19px 10px;
}
#header .inner .rightbox .boxSubList .subItem .subItemLink::after,
#header .inner .rightbox li.active .boxSubList .subItem .subItemLink::after,
#header .inner .rightbox .boxSubList .subItem .subItemLink:hover::after,
#header .inner .rightbox li.active .boxSubList .subItem .subItemLink:hover::after{
    content: "";
    position: absolute;
    left: auto;
    right: 20px;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #000;
}
#header .inner .rightbox .subItem + .subItem {
    border-top: 1px solid #cecece;
}
/*-----------------------------------------------
    btnNavi
-----------------------------------------------*/
#btnNavi {
    width: 32px;
    position: fixed;
    top: 0;
    right: 30px;
    z-index: 9999;
}
#btnNavi a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 70px;
    color: #fff;
}
#btnNavi .border {
    width: 100%;
    height: 7px;
    position: relative;
}
#btnNavi .border::before,
#btnNavi .border::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
}
#btnNavi.loaded .border::before,
#btnNavi.loaded .border::after {
    transition: all 0.4s ease-out;
}
#btnNavi .border::before {
    top: 0;
}
#btnNavi .border::after {
    bottom: 0;
}
#btnNavi.naviOpen .border::before,
#btnNavi.naviOpen .border::after,
#btnNavi.naviOpen.scroll .border::before,
#btnNavi.naviOpen.scroll .border::after{
    background: #fff;
}
#btnNavi.naviOpen .border::before {
    transform: translateY(4px) rotate(-17deg);
}
#btnNavi.naviOpen .border::after {
    transform: translateY(-2px) rotate(17deg);
}
@media only screen and (max-width:1420px){
    #btnNavi{
        right: auto;
        left: calc(1400px - 60px);
    }
}
.header-black #btnNavi:not(.naviOpen):not(.scroll) .border::before,
.header-black #btnNavi:not(.naviOpen):not(.scroll) .border::after {
    background: #1f1f1f;
}
@media only screen and (max-width:767px){
    #btnNavi {
        width: 67px;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        transition: 0.5s;
    }
    #btnNavi.scroll {
        background: #666666;
    }
    #btnNavi.naviOpen{
        background: none;
    }
    #btnNavi a{
        height: 67px;
    }
    #btnNavi .border {
        height: 7px;
        width: 32px;
    }
    #btnNavi.naviOpen .border::before {
        transform: translateY(3px) rotate(-17deg);
    }
    #btnNavi.naviOpen .border::after {
        transform: translateY(-3px) rotate(17deg);
    }
}

/*-----------------------------------------------
    pnkz
-----------------------------------------------*/
#pnkz{ 
    width:100%;
    background:#fff;
    border-top: solid 1px #d0ccc5;
    padding: 15px 0;
}
#pnkz .wrapper1230{
    position: relative;
}
#pnkz li{
    display:inline-block;
    width:auto !important;
    font-size:12px;
    line-height:30px;
    letter-spacing:.5px;
    vertical-align:top;
}
#pnkz li::before{
    content:"/";
    display:inline-block;
    padding:0 3px;
    color:#000;
}
#pnkz li:first-child::before{ display:none;}
#pnkz a{ 
    color:#1f1f1f;
    text-decoration:underline;
}
@media only screen and (max-width:767px){
    #pnkz{
        padding: 5px 0;
    }
    #pnkz .wrapper1230{
        white-space: nowrap;
        overflow-y: scroll;
        width: 96%;
        margin: 0 0 0 4%;
    }
    #pnkz li{
        font-size:11px;
        letter-spacing:0;
    }
}

/*-----------------------------------------------
    footer
-----------------------------------------------*/
#footer .onbox{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 750px;
}
#footer .onbox.lazyloaded{
    background-image: url(../img/imgbackFooter.jpg);
}
#footer .onbox .inner{
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 98px;
}
#footer .onbox .inner .imgItem{
    position: absolute;
    right: calc(23.6% - 181px);
    top: 146px;
}
#footer .onbox .inner .linklist{
    display: flex;
}
#footer .onbox .inner .linklist .itemlist{
    margin-right: 80px;
}
#footer .onbox .inner .linklist .itemlist:nth-child(2){
    margin-right: 0;
    margin-top: 40px;
}
#footer .onbox .inner .linklist .itemlist .link{
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #1f1f1f;
    text-decoration: none;
    display: block;
}
#footer .onbox .inner .linklist .itemlist .link.no{
    margin-bottom: 0;
}
#footer .onbox .inner .linklist .itemlist .sublist{
    padding-left: 7px;
    padding-top: 2px;
    padding-bottom: 14px;
}
#footer .onbox .inner .linklist .itemlist .sublist .item{}
#footer .onbox .inner .linklist .itemlist .sublist .subitem {
    text-decoration: none;
    font-size: 12px;
    line-height: 26px;
    color: #1f1f1f;
}
#footer .onbox .inner .linklist .itemlist .sublist .subitem span{
    position: relative;
    padding-left:20px;
    font-weight: 500;
    font-size: 15px;
}
#footer .onbox .inner .linklist .itemlist .sublist .subitem span::after{
    content: "";
    position: absolute;
    background: #aaaaaa;
    top: calc(50% - 0.5px);
    left: 0;
    width:15px;
    height: 1px;
}
#footer .onbox .inner .txt{
    font-size: 14px;
    line-height: 26px;
    font-weight: bold;
    padding-top: 44px;
}
#footer .underbox{
    height: 80px;
}
#footer .underbox .inner{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
#footer .underbox .inner .secSnsbox{
    display: flex;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
}
#footer .underbox .inner .secSnsbox .link{
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    letter-spacing: 0.5px;
    color: #000;
    margin-left: 34px;
}
#footer .underbox .inner .secSnsbox .link span{
    position: relative;
    padding-left: 28px;
}
#footer .underbox .inner .secSnsbox .link span::after{
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 8px);
    width: 20px;
    height: 20px;
}
#footer .underbox .inner .secSnsbox .link.Inst span::after{
    background: url(../img/imgSnsicon01.gif) center center no-repeat;
    background-size: 20px auto;
}
#footer .underbox .inner .secSnsbox .link.Pint span::after{
    background: url(../img/imgSnsicon02.gif) center center no-repeat;
    background-size: 20px auto;
}
#footer .underbox .inner .secSnsbox .link.YouTube span::after{
    background: url(../img/imgSnsicon03.gif) center center no-repeat;
    background-size: 20px auto;
}
#footer .underbox .inner .copybox{
    display: flex;
    align-items: center;
    padding: 30px 0;
}
#footer .underbox .inner .copybox .copy{
    font-size:11px;
    line-height: 1.5;
}
#footer .underbox .inner .copybox .linklist{
    position: relative;
    display: flex;
    margin-left: 31px;
}
#footer .underbox .inner .copybox .linklist::after{
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    width: 1px;
    height: 20px;
    background: #dedede;
}
#footer .underbox .inner .copybox .linklist .item{
    display: inline-block;
    margin-left: 30px;
}
#footer .underbox .inner .copybox .linklist .item a{
    text-decoration: none;
    color: #000;
    font-size:12px;
    line-height: 1.5;
}
@media only screen and (max-width:767px){
    #footer{
        height: auto;
        padding-bottom: 82px;
    }
    #footer .onbox,
    #footer .onbox.lazyloaded{
        background:none;
        height: auto;
    }
    #footer .onbox .inner{
        width: 100%;
        padding-top: 0px;
    }
    #footer .onbox .inner .imgItem{
        position: static;
    }
    #footer .onbox .inner .linklist{
       display: none;
    }
    #footer .inner .txt{
        font-size: 10px;
        line-height: 1.7;
        padding-top: 22px;
    }
    #footer .underbox{
        height: auto;
        padding-top: 39px;
    }
    #footer .underbox .inner{
        width: 85.33%;
        margin: 0 auto;
        position: relative;
    }
    #footer .underbox .inner .secSnsbox{
        display: flex;
        position: static;
        justify-content: center;
    }
    #footer .underbox .inner .secSnsbox .link{
        font-size: 11px;
        line-height: 20px;
        letter-spacing: 0.5px;
        margin-left: 20px;
    }
    #footer .underbox .inner .secSnsbox .link:first-child{
        margin-left: 0;
    }
    #footer .underbox .inner .secSnsbox .link span{
        padding-left: 25px;
    }
    #footer .underbox .inner .secSnsbox .link span::after{
        top: calc(50% - 8px);
    }
    #footer .underbox .inner .copybox{
        display: block;
        padding: 37px 0 0;
    }
    #footer .underbox .inner .copybox .copy{
        font-size:10px;
        line-height: 1.5;
        letter-spacing: 0.25px;
        text-align: center;
    }
    #footer .underbox .inner .copybox .linklist{
        display: none;
    }
}
/*-----------------------------------------------
    fNavi
-----------------------------------------------*/
#fNavi{
    display: none;
}
@media only screen and (max-width:767px){
    #fNavi{
        width: 100vw;
        height: 45px;
        background: #868273;
        display: block;
        position: fixed;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        z-index: 999;
    }
    .no-fnav #fNavi{
        display: none;
    }
    #fNavi .linklist{
        display: flex;
        height: 100%;
    }
    #fNavi .linklist li{
        width: calc(100% / 3);
        border-right: 1px solid #fff;
    }
    #fNavi .linklist li a{
        text-decoration: none;
        color: #fff;
        display: block;
        height: 100%;
    }
    #fNavi .linklist li:last-child{
        border: none;
    }
    #fNavi.on{
        bottom: 0;
        transform: none;
        -webkit-transform: none;
    }
    #fNavi .linklist li a .inbox{
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    #fNavi .linklist li a .inbox .txt{
        font-size:11px;
        line-height: 13px;
        text-align: left;
        position: relative;
        padding-left: 25px;
    }
    #fNavi .linklist li a .inbox .txt::after{
        content: "";
        position: absolute;
        left: 0;
    }
}
@media only screen and (max-width:340px){
    #fNavi .linklist li a .inbox .txt{
        font-size: 10px;
    }
}

/*-----------------------------------------------
    fade
-----------------------------------------------*/
#fade{
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    background-color: #ffffff;
    z-index: 100;
}

/*-----------------------------------------------
    overlay
-----------------------------------------------*/
#overlay{
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.4);
    opacity: 0;
    z-index: -1;
}
#overlay.is-active{
    animation: fadeAnimationIn 0.5s ease-in-out forwards;
}

@keyframes fadeAnimationIn {
    0% {
        opacity: 0;
        z-index: -1;
    }
    1% {
        opacity: 0;
        z-index: 999;
    }
    100% {
        opacity: 1;
        z-index: 999;
    }
}

/*-----------------------------------------------
    menu
-----------------------------------------------*/
#menu{
    display: none;
    position: relative;
    background: #181817;
    z-index: 9998;
    padding: 108px 0;
    min-height: 100vh;
    width: 100%;
}
#menu .inner{
    width: 1000px;
    display: block;
    margin: 0 auto;
    position: relative;
}
#menu .inner .toplinkbox{width: 370px;position: absolute;right: 0;margin-top: 28px;}
#menu .inner .toplinkbox .list{
    display: flex;
    flex-wrap: wrap;
}
#menu .inner .toplinkbox .list li{
    width: 180px;
    margin-right: 10px;
}
#menu .inner .toplinkbox .list li:nth-child(2n){
    margin-right: 0;
}
#menu .inner .toplinkbox .list li:nth-child(n + 3){
    margin-top: 10px;
}
#menu .inner .toplinkbox .list li a{
    background: #fff;
    text-decoration: none;
    display: block;
    position: relative;
    color: #0e0e0e;
    height: auto;
    padding-bottom: 43px;
}
#menu .inner .toplinkbox .list li a .txtbox{
    text-align: center;
}
#menu .inner .toplinkbox .list li a .txtbox .tit{
    position: relative;
    font-size:13px;
    line-height: 20px;
    padding-top: 76px;
}
#menu .inner .toplinkbox .list li a .txtbox .txt{
    font-size:12px;
    padding-top: 3px;
    line-height: 1.5;
}
#menu .inner .toplinkbox .list li a .txtbox .tit::after{
    content: "";
    position: absolute;
}
#menu .inner .toplinkbox .list li:nth-child(1) .tit::after{
    width:30px;
    height: 24px;
    left: calc(50% - 17px);
    top: 42px;
    background: url(../img/common/imgmenuIcon01.gif) center center no-repeat;
    background-size: contain;
}
#menu .inner .toplinkbox .list li:nth-child(2) .tit::after{
    top: 44px;
    width:23px;
    height: 21px;
    left: calc(50% - 11.5px);
    background: url(../img/common/imgmenuIcon02.gif) center center no-repeat;
    background-size: contain;
}
#menu .inner .toplinkbox .list li:nth-child(3) .tit::after{
    width:30px;
    height: 20px;
    top: 43px;
    left: calc(50% - 15px);
    background: url(../img/common/imgmenuIcon03.gif) center center no-repeat;
    background-size: contain;
}
#menu .inner .toplinkbox .list li:nth-child(4) .tit::after{
    width:34px;
    height: 34px;
    left: calc(50% - 17px);
    background: url(../img/common/imgmenuIcon04.gif) center center no-repeat;
    background-size: contain;
    top: 35px;
}

#menu .inner .toplinkbox .modelbox{
    padding-top: 23px;
}
#menu .inner .toplinkbox .modelbox .tit{
    font-size:15px;
    line-height: 45px;
    color: #fff;
}
#menu .inner .toplinkbox .modelbox .modellink{
    position: relative;
    background: #fff;
    text-decoration: none;
    color: #1f1f1f;
    display: block;
    margin-top: 10px;
}
#menu .inner .toplinkbox .modelbox .modellink .itembox{
    position: absolute;
    top: calc(0% - 14px);
    right: 2px;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox{
    display: flex;
    padding: 0;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox .imgbox{
    width: 90px;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox .txtbox{
    width: calc(100% - 90px);
    padding-left: 20px;
    color: #000;
    padding-top: 27px;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox .txtbox .tit{
    font-size:12px;
    line-height: 18px;
    font-weight: bold;
    color: #1f1f1f;
}
#menu .inner .linkbox{
    display: flex;
    min-height: 572px;
}
#menu .inner .linkbox .inbox{
    margin-right: 49px;
}
#menu .inner .linkbox .inbox .linklist{
    width: 245px;
}
#menu .inner .linkbox .inbox .linklist .linkItem{
    border-bottom: 1px solid #333333;
}
#menu .inner .linkbox .inbox .linklist .link{
    color: #fff;
    text-decoration: none;
    font-size:15px;
    line-height:45px;
    display: block;
    position: relative;
    padding: 11px 0 12px;
}
#menu .inner .linkbox .inbox .linklist .link::after{
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #fff;
}
#menu .inner .linkbox .inbox .linklist .link.Tabstart{
    cursor: pointer;
}
#menu .inner .linkbox .inbox .linklist .link.Tabstart::after{
    top: calc(50% - 3px);
    width: 7px;
    height: 6px;
    clip-path: polygon(0 0, 50% 30%, 100% 0, 50% 100%);
    transform: scale(1);
}
#menu .inner .linkbox .inbox .linklist .link.Tabstart.opened::after{
    transform: scale(1, -1);
}
#menu .inner .linkbox .inbox .linklist .sublist{
    padding-left: 15px;
    padding-bottom: 4px;
}
#menu .inner .linkbox .inbox .linklist .Tabstart + .sublist{
    display: none;
}
#menu .inner .linkbox .inbox .linklist .sublist li{
    margin-bottom: 19px;
}
#menu .inner .linkbox .inbox .linklist .sublist li a{
    color: #fff;
    text-decoration: none;
    font-size:14px;
    line-height: 1.25;
    display: block;
}
#menu .inner .linkbox .inbox .linklist .sublist li a span{
    position: relative;
    padding-left:9px;
}
#menu .inner .linkbox .inbox .linklist .sublist li a span::after{
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 0px;
    width: 4px;
    height: 1px;
    background-color: #5e5e5e;
}
#menu .inner .linkbox .inbox .list02{
    margin-top: 31px;
}
#menu .inner .linkbox .inbox .list02 .box{
    margin-bottom: 15px;
}
#menu .inner .linkbox .inbox .list02 .link{
    text-decoration: none;
    color: #fff;
    font-size:13px;
    line-height: 1.5;
    display: inline-block;
}
#menu .inner .linkbox .inbox .snsbox{
    margin-top: 37px;
}
#menu .inner .linkbox .inbox .snsbox .box{
    margin-bottom: 15px;
}
#menu .inner .linkbox .inbox .snsbox .box .link{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size:12px;
    line-height: 1.5;
}
#menu .inner .linkbox .inbox .snsbox .box .link span{
    position: relative;
    padding-left:27px;
}
#menu .inner .linkbox .inbox .snsbox .box .link span::after{
    content: "";
    position: absolute;
    left: 0;
}
#menu .inner .linkbox .inbox .snsbox .box .link.Inst span::after{
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    background: url(../img/imgmenuSnsicon01.png) center center no-repeat;
    background-size: contain;
}
#menu .inner .linkbox .inbox .snsbox .box .link.Pint span::after{
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    background: url(../img/imgmenuSnsicon02.png) center center no-repeat;
    background-size: contain;
}
#menu .inner .linkbox .inbox .snsbox .box .link.YouTube span::after{
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    background: url(../img/imgmenuSnsicon03.png) center center no-repeat;
    background-size: contain;
}
#menu .inner .Telbox{
    text-align: center;
    color: #fff;
    margin-top: 21px;
}
#menu .inner .Telbox .tit{
    font-size: 12px;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 0.5px;
}
#menu .inner .Telbox .num{
    display: inline-block;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    color: #fff;
}
#menu .inner .Telbox .time{
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    padding-top: 13px;
    letter-spacing: 0px;
}
@media only screen and (max-width:767px){
    #menu{
        padding: 66px 0 0;
    }
    #menu .inner{
        width: 86.66%;
        display: block;
        margin: 0 auto;
        position: relative;
    }
    #menu .inner .toplinkbox{width: 100%;position: static;margin-top: 0;}
    #menu .inner .toplinkbox .list{
        display: flex;
        flex-wrap: wrap;
    }
    #menu .inner .toplinkbox .list li{
        width: 48.624%;
        margin-right: 2.752%;
    }
    #menu .inner .toplinkbox .list li:nth-child(2n){
        margin-right: 0;
    }
    #menu .inner .toplinkbox .list li:nth-child(n + 3){
        margin-top: 10px;
    }
    #menu .inner .toplinkbox .list li a{
        padding: 13px 0 14px;
    }
    #menu .inner .toplinkbox .list li a .txtbox{
        text-align: left;
        position: relative;
        padding-left: 40px;
    }
    #menu .inner .toplinkbox .list li a .txtbox::after{
        content: "";
        position: absolute;
    }
    #menu .inner .toplinkbox .list li a .txtbox .tit{
        display: none;
    }
    #menu .inner .toplinkbox .list li a .txtbox .txt{
        font-size: 11px;
        padding-top: 0;
        line-height: 18px;
    }
    #menu .inner .toplinkbox .list li:nth-child(1) .txtbox::after{
        width: 21px;
        height: 17px;
        left: 10px;
        top: calc(50% - 8.5px);
        background: url(../img/common/imgmenuIcon01.gif) center center no-repeat;
        background-size: contain;
    }
    #menu .inner .toplinkbox .list li:nth-child(2) .txtbox::after{
        top: calc(50% - 7.5px);
        width: 16px;
        height: 15px;
        left: 13px;
        background: url(../img/common/imgmenuIcon02.gif) center center no-repeat;
        background-size: contain;
    }
    #menu .inner .toplinkbox .list li:nth-child(3) .txtbox::after{
        width: 21px;
        height: 14px;
        top: calc(50% - 7px);
        left: 11px;
        background: url(../img/common/imgmenuIcon03.gif) center center no-repeat;
        background-size: contain;
    }
    #menu .inner .toplinkbox .list li:nth-child(4) .txtbox::after{
        width: 20px;
        height: 20px;
        left: 11px;
        background: url(../img/common/imgmenuIcon04.gif) center center no-repeat;
        background-size: contain;
        top: calc(50% - 10px);
    }
    
    #menu .inner .modelbox{
        padding-top: 11px;
    }
    #menu .inner .modelbox .tit{
        font-size:15px;
        line-height: 45px;
        color: #fff;
    }
    #menu .inner .modelbox .modellink{
        position: relative;
        background: #fff;
        text-decoration: none;
        color: #1f1f1f;
        display: block;
        max-width: 375px;
        margin-top: 10px;
    }
    #menu .inner .modelbox .modellink .itembox{
        position: absolute;
        top: calc(0% - 14px);
        right: 0px;
        width: 121px;
    }
    #menu .inner .modelbox .modellink .modelbox{
        display: flex;
        padding: 0;
    }
    #menu .inner .modelbox .modellink .modelbox .imgbox{
        width: 90px;
    }
    #menu .inner .modelbox .modellink .modelbox .txtbox{
        width: calc(100% - 90px);
        padding-left: 14px;
        color: #000;
        padding-top: 27px;
    }
    #menu .inner .modelbox .modellink .modelbox .txtbox .tit{
        font-size: 11px;
        line-height: 17px;
        color: #000;
    }
    #menu .inner .linkbox{
        display: block;
        min-height: auto;
        margin-top: 12px;
    }
    #menu .inner .linkbox .inbox{
        margin-right: 0;
    }
    #menu .inner .linkbox .inbox .linklist{
        width: 100%;
    }
    #menu .inner .linkbox .inbox .linklist .linkItem{
        border-bottom: 1px solid #333333;
    }
    #menu .inner .linkbox .inbox .linklist .link{
        color: #fff;
        text-decoration: none;
        font-size:15px;
        line-height:45px;
        display: block;
        position: relative;
        padding: 11px 0 12px;
    }
    #menu .inner .linkbox .inbox .linklist .link::after{
        content: "";
        position: absolute;
        right: 0;
        top: calc(50% - 3.5px);
        width: 6px;
        height: 7px;
        clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
        background: #fff;
    }
    #menu .inner .linkbox .inbox .linklist .link.Tabstart::after{
        top: calc(50% - 3px);
        width: 7px;
        height: 6px;
        clip-path: polygon(0 0, 50% 30%, 100% 0, 50% 100%);
        transform: scale(1);
    }
    #menu .inner .linkbox .inbox .linklist .link.Tabstart.opened::after{
        transform: scale(1, -1);
    }
    #menu .inner .linkbox .inbox .linklist .sublist{
        padding-left: 19px;
        padding-bottom: 4px;
    }
    #menu .inner .linkbox .inbox .linklist .sublist li{
        margin-bottom: 19px;
    }
    #menu .inner .linkbox .inbox .linklist .sublist li a{
        color: #fff;
        text-decoration: none;
        font-size:14px;
        line-height: 1.25;
        display: block;
    }
    #menu .inner .linkbox .inbox .linklist .sublist li a span{
        position: relative;
        padding-left:9px;
    }
    #menu .inner .linkbox .inbox .linklist .sublist li a span::after{
        content: "";
        position: absolute;
        top: calc(50% - 0.5px);
        left: 0px;
        width: 4px;
        height: 1px;
        background-color: #5e5e5e;
    }
    #menu .inner .linkbox .inbox .list02{
        margin-top: 27px;
        border-top: 1px solid #333333;
        padding-top: 23px;
        padding-bottom: 5px;
        border-bottom: 1px solid #333333;
    }
    #menu .inner .linkbox .inbox .list02 .box{
        margin-bottom: 18px;
    }
    #menu .inner .linkbox .inbox .list02 .link{
        font-size: 12px;
    }
    #menu .inner .linkbox .inbox .snsbox{
        margin-top: 53px;
        display: flex;
        justify-content: center;
    }
    #menu .inner .linkbox .inbox .snsbox .box{
        margin-bottom: 0;
        margin-right: 19px;
    }
    #menu .inner .linkbox .inbox .snsbox .box:last-child{
        margin-right: 0;
    }
    #menu .inner .linkbox .inbox .snsbox .box .link{
        font-size:12px;
        letter-spacing: 0.5px;
    }
    #menu .inner .linkbox .inbox .snsbox .box .link span{
        position: relative;
        padding-left: 25px;
    }
    #menu .inner .linkbox .inbox .snsbox .box .link span::after{
        content: "";
        position: absolute;
        left: 0;
    }
    #menu .inner .linkbox .inbox .snsbox .box .link.Inst span::after{
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
        background: url(../img/imgmenuSnsicon01.png) center center no-repeat;
        background-size: contain;
    }
    #menu .inner .linkbox .inbox .snsbox .box .link.Pint span::after{
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
        background: url(../img/imgmenuSnsicon02.png) center center no-repeat;
        background-size: contain;
    }
    #menu .inner .linkbox .inbox .snsbox .box .link.YouTube span::after{
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
        background: url(../img/imgmenuSnsicon03.png) center center no-repeat;
        background-size: contain;
    }
    #menu .inner .Telbox{
        margin-top: 45px;
        margin-bottom: 22px;
    }
    #menu .inner .Telbox .tit{
        font-size: 12px;
        letter-spacing: 0;
    }
    #menu .inner .Telbox .num{
        font-size: 26px;
        letter-spacing: 0px;
    }
    #menu .inner .Telbox .time{
        font-size: 11px;
        line-height: 1.5;
        padding-top: 7px;
    }
    #menu .label{
        background: #7b796e;
        color: #fff;
        text-align: center;
        width: 100%;
        padding: 5px 0;
    }
    #menu .label .txt{
        font-size:12px;
        line-height: 1.6;
        font-weight: bold;
    }
}

/*-----------------------------------------------
    secCmintit
-----------------------------------------------*/
.secCmintit{
    text-align: center;
}
.secCmintit .subtit{
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 100px;
}
.secCmintit .tit{
    font-size:18px;
    line-height: 1.5;
    font-weight: bold;
    padding-top: 9px;
   
}
@media only screen and (max-width:767px){
    .secCmintit .tit{
        font-size: 12px;
        padding-top: 3px;
    }
}

/* 新增頁面及修改 */
/* 關於我們分頁 */
.abtit{
    text-align: justify;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 2px;
    margin: 25px 0;
    text-shadow: 2px 2px 2px black;
}

.abtxt{
    font-size: 76px;
    line-height: 30px;
    letter-spacing: 0px;
    padding-top: 10px;
    text-shadow: 2px 2px 2px black;
}

.abtitbox{
    color: #fff;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 15%;

    /* -webkit-transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center; */
}


.professional {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: min(30px, 30 / 1440 * 100vw);
    margin: min(130px, 130 / 1440 * 100vw) auto 0;
    border-bottom: 1px solid #bdbebf;
}

.professional-Section__title {
    flex: 0 0 40%; /* 左側 4 成 */
    display: flex;
    flex-direction: column;
    gap: min(8px, 8 / 1440 * 100vw);
}

.professional-Section__title .zh {
    font-size: min(40px, 40 / 1440 * 100vw);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.5;
}

.professional__text {
    flex: 0 0 60%; /* 右側 6 成 */
    letter-spacing: .08em;
    line-height: 2.625;
    text-align: justify;
}

.professional__text p {
    font-size: min(18px, 40 / 1440 * 100vw);
    margin-bottom: 70px;
    font-weight: 300;
    /* letter-spacing: -.01em;
    line-height: 1.5; */
}

.professional-Section__title .en {
    color: #b4a195;
    font-family: var(--font-en);
    font-size: min(16px, 16 / 1440 * 100vw);
    font-weight: 500;
    text-transform: uppercase;
}


/* se02 */
.legal-Purpose__box{
    align-items: center;
    display: flex;
    gap: min(70px, 70 / 1440 * 100vw);
    margin: min(0px, 90 / 1440 * 100vw) 0 70px;
}

.legal-Purpose__text{
    letter-spacing: .05em;
    line-height: 2;
    text-align: justify;
}

.legal-Section__title .en {
    display: flex;
    color: #b4a195;
    font-family: var(--font-en);
    font-size: min(16px, 16 / 1440 * 100vw);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.legal-Section__title .zh {
    font-size: min(26px, 40 / 1440 * 100vw);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.5;
    margin-top: 10px;
}

.legal-Purpose__text p{
    font-size: min(18px, 40 / 1440 * 100vw);
    font-weight: 300;
}

.legal-Purpose__image{
    flex: 0 0 auto;
    text-align: center;
    width: min(530px, 530 / 1440 * 100vw);
}





/* se03 */
.price-Section__title {
    flex: 0 0 40%; /* 左側 4 成 */
    display: flex;
    flex-direction: column;
    gap: min(8px, 8 / 1440 * 100vw);
    text-align: end;
}

.price-Section__title .en {
    display: flex;
    color: #b4a195;
    font-family: var(--font-en);
    font-size: min(16px, 16 / 1440 * 100vw);
    font-weight: 500;
    text-transform: uppercase;
    /* margin-bottom: 10px; */
    justify-content: end;
}

.price-Section__title .zh {
    font-size: min(26px, 40 / 1440 * 100vw);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.5;
    /* margin-top: 10px; */
}


/* se04 */

.cont_box {
    display: flex; /* 讓 step 與內容左右排列 */
    align-items: flex-start; /* 對齊頂部 */
    margin-top: 50px;
    background-color: #f8f7f6;
    border-radius: 10px;
    padding: 20px 30px;
    gap: 20px; /* 左右間距 */
    font-size: 18px;
    position: relative;
}

.steP {
    flex: 0 0 120px; /* 固定寬度（可依實際調整） */
    background-color: #fff;
    color: #0d81c5;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
}

.content_box {
    flex: 1; /* 右側佔剩餘空間 */
    color: #0d81c5;
}

.content_box p {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
}

.steP_con {
    display: block;
    line-height: 1.8;
    color: #333;
}

.social {
  display: flex;
  gap: 5px;
}

.social img {
  width: 40px;
  height: auto;
}

/* FAQ */
#faq {
  /* max-width: 1000px; */
  margin-top: 75px;
  /* margin: auto; */
  padding: 10px 15px;
  text-align: center;
}

section.faq {
  padding-top: 2em;
  padding-bottom: 3em;
}

#faq ul {
  text-align: left;
}
.transition, p, ul li i:before, ul li i:after {
  transition: all 0.3s;
}

#faq .no-select, #faq h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

#faq h2 {
  color: #4a4a4a;
  font-size: 20px;
  line-height: 34px;
  text-align: left;
  padding: 15px 15px 0;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: .2s;
  font-weight: 500;
}

#faq ul li.active h2 {
  color: #07569e;
}

#faq p {
  color: rgb(105, 92, 92);
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  max-height: 250px;
  will-change: max-height;
  contain: layout;
  display: inline-block;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 50px 0 15px;
  transition: .3s opacity, .6s max-height;
  hyphens: auto;
  z-index: 2;
}

#faq ul li {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #f4fbff;
  box-shadow: 0 3px 10px -2px rgba(0,0,0,0.1);
  -webkit-tap-highlight-color: transparent;
}
#faq ul li + li {
  margin-top: 30px;
}
#faq ul li:last-of-type {
  padding-bottom: 0;
}
#faq ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 28px;
  right: 15px;
}
#faq ul li i:before, ul li i:after {
  content: "";
  position: absolute;
  background-color:#0d81c5;
  width: 3px;
  height: 9px;
}
#faq ul li i:before {
  transform: translate(-2px, 0) rotate(90deg);
}
#faq ul li i:after {
  transform: translate(2px, 0) rotate(0deg);
}

#faq ul li p {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  overflow: hidden;
}

#faq ul li.active p {
  max-height: 1000px; /* 視內容長度調整 */
  opacity: 1;
}

/* 箭頭旋轉效果 */
#faq ul li i:before {
  transform: translate(0, 0) rotate(90deg);
}

#faq ul li i:after {
  transform: translate(0, 0) rotate(0deg);
}

#faq ul li.active i:before {
  transform: translate(0, 0) rotate(90deg);
}

#faq ul li.active i:after {
  transform: translate(0, 0) rotate(90deg);
}

ul {
  padding: 0;
  list-style: none;
}

@media (max-width: 425px) {
#faq p{
  font-size: 14px;
}
}
@media (max-width: 425px) {
  #faq h2{
    font-size: 16px;
    margin-right: 10px;
  }
  }
/* FAQ end */

/* 服務項目 */
.secSVcon{
    margin-top: 70px;
}

.svbox{
    width: 1200px;
    margin:0 auto;
}

.bg_C{
    background-color: white;
    padding: 40px;
    margin-top: 60px;
}

/* .secModelhouse .svbox #main-title{
    font-size: 18px;
    margin-top: 75px;
    position: relative;
    border-bottom: 2px solid #E6E6E6;
    padding: 30px 20px 24px 0px;
    letter-spacing: 1px;
} */

/* .main{
    padding-bottom: 50px;
    background-color: #f3f3f3;
} */

.svtext_box h1{
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 700; 
    color: #1f1f1f;
}
       
    /* 基礎重置與容器 */
    .affair_article {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #1f1f1f;
    background: #ffffff;
    }
    .affair_article img{
        width: 100%;
        aspect-ratio: 1120 / 582;
        object-fit: cover;
    }   
    
    /* 平滑滾動 */
    html {
        scroll-behavior: smooth;
    }
    
    /* 目錄樣式 - 卡片式簡約風格 */
    .affair_article-toc {
        background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        padding: 0;
        border-radius: 8px;
        margin: 40px 0;
        border: 1px solid #e9ecef;
        overflow: hidden;
    }
    
    .affair_article-toc__header {
        color: #1f1f1f;
        font-size: 1.2em;
        font-weight: 600;
        margin: 0;
        padding: 20px 30px;
    }
    
    .affair_article-toc__list {
        list-style: none;
        margin: 0;
        padding-bottom: 25px;
    }
    
    .affair_article-toc__item {
        margin: 0;
    }
    
    .affair_article-toc__link {
        color: #1f1f1f;
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 8px 30px;
        /* transition: all 0.2s ease; */
        font-weight: 500;
        border-left: 3px solid transparent;
    }
    
    
    .affair_article-toc__link:hover {
        background: rgba(52, 152, 219, 0.08);
        border-left-color: #3498db;
        color: #3498db;
    }
    
    .affair_article-toc__link:hover::before {
        transform: scale(1.4);
        background: #2980b9;
    }

    /* 標題樣式 - 極簡設計 */
    .affair_article h1 {
        font-size: 2.2em;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 30px 0;
        padding-bottom: 20px;
        border-bottom: 3px solid #f0f0f0;
        line-height: 1.3;
    }
    
    .affair_article h2 {
        font-size: 1.6em;
        font-weight: 600;
        color: #1f1f1f;
        margin: 50px 0 20px 0;
        /* padding-left: 15px; */
        border-left: 4px solid #07569e;
        line-height: 1.4;
        background-color: rgb(222 241 253);
        padding: 15px;

        scroll-margin-top: 20px;
         contain: layout;
    }
    
    .affair_article h3 {
        font-size: 1.3em;
        font-weight: 600;
        color: #34495e;
        margin: 35px 0 15px 0;
        line-height: 1.4;
    }
        
    /* 引言區塊 */
    .sv_text {
        padding: 30px;
        border-radius: 8px;
        margin: 30px 0;
        font-size:18px;
        line-height: 1.9;
        color: #1f1f1f;
    }
    
    /* 段落樣式 */
    .affair_article p {
        margin: 0 0 20px 0;
        text-align: justify;
    }

    /* 清單樣式 */
    .element_list {
        background: #fafafa;
        padding: 25px 30px;
        border-radius: 8px;
        margin: 25px 0;
    }
    
    .element_item {
        margin: 20px 0;
        padding-left: 25px;
        position: relative;
    }
    
    
    .element_title {
        font-weight: 600;
        color: #07569e;
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    /* 價格表格 */
    .asia-table {
        width: 100%;
        margin: 30px 0;
        border-collapse: collapse;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .asia-table thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
    
    .asia-table th {
        background-color: #f1f1f1;
        border-bottom: 1px solid #fff;
        padding: 0px 18px;
        text-align: left;
        font-weight: 600;
        font-size: 1em;
    }
    
    .asia-table td {
        padding: 18px 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .asia-table tbody tr:hover {
        background: #f8f9ff;
    }
    
    .asia-table tbody tr:last-child td {
        border-bottom: none;
    }
    

    .info-box {
        background: #e3f2fd;
        border-left: 4px solid #2196f3;
        padding: 20px 25px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
    }
    
    /* 響應式設計 */
    @media screen and (max-width: 768px) {
        .affair_article {
            /* padding: 15px; */
            font-size: 16px;
        }
        
        .affair_article h1 {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        
        .affair_article h2 {
            font-size: 1.4em;
            margin: 35px 0 15px 0;
        }
        
        .affair_article h3 {
            font-size: 1.2em;
        }
        
        .sv_text {
            padding: 20px;
        }
        
        /* 目錄響應式 */
        .affair_article-toc {
            margin: 30px 0;
        }
        
        .affair_article-toc__header {
            font-size: 1.1em;
            padding: 18px 20px;
        }
        
        .affair_article-toc__list {
            padding: 20px 0;
        }
        
        .affair_article-toc__link {
            font-size: 0.95em;
            padding: 12px 20px;
        }
        
        .affair_article-toc__link::before {
            margin-right: 12px;
        }
        
        .affair_article-toc__sublist .affair_article-toc__link {
            padding: 10px 20px 10px 45px;
            font-size: 0.88em;
        }
        
        .asia-table {
            font-size: 0.9em;
        }
        
        .asia-table th,
        .asia-table td {
            padding: 12px 10px;
        }
        
        .element_list {
            padding: 20px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .affair_article {
            font-size: 15px;
        }
        
        .affair_article h1 {
            font-size: 1.5em;
        }
        
        .affair_article h2 {
            font-size: 1.3em;
            padding-left: 12px;
        }
        
        .asia-table {
            display: block;
            overflow-x: auto;
        }
        
    }

@media (max-width: 430px) {
  .secSVcon{
    margin-top: 0;
  }
  .bg_C{
    margin-top: 0;
    padding: 15px;
  }
  .svbox{
    width: unset;
  }
  .svtext_box h1{
    margin-top: 80px;
    line-height: initial;
  }
  }

  /* 聯絡我們 */

  .Footer-Contact {
    padding: min(90px, 140 / 1440 * 100vw) 0 min(0px, 120 / 1440 * 100vw);
    }

    .Footer-Contact__box {
    background: #f1f1f1;
    border-radius: min(10px, 10 / 1440 * 100vw);
    margin: 0 auto;
    padding: min(70px, 70 / 1440 * 100vw) min(70px, 70 / 1440 * 100vw) min(60px, 60 / 1440 * 100vw);
    text-align: center;
    width: min(1400px, 1240 / 1440 * 100vw);
    }

    .Footer-Contact__box p{
        font-size: 18px;
        line-height: 1.5;
    }

    .Footer-Contact__title {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: min(10px, 10 / 1440 * 100vw);
    line-height: 1;
    margin: 0 0 min(20px, 20 / 1440 * 100vw);
    text-align: center;
}
.Footer-Contact__title .en {
    color: #9a6a49;
    font-family: var(--font-en);
    font-size: min(60px, 60 / 1440 * 100vw);
    font-weight: 500;
}

.Footer-Contact__nav {
    display: flex;
    gap: min(50px, 50 / 1440 * 100vw);
    margin: min(40px, 40 / 1440 * 100vw) 0 0;
    }

.Footer-Contact__button {
    align-items: center;
    background: #f2987b;
    border-radius: min(8px, 8 / 1440 * 100vw);
    color: #fff;
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    gap: min(6px, 6 / 1440 * 100vw);
    justify-content: center;
    padding: min(30px, 30 / 1440 * 100vw);
    position: relative;
    text-align: center;
    width: 100%;
}

.Footer-Contact__button .ja {
    font-size:40px;
    font-weight: 700;
    letter-spacing: .05em;
    }



.Footer-Contact__button .en {
    font-family: var(--font-en);
    font-size: min(15px, 15 / 1440 * 100vw);
    font-weight: 500;
    letter-spacing: .05em;
} 

.Footer-Contact__button .icon {
    align-items: center;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    position: absolute;
    right: min(30px, 30 / 1440 * 100vw);
    top: 50%;
    transform: translateY(-50%);
    width: min(27px, 27 / 1440 * 100vw);
}

.Footer-Contact__button .icon svg {
    width: min(5px, 5 / 1440 * 100vw);
}

.Footer-Contact__tel {
    align-items: center;
    border: min(3px, 3 / 1440 * 100vw) solid #b4a195;
    border-radius: min(8px, 8 / 1440 * 100vw);
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    justify-content: center;
    padding: min(35px, 50 / 1440 * 100vw) min(56px, 56 / 1440 * 100vw);
    width: 100%;
}
.Footer-Contact__tel text{
    padding: 10px;
}

.Footer-Contact__tel .telnum {
    align-items: baseline;
    color: var(--color-main);
    display: flex;
    font-family: var(--font-en);
    font-size: min(30px, 30 / 1440 * 100vw);
    font-weight: 600;
    gap: min(10px, 10 / 1440 * 100vw);
}
.telnum a{
    color: #1f1f1f;
}

.Footer-Contact__tel .number {
    font-size: min(46px, 46 / 1440 * 100vw);
    font-weight: 600;
    letter-spacing: .07em;
}

/* @media (max-width: 1024px) {
    .legal-Purpose__text{
        display: flex;
    }
        .legal-Purpose__box{
        display: unset;
    }
        .legal-Purpose__image{
        width: 35%;
        margin: 0 20px;
    }
} */

@media (min-width: 768px) {
    .legal-Purpose__box{
        display: unset;
    }
    .legal-Purpose__image{
        width: 40%;
        margin: 0 20px;
    }
    .legal-Purpose__text{
        display: flex;
    }
    /* .legal-Purpose__image img{
        width: 242%;
    } */
}

@media (max-width: 426px) {
.abtit{
    margin: 5px 0;  
}
    .professional {
        flex-direction: column;
        gap: 5.3333vw;
        justify-content: flex-start;
    }
    .legal-Purpose__box{
    align-items: unset;
    display: unset;
    gap: unset;
    margin: unset;
    }
    .legal-Purpose__image img{
        width: 242%;
    }
    .professional-Section__title .en{
        font-size: 24px;
    }
    .professional-Section__title .zh{
        font-size: 34px;
    }
    .legal-Section__title .en{
        font-size: 20px;
    }
    .legal-Section__title .zh{
        font-size: 30px;
    }
    .legal-Purpose__text p{
        font-size: 16px;
        margin: 20px 0;
    }
    .price-Section__title .en{
    font-size: 20px;
    }
    .price-Section__title .zh{
        font-size: 30px;
    }

    .social{
        display: unset;
    }
}

/* 服務流程 */
@media (min-width: 768px) {
    .u-wider-inner {
        width: 100%;
        max-width:1400px;
        margin: 150px auto;
    }
}
.u-wider-inner {
    padding-left:20px;
    padding-right: 20px;
}
@media (min-width: 768px) {
    .home-practices__inner {
        padding-top: 150px;
        padding-bottom: 134px;
    }
}

/* =========================
   home-practices__list
========================= */
.home-practices__list {
    display: grid;
    gap: 15px 0;
}
/* .home-practices__list h3{
    color: #07569e;
} */

@media (min-width: 768px) {
    .home-practices__list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

/* =========================
   home-practices__list-item
========================= */
.home-practices__list-item {
    padding: 25px 20px 35px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .05);
    background-color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
    .home-practices__list-item {
        display: flex;
        flex-direction: column;
        padding: 50px 50px 60px;
        box-shadow: none;
        border: 1px solid #d4d8dd;
    }
}

/* =========================
   home-practices__list-head
========================= */
.home-practices__list-head {
    line-height: 1.4;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(40, 61, 87);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .home-practices__list-head {
        margin-bottom: 30px;
        padding-bottom: 30px;
        font-size: 22px;
    }
}

/* =========================
   home-practices__list-head-ico
========================= */
.home-practices__list-head-ico {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-width: 52px;
    width: 52px;
    margin-right: 16px;
    padding: 2px 5px 2px 0;
    border-right: 1px solid rgba(40, 61, 87, .2);
}

@media (min-width: 768px) {
    .home-practices__list-head-ico {
        justify-content: flex-start;
        min-width: 56px;
        width: 56px;
        padding: 0;
    }
}

/* icon size */
.home-practices__list-head-ico img {
    width: 30px;
}

@media (min-width: 768px) {
    .home-practices__list-head-ico img {
        width: 40px;
    }
}

/* =========================
   image general reset
========================= */
img, svg, video {
    block-size: auto;
    max-inline-size: 100%;
}

img, video, canvas, audio, iframe, embed, object {
    display: block;
}

/* =========================
   home-practices__list-txt
========================= */
.home-practices__list-txt {
    font-size: 14px;
}

@media (min-width: 768px) {
    .home-practices__list-txt {
    font-size: min(16px, 40 / 1440 * 100vw);
    font-weight: 300;
    }
}

/* =========================
   home-practices__list-area-list
========================= */
.home-practices__list-area-list {
    margin-top: 20px;
    padding: 20px 30px;
    background: url(../img/home/bg_practices_list01.png) no-repeat right bottom / cover;
    color: rgb(89, 101, 111);
}

@media (min-width: 768px) {
    .home-practices__list-area-list {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        flex-direction: column;
        min-height: 208px;
        margin-top: 25px;
    }
}

/* =========================
   home-practices__detail
========================= */
.home-practices__detail {
    color: rgb(89, 101, 111);
}

/* =========================
   c-simple-list01
========================= */
.c-simple-list01 {
    line-height: 1.4;
    font-weight: 500;
}

.c-simple-list01__item {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
}

.c-simple-list01__item + .c-simple-list01__item {
    margin-top: .4em;
}

.c-simple-list01__item::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(40, 61, 87);
}

/* variant */
.home-practices__detail-item:before {
    background-color: rgb(89, 101, 111);
}

