@charset "utf-8";
/* =========================================================================================================================================== */
/* トップページデザイン　                                                                                                                             */
/* =========================================================================================================================================== */
/* ------------------------------------------------------------- */
/* キービジュアル　                                                  */
/* ------------------------------------------------------------- */
@keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.20); /* 拡大率 */
    }
}
.add-animation {
    animation: zoomUp 10s linear 0s normal both;
  }
@media all {
    #page-top #keyvisual .slider-img {
        display: block;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    #page-top #keyvisual img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 1023px) {
    #page-top #keyvisual img {
        min-height: 810px;
    }
}
@media (max-width: 767px) {
    /*
    #page-top #keyvisual img {
        height: 422px;
        min-height: calc(100vh - 216px);
    }
    */
}


/* ------------------------------------------------------------- */
/* ニュース                                                        */
/* ------------------------------------------------------------- */
@media all {
    #page-top #news {
        position: fixed;
        bottom: 44px;
        width: 100%;
        background: var(--gradient1);
        padding-top: 30px;
        padding-bottom: 7px;
    }
    #page-top .news-inner {
        width: var(--width-100);
        max-width: var(--content-width-6);
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        height: 59px;
    }
    

    #page-top #news .title {
        width: 95px;
        border-right: solid 1px var(--color-white);
        color: var(--color-white);
        padding-top: 14px;
        height: 100%;
    }
    #page-top #news .title .en {
        font-size: 20px;
        font-weight: var(--font-weight-bold);
        line-height: 1;
        padding-bottom: 5px;
    }
    #page-top #news .title .jp {
        font-size: 12px;
        font-weight: var(--font-weight-bold);
        line-height: 1;
    }
    

    #page-top #news .content {
        width: calc(100% - 95px);
        padding-left: 25px;
        display: flex;
        align-items: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    #page-top #news .content ul {
        width: 100%;
    }
    #page-top #news .content ul li {
        display: flex;
        line-height: 14px;
        color: var(--color-white);
        padding-bottom: 6px;
    }
    #page-top #news .content ul li:last-child {
        padding-bottom: 0;
    }
    #page-top #news .content ul li .date {
        font-size: 12px;
        width: 85px;
        font-weight: var(--font-weight-bold);
    }
    #page-top #news .content ul li .name {
        font-size: 14px;
        width: calc(100% - 85px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
@media (max-width: 767px) {
    #page-top #news {
        position: initial;
        padding-top: 30px;
    }
    #page-top .news-inner {
        display: block;
        height: auto;
    }
    
    #page-top #news .title {
        width: 90px;
        margin: 0 auto;
        padding-top: 0;
        border-right: navajowhite;
        border-bottom: solid 1px;
        margin-bottom: 19px;
        text-align: center;
    }
    #page-top #news .title .en {
        font-size: 18px;
        padding-bottom: 4px;
    }
    #page-top #news .title .jp {
        font-size: 10px;
        padding-bottom: 17px;
    }
    
    #page-top #news .content {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0;
        padding-bottom: 15px;
    }
    #page-top #news .content ul li {
        line-height: 22px;
        padding: 0;
    }
    #page-top #news .content ul li .date {
        width: 74px;
        font-size: 10px;
    }
    #page-top #news .content ul li .name {
        width: calc(100% - 74px);
        font-size: 12px;
    }
}