/* popup photo block open button */
.view_container {
    width: 92%;
    max-width: 1280px;
    margin: 8rem auto;
    display: grid;
}

.view_container div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: all 1s ease;
}
.view_container div {
    width: 100%;
    cursor: pointer;
}
.view_container div button {
    position: absolute;
    display: block;
    bottom: 10px;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    -background-color: var(--color-bg);
    background-color: #f3e9e1b0;
    text-align: center;
    font-size: .75rem;
    white-space: nowrap;
    padding: .26rem .3rem;
    border-radius: 0.05rem;
    border: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}
.view_container div:hover button {
    transform: translateX(-50%) translateY(-11%);
}
.view_container div button svg {
    width: 14px;
    height: 14px;
    fill: var(--color-font-basic);
    display: inline-block;
    position: relative;
    top: 1px;
}
.view_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.view_container>div:nth-child(1) {        grid-area: 1 / 1 / 3 / 2;    }
.view_container>div:nth-child(2) {        grid-area: 1 / 2 / 2 / 3;    }
.view_container>div:nth-child(3) {        grid-area: 1 / 3 / 2 / 4;    }
.view_container>div:nth-child(4) {        grid-area: 2 / 2 / 3 / 3;    }
.view_container>div:nth-child(5) {        grid-area: 2 / 3 / 3 / 4;    }
.view_container div {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 0;
    box-sizing: border-box;
    padding-bottom: 70%;
}
.view_container>div:nth-child(1) {        padding-bottom: calc(140% + 10px);    }
@media screen and (max-width: 767px) {
    .view_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .view_container>div:nth-child(1) {            grid-area: 1 / 1 / 2 / 3;        }
    .view_container>div:nth-child(2) {            grid-area: 2 / 1 / 3 / 2;        }
    .view_container>div:nth-child(3) {            grid-area: 2 / 2 / 3 / 3;        }
    .view_container>div:nth-child(4) {            grid-area: 3 / 1 / 4 / 2;        }
    .view_container>div:nth-child(5) {            grid-area: 3 / 2 / 4 / 3;        }
    .view_container div {
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 0;
        box-sizing: border-box;
        padding-bottom: calc(100% + 10px);        }
    .view_container>div:nth-child(1) {
        padding-bottom: calc(50% + 5px);
    }
}
/* //popup photo block open button */
/* popup photo block */
.photoBlock {
    position: fixed;
    top: 0;
    z-index: 1010;
    background-color: var(--color-bg-list);
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    display: block;
}
.image-container {display: flex;        flex-wrap: wrap;    }
.image-container img {width: 100%;        height: auto;    }
.hidden {display: none;    }
.active {        background-color: #ccc;    }
.photoBlock__bar {
    position: fixed;
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: var(--color-bg-list);
    height: 4rem;
}
.photoBlock__bar .filter-buttons {
    display: flex;
    gap: 0.6rem;
}
.photoBlock__bar .filter-buttons button {
    display: block;
    width: fit-content;
    background-color: #fff;
    text-align: center;
    font-size: .80rem;
    white-space: nowrap;
    padding: .36rem .4rem;
    border-radius: 0.05rem;
    border: 0;
    transition: all 0.5s ease;
}
.photoBlock__bar .filter-buttons button svg {
    width: 14px;
    height: 14px;
    fill: var(--color-font-basic);
    display: inline-block;
    position: relative;
    top: 1px;
}
.photoBlock__bar .filter-buttons button.active {
    background-color: var(--color-font-basic);
    color: #fff;
}
.photoBlock__bar .filter-buttons button.active svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    display: inline-block;
    position: relative;
    top: 1px;
}
.pam--outer button {
    width: 3rem;
    padding-right: 2rem;
    border: 0;
    cursor: pointer;
    background: none;
}
.pam {
    height: 4.0rem;
    width: 92%;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
}
.pam div {
    background-color: var(--color-font-basic);
    width: 1.8rem;
    height: 0.11rem;
    position: absolute;
    left: 94.8%;
    transition: all 1s ease;
}
.pam div:nth-child(1) {
    top: 54%;
    width: 1.8rem;
    height: 0.12rem;
    transform: sKewX(-0deg) translate(-50%, -50%) rotate(45deg);
}
.pam div:nth-child(2) {
    top: 54%;
    width: 1.9rem;
    height: 0.12rem;
    transform: sKewX(-0deg) translate(-50%, -50%) rotate(-45deg);
}
.pam--outer button:hover .pam div:nth-child(1) {
    transform: sKewX(-0deg) translate(-50%, -50%) rotate(225deg);
}
.pam--outer button:hover .pam div:nth-child(2) {
    transform: sKewX(-0deg) translate(-50%, -50%) rotate(135deg);
}
.image-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
    width: 92%;
    margin: 0 auto;
    max-width: 1280;
    padding-bottom: 4rem;
}
.image-container img {
    width: 49%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .image-container img {
        width: 100%;
        object-fit: cover;
    }
    .photoBlock__bar {
        height: fit-content;
        align-items: flex-start;
        position: sticky;
        top: 0;
    }
    .photoBlock__bar .filter-buttons {
        flex-wrap: wrap;
    }
    .photoBlock__bar {
        box-sizing: border-box;
        padding: 1rem;
    }
    .photoBlock__bar .filter-buttons {
        gap: 0.6rem;
    }
    .photoBlock__bar .filter-buttons button {
        height: 44px;
    }
    .pam--outer button {
        padding-right: 1rem;
    }
    .pam {
        height: 3rem;
    }
}
/* //popup photo block */


.ponda__container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    height:auto;
    padding:  10px 20px 100px 20px;
    box-sizing: border-box;
    background-color: #fbfbf4;
    overflow: visible;
    margin-bottom: 50px;
}
.ponda__container iframe {
    border: 0px #ffffff none;
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;overflow: visible;
}


.ponda__container .notice{ 
    display: none; 
    overflow: hidden;    
    position: absolute;
    background-color: #ca544b;
    width: 92%; box-sizing: border-box; padding-top: .5rem;
    height: 5.4rem;
    z-index: 99; border-radius: 0.5rem;
    left: 50%; transform: translateX(-50%) scale(1);
    margin: 0 auto 0.5rem auto ;
    animation: ani365fadeOut; 
    animation-delay: 2s;
    animation-duration: 1s; 
    animation-fill-mode : forwards !important ;
    animation-iteration-count: 1;
    animation-direction:normal;
    animation-timing-function:linear;
}
/*
@keyframes ani365fadeOut {
    100%{    height: 0rem; padding-top:0rem; opacity: 0;}
}
@media screen and (max-width: 767px) {
    .ponda__container .notice{display: block;  }
}
    

.ponda__container .notice>div:first-child{ display: block;
    margin: 0 auto;
    width: fit-content;
    border: 2px dotted #bebebe;
    padding: 0.2rem 1rem 0.2rem 1.5rem;
    border-radius: .8rem;
    color: #fff;}
.ponda__container .notice>div:first-child>span:first-child{font-size: 1.6rem; opacity:0.6;}
.ponda__container .notice>div:last-child{
    text-align: center; padding: .5rem 0 .5rem 0;
    display: flex;
    width:100%;
    flex-direction: column;
    margin: 0 auto;
}
.ponda__container .notice>div:last-child::before{
    content: "아래의 날짜 아이콘을 클릭하시면 한달 달력을 보실수 있습니다.";
    position: relative;
    font-size: 0.9rem; color: #e4e4e4;
    width: 100%;
    text-align: center;
}
*/
@media screen and (max-width: 767px) { .ponda__container iframe { height: 80%;}    }
@media screen and (min-width: 768px) { .ponda__container iframe { height: 130%;}    }









.box__pension__title {
    background-color: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 360px;
    height: 360px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center
}
.box__pension__title>div:nth-child(2) {
    color: #707070;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.box__pension__title>div:nth-child(3) {
    display: flex;
    gap: .2rem;
    flex-direction: row;
    justify-content: center    }
ul.thumbnail__txt--hashtag{ 
        display: flex; width: 84%;
        flex-wrap: wrap;
        justify-content: center; gap: .0rem .90rem; 
        flex-direction: row;}
ul.thumbnail__txt--hashtag li{display: flex;}
ul.thumbnail__txt--hashtag li::before{ content: ""; display: inline;}
@media screen and (max-width: 767px) {
    .box__pension__title { 
        top: 100%;
        transform: translate(-50%, -100%);
        background-color: rgb(52 15 15 / 40%);
        width: 100%;
        height: fit-content;
        padding: 1rem 0  1.4rem 0;       
    }
    h2{    color: #fff;
font-size: 1.2rem;
font-weight: 300;
text-align: center;
line-height: 1.2;
padding-bottom: 1rem;}
    .box__pension__title ul.thumbnail__txt--hashtag{  display: none;}
    .box__pension__title>div:nth-child(3){ display: none;}
}   








.swiper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: fit-content;
}
.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 30%;
    overflow: hidden;
}
.swiper-slide img {
    display: block;
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.swiper-pagination-bullet {
    transition: all .5s ease;
    margin: 0;
    border-radius: 0 !important;
    transform: skew(-30deg);
    background-color: #fff;
    opacity: .45;
}
.swiper-pagination-bullet-active {
    background-color: var(--color-font-basic);
    width: 2rem;
    opacity: 1;
    transform: skew(-30deg) translateY(-.3rem);
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.1rem;
}
@media screen and (max-width: 767px) {
    .swiper-slide { padding-bottom: 110%; }
    .swiper-slide img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .swiper-slide { padding-bottom: 50%; }
    .swiper-slide img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }
}/*    .swiper-wrapper{	transition-timing-function: linear;} 속도*/



















.ps365_h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;    }
.ps365_h1 img { max-width: 100%;}
.ps365_h1-summary-2block {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1024px;
    margin: 0 auto;
    justify-content: center;
    gap: 1.5rem;
    font-size: .85rem;
    margin-bottom: 2.5rem;    }
@media screen and (min-width: 824px) {
    .ps365_h1-summary-2block {
        display: flex;
        flex-direction: row;
        width: 96%;
        max-width: 1024px;
        margin: 0 auto;
        justify-content: center;
        box-sizing: border-box;
        gap: 2.5rem;
        font-size: .85rem;
        margin-bottom: 3.5rem;
    }
}
#ps365_h1-info_area-a,
#ps365_h1-info_area-b,
#ps365_h1-info_area-c,
#ps365_h1-info_area-d {
    position: absolute;
    top: -12rem;
    display: block;
    width: 50px;
    height: 40px;
    background-color: red;
    z-index: 999;    }
.thumbnail__txt--table {
    display: flex;
    flex-direction: row;
    margin: 0rem auto 0 auto;
    width: 100%;
    position: relative;
    justify-content: space-around    }
.thumbnail__txt--table>li { width: 33%; height: 100%; }
.thumbnail__txt--table>li:nth-child(1){ width: 33%;}
.thumbnail__txt--table>li:nth-child(2){ width: 33%;}
.thumbnail__txt--table>li:nth-child(3){ width: 33%;}
.thumbnail__txt--table>li>ul>li:nth-child(1) {
    font-size: 0.75rem;
    text-align: center;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #6c6c6c36;
    font-weight: 600;    }
.thumbnail__txt--table>li>ul>li:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    height: 100%;
    padding-top: 0.5rem;    }

@media screen and (min-width: 768px) {

    
    .thumbnail__txt--table>li:nth-child(1){ width: 130px; }
    .thumbnail__txt--table>li:nth-child(2){ width: 130px; }
    .thumbnail__txt--table>li:nth-child(3){ width: 100px; }

    .thumbnail__txt--table>li>ul>li:nth-child(1) {
        font-size: .85rem; padding-bottom: 0.4rem;  }
    .thumbnail__txt--table>li>ul>li:nth-child(2) {

        font-size: .7rem;   }
    

}


    @media screen and (max-width: 767px) {

    }  
    @media screen and (min-width: 768px) and (max-width: 1023px) {
    
    }
    @media screen and (min-width: 1024px) and (max-width: 1919px) {
        
    }  
    @media screen and (min-width: 1920px) {
    
        
    }













    .pension_profile {
        width: 92%;
        max-width: 1280px; -max-width: 740px;
        margin: 0 auto;
        position: relative;
    }

    .pension_profile>div:nth-child(1) {
        width: 100%;
        height: 0;
        position: relative;
        padding-bottom: 40%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .pension_profile>div:nth-child(1) img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .pension_profile>div:nth-child(2) {
        background-color: #fff;
        min-height: 100px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        align-content: center;
        flex-wrap: nowrap;
        gap: 1.8rem;
        padding: 4.0rem 0;
    }

    .pension_profile .bt__365 {
        z-index: 1;
    }

    .pension_profile>div:nth-child(2) h2 {
        padding-bottom: 0; color: var( --color-bg-footer);
    }
    @media screen and (max-width: 767px) {
        .pension_profile>div:nth-child(2) h2 {
            font-size: 1.6rem;
        }

        .pension_profile>div:nth-child(2) ul:nth-child(2) li {
            font-size: 1.0rem;
        }

        .pension_profile>div:nth-child(2) button {
            font-size: .85rem;
        }

        .pension_profile>div:nth-child(1) {
            padding-bottom: 86%;
        }
    }

   
    























    
    .ps365_h1-info {
        background-color: #fff;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 3rem 2rem 4rem 2rem;
        box-sizing: border-box;
        width: 92%;
        margin: 0 auto;
        max-width: 1280px;
    }
    .ps365_h1-info ul {
        margin-bottom: 0.85rem;
        overflow: hidden;
        width: 100%;
    }
    .ps365_h1-info .title {
        position: relative;
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 2.5;
    }
    .ps365_h1-info .title_l {
        position: relative;
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 2.5;
        margin-bottom: 0.85rem;
    }
    .ps365_h1-info li {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
        position: relative;
        display: block;
        padding-left: .7rem;
        box-sizing: border-box;
        word-break: keep-all; word-break: keep-all;
    }
    .ps365_h1-info li::before {
        content: "●";
        position: absolute;
        left: 0.1rem;
        top: 0.3rem;
        font-size: 0.35rem;
    }
    

    .ps365_h1-info li ul li::before {
        content: "-" !important;
        position: absolute;
        left: 0.0rem;
        top: -0.2rem;
        font-size: 1rem;    
    } 
    .ps365_h1-info li ul{ margin-top: 0.5rem;}
    .ps365_h1-info li ul li{ margin-bottom: 0.45rem;}


    .ps365_h1-info table {
        width: 98%;
        margin: 0 auto;
        border: 1px solid #ddd;
    }
    .ps365_h1-info table * { font-size: 0.85rem;    }
    .ps365_h1-info table td { line-height: 2; }
    .ps365_h1-info table td:first-child {
        box-sizing: border-box;
        padding-left: 1rem;
        width: 33%;
    }
    .ps365_h1-info table td:last-child {
        box-sizing: border-box;
        padding-right: .5rem;
    }
    .ps365_h1-info table td:nth-child(2),
    .ps365_h1-info table td:nth-child(3) {text-align: center; }

    .ps365_h1-info table td { border-bottom: 1px solid #ddd; }
    .ps365_h1-info table tr:last-child td {
        border: 0;
        text-align: center;
    }
    @media screen and (min-width: 768px) and (max-width: 1023px) {
        .ps365_h1-info ul {max-width: 300px;}
        .ps365_h1-info {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly}
    }
    @media screen and (min-width: 1024px) {
        .ps365_h1-info ul { max-width: 450px; }
        .ps365_h1-info { display: flex; flex-direction: row; justify-content: space-evenly;}
    }











    
    .ps365_h1-info-top {
        z-index: 2;
        background-color: #fff;
        background-color: var(--color-bg-footer);  background-color: #240407;
        display: block;
        position: sticky;
        bottom: -1px;
        width: 92%;
        max-width: 1280px; margin: 0 auto;
        transition: all 0.5s ease;
        background-color: #963129;        
    }
    .ps365_h1-info-top.is-pinned{    width: 100%;      max-width: 100%;   background-color: #240407;  }
    .ps365_h1-info-top ul {
        display: flex;
        width: 100%;
        max-width: 1024px;
        flex-direction: row;
        justify-content:  space-between; justify-content: space-around;
        margin: 0 auto;
        align-items: center;
        flex-wrap: nowrap;
        height: 4rem;
        color: var(--color-bg-footer);
        color: var(--color-font-footer);
        font-weight: 500;    }
    .ps365_h1-info-top ul a {
        color: var(--color-font-footer);
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;    padding: 0 .5rem;
    }
    .ps365_h1-info-top ul a:hover{ text-decoration: underline;}
    .ps365_h1-info-top ul li:first-child{ font-weight: 800; padding-left: .6rem;}
    .ps365_h1-info-top ul li{ font-size: .80rem;}
    @media screen and (max-width: 767px) {
        .ps365_h1-info-top ul li:last-child a{ 
            color: #e0cb93 ;
        }
    }  
  




















