@charset "UTF-8";

/* ------------------------------------------------
                    TOP
--------------------------------------------------- */

/*----------- 共通 -----------*/
.ttl-txt {
    margin-bottom: 30px;
    font-size: 30px;
}
.middle-txt {
    margin-bottom: 50px;
    font-size: 18px;
}
@media (max-width: 768px) {
    .ttl-txt {
        margin-bottom: 4vw;
        font-size: 5vw;
    }
    .middle-txt {
        margin-bottom: 3vw;
        font-size: 3.6vw;
    }

}




/*----------- メインヴィジュアル -----------*/
.main-visual {
    width: 100%;
    height: 100vh;
    position: relative;
}
.main-visual .mv-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top/mv_pc.jpg") center top no-repeat;
    background-size: cover;
}
.main-visual .main-txt {
    display: inline-block;
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 3;
}

/*スクロールダウン*/
.main-visual .scroll-down {
    padding: 10px 0 140px;
    line-height: 1;
    position: absolute;
    right: 20px;
    bottom: 50px;
    z-index: 1;
}
.main-visual .scroll-down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 130px;
    background: #666666;
    animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
@media (max-width: 768px) {
    .main-visual .mv-img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: url("../img/top/mv_sp.png") center center no-repeat;
        background-size: cover;
    }
    .main-visual .main-txt {
        display: inline-block;
        position: absolute;
        top: 20%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 4vw;
        line-height: 2.8;
    }

    /*スクロールダウン*/
    .main-visual .scroll-down {
        padding: 2vw 0 20vw;
        line-height: 1;
        position: absolute;
        right: 4vw;
        bottom: 14vw;
        z-index: 1;
    }
    .main-visual .scroll-down::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 1px;
        height: 18vw;
        background: #666666;
        animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
    }
}


/*MV下お知らせ*/
.main-visual .mv-info {
    width: 45%;
    max-width: 625px;
    padding: 20px 44px 30px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(17,17,17,0.16);
    position: absolute;
    right: 0;
    z-index: 2;
}
.main-visual .mv-info ul.info-list {
    width: 100%;
}
.main-visual .mv-info ul.info-list .box-wrap {
    margin-bottom: 20px;
    align-items: center;
}
.main-visual .mv-info ul.info-list .ttl-txt {
    margin-right: 30px;
    margin-bottom: 0;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
}
.main-visual .mv-info ul.info-list .info-date {
    padding-right: 12px;
    margin-right: 15px;
    display: inline-block;
    font-size: 14px;
    border-right: 1px solid #CCCCCC;
    line-height: 1;
}
.main-visual .mv-info ul.info-list .info-cat {
    font-size: 14px;
    line-height: 1;
}
.main-visual .mv-info ul.info-list .info-ttl {
    width: 100%;
    min-height: 3.5em;
    text-align: justify;
    font-size: 14px;
    letter-spacing: 0.2em;
    position: relative;
}
.main-visual .mv-info ul.info-list .info-ttl.is-ellipsis {
    width: 100%;
    height: 3.5em;
    overflow: hidden;
    position: relative;
}
.main-visual .mv-info ul.info-list .info-ttl.is-ellipsis::after {
    content: "…";
    padding: 0 0.5em 0 0.8em;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
}

@media (max-width: 768px) {
    .main-visual .mv-info {
        width: 85%;
        max-width: 625px;
        padding: 4vw 6vw 6vw;
        background: #fff;
        box-shadow: 0 1px 3px rgba(17,17,17,0.16);
        position: absolute;
        /*bottom: -12vw;*/
        bottom: -20vw;
        right: 0;
        z-index: 2;
    }
    .main-visual .mv-info ul.info-list {
        width: 100%;
    }
    .main-visual .mv-info ul.info-list .box-wrap {
        margin-bottom: 4vw;
        align-items: center;
    }
    .main-visual .mv-info ul.info-list .ttl-txt {
        margin-right: 5vw;
        margin-bottom: 0;
        display: inline-block;
        font-size: 2.8vw;
        line-height: 1;
    }
    .main-visual .mv-info ul.info-list .info-date {
        padding-right: 2.2vw;
        margin-right: 3vw;
        display: inline-block;
        font-size: 2.8vw;
        border-right: 1px solid #CCCCCC;
        line-height: 1;
    }
    .main-visual .mv-info ul.info-list .info-cat {
        font-size: 2.8vw;
        line-height: 1;
    }
    .main-visual .mv-info ul.info-list .info-ttl {
        width: 100%;
        min-height: 5.5em;
        /*
        min-height: 3.5em;
        min-height: 7.5em;*/
        text-align: justify;
        font-size: 2.8vw;
        letter-spacing: 0.2em;
        position: relative;
    }
    .main-visual .mv-info ul.info-list .info-ttl.is-ellipsis {
        width: 100%;
        height: 5.5em;
        /*
        height: 3.5em;
        height: 7.5em;*/
        overflow: hidden;
        position: relative;
    }
    .main-visual .mv-info ul.info-list .info-ttl.is-ellipsis::after {
        content: "…";
        padding: 0 0.5em 0 0.8em;
        position: absolute;
        bottom: 0;
        right: 0;
        background: #fff;
    }
}


/*スライダー Dots */
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-dots {
    width: 100%;
    height: 2px;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    position: absolute;
    top: 0;
}
.slick-dots li {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 0 0 4px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 24px;
    height: 1px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #CCCCCC;
    opacity: 1;
}
.slick-dots li button:before {
    content: none;
}
.slick-dots li.slick-active button{
    background: #666666;
}
.slick-dots li.slick-active button:before {
    content: none;
}
@media (max-width: 768px) {
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    .slick-dots {
        width: 100%;
        height: 2px;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-end;
        list-style: none;
        position: absolute;
        top: 1vw;
        right: -2vw;
    }
    .slick-dots li {
        position: relative;
        display: block;
        width: 5vw;
        height: 2px;
        margin: 0 0 0 1vw;
        padding: 0;
        cursor: pointer;
    }
    .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 5vw;
        height: 2px;
        padding: 0;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: #CCCCCC;
        opacity: 1;
    }

}




/*----------- トップメインコンテンツ -----------*/
.top-read-cont {
    width: 100%;
    /*padding: 175px 0 0;*/
    padding: 120px 0 0;
}
.top-read-cont p {
    display: inline-block;
    line-height: 3;
    letter-spacing: 0.2em;
}

.top-read-cont .box-wrap {
    width: 100%;
}

.top-read-cont .top-cont-01 {
    margin-bottom: 90px;
    justify-content: center;
}
.top-read-cont .top-cont-01 .box-left {
    width: 30%;
    padding: 0 5%;
}
.top-read-cont .top-cont-01 .box-left p { margin: 0 auto;}
.top-read-cont .top-cont-01 .box-right {
    width: 55%;
    max-width: 590px;
}

.top-read-cont .top-cont-02 {
    margin-bottom: 90px;
    justify-content: center;
}
.top-read-cont .top-cont-02 .box-left {
    width: 40%;
    padding: 0 5%;
}
.top-read-cont .top-cont-02 .box-left p { margin: 0 auto;}
.top-read-cont .top-cont-02 .box-right {
    width: 55%;
    max-width: 780px;
}

.top-read-cont .top-cont-03 {
    margin-bottom: 90px;
    justify-content: center;
}
.top-read-cont .top-cont-03 .box-left {
    width: 45%;
    padding: 0 8% 0 0;
    text-align: right;
}
.top-read-cont .top-cont-03 .box-left p { margin: 0 auto;}
.top-read-cont .top-cont-03 .box-right {
    width: 55%;
    max-width: 590px;
}

.top-read-cont .top-cont-04 {
    margin-bottom: 90px;
    justify-content: center;
}
.top-read-cont .top-cont-04 .box-left {
    width: 35%;
    padding: 0 0 0 8%;
}
.top-read-cont .top-cont-04 .box-left p { margin: 0 auto 0 0;}
.top-read-cont .top-cont-04 .box-right {
    width: 55%;
    max-width: 580px;
    padding: 0 0 0 20%;
}

.top-read-cont .top-cont-05 {
    margin-bottom: 90px;
    justify-content: center;
}
.top-read-cont .top-cont-05 .box-left {
    width: 36%;
    margin-left: auto;
    padding: 0 5% 0 0;
    text-align: right;
}
.top-read-cont .top-cont-05 .box-left p { margin: 0 0 0 auto;}
.top-read-cont .top-cont-05 .box-right {
    width: 64%;
}

.top-read-cont .top-cont-06 {
    margin-bottom: 90px;
    justify-content: center;
}
.top-read-cont .top-cont-06 .box-left {
    width: 35%;
    padding: 0 0 0 8%;
}
.top-read-cont .top-cont-06 .box-left p { margin: 0 auto 0 0;}
.top-read-cont .top-cont-06 .box-right {
    width: 55%;
    max-width: 590px;
}

.top-read-cont .top-cont-07 {
    justify-content: center;
}
.top-read-cont .top-cont-07 .box-left {
    width: 36%;
    padding: 0 5%;
    text-align: right;
}
.top-read-cont .top-cont-07 .box-left p { margin: 0 0 0 auto;}
.top-read-cont .top-cont-07 .box-right {
    width: 64%;
    max-width: 716px;
}
@media (max-width: 768px) {
    .top-read-cont {
        /*padding: 25vw 0 0;*/
        padding: 35vw 0 0;
    }
    .top-read-cont  p {
        line-height: 3;
    }

    .top-read-cont .top-cont-01 {
        width: 100%;
        margin: 0 auto 20vw;
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .top-read-cont .top-cont-01 .box-left {
        width: 90%;
        padding: 0;
        text-align: center;
    }
    .top-read-cont .top-cont-01 .box-left p { margin: 0 auto;}
    .top-read-cont .top-cont-01 .box-right {
        width: 80%;
        max-width: initial;
        margin-bottom: 8vw;
    }

    .top-read-cont .top-cont-02 {
        width: 100%;
        margin: 0 auto 20vw;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .top-read-cont .top-cont-02 .box-left {
        width: 96%;
        margin-left: auto;
        padding: 0;
        text-align: center;
    }
    .top-read-cont .top-cont-02 .box-left p { margin: 0 auto;}
    .top-read-cont .top-cont-02 .box-right {
        width: 72%;
        max-width: initial;
        margin: 0 8% 8vw 15%;
    }

    .top-read-cont .top-cont-03 {
        width: 100%;
        margin: 0 auto 20vw;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .top-read-cont .top-cont-03 .box-left {
        width: 80%;
        margin-left: auto;
        padding: 0;
        text-align: center;
    }
    .top-read-cont .top-cont-03 .box-left p { margin: 0 auto;}
    .top-read-cont .top-cont-03 .box-right {
        width: 85%;
        max-width: initial;
        margin-bottom: 8vw;
        margin-left: auto;
    }

    .top-read-cont .top-cont-04 {
        width: 100%;
        margin: 0 auto 20vw;
        justify-content: center;
        flex-direction: row;
    }
    .top-read-cont .top-cont-04 .box-left {
        width: 46%;
        padding: 0 0 0 5%;
        text-align: center;
    }
    .top-read-cont .top-cont-04 .box-left p { margin: 0 auto;}
    .top-read-cont .top-cont-04 .box-right {
        width: 54%;
        max-width: initial;
        padding: 0 10% 0 5%;
    }

    .top-read-cont .top-cont-05 {
        width: 100%;
        margin: 0 auto 20vw;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .top-read-cont .top-cont-05 .box-left {
        width: 80%;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }
    .top-read-cont .top-cont-05 .box-left p { margin: 0 auto;}
    .top-read-cont .top-cont-05 .box-right {
        width: 100%;
        max-width: initial;
        margin-bottom: 8vw;
    }



    .top-read-cont .top-cont-06 {
        width: 100%;
        margin: 0 auto 5vw;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .top-read-cont .top-cont-06 .box-left {
        width: 92%;
        margin-right: auto;
        padding: 0;
        text-align: right;
    }
    .top-read-cont .top-cont-06 .box-left p { margin: 0 0 0 auto;}
    .top-read-cont .top-cont-06 .box-right {
        width: 80%;
        max-width: initial;
        margin: 0 auto 8vw;
    }


    .top-read-cont .top-cont-07 {
        width: 100%;
        margin: 0 auto 0;
        justify-content: center;
        flex-direction: column;
    }
    .top-read-cont .top-cont-07 .box-left {
        width: 90%;
        margin-left: auto;
        padding: 0;
        text-align: left;
    }
    .top-read-cont .top-cont-07 .box-right {
        width: 100%;
        max-width: initial;
        margin: 6vw auto 0;
    }

}




/*----------- わたしたちについて -----------*/
.top-about .box-wrap {
    margin: 136px auto 125px;
    justify-content: center;
}
.top-about .box-left {
    width: 40%;
    max-width: 360px;
    margin: 0 3%;
    padding-top: 20px;
}
.top-about .box-right {
    width: 50%;
    margin: 0 0 0 5%;
    line-height: 3;
}
@media (max-width: 768px) {
    .top-about .box-wrap {
        margin: 18vw auto 12vw;
        display: block;
    }
    .top-about .box-left {
        width: 50%;
        max-width: 360px;
        margin: 0;
        padding-top: 0;
    }
    .top-about .box-right {
        width: 100%;
        margin: 5vw auto 0;
        line-height: 2.5;
    }
}




/*----------- 手紙処について -----------*/
.top-tegamitokoro .box-wrap {
    margin: 0 auto 125px;
    align-items: center;
}
.top-tegamitokoro .box-left {
    width: 60%;
    max-width: 850px;
}
.top-tegamitokoro .box-right {
    width: 40%;
    padding: 0 10% 0 8%;
}
.top-tegamitokoro .box-right .ttl-txt {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.2em;
}

@media (max-width: 768px) {
    .top-tegamitokoro .box-wrap {
        margin: 0 auto 18vw;
        display: block;
    }
    .top-tegamitokoro .box-left {
        width: 100%;
        max-width: initial;
        margin: 0 auto 8vw;
    }
    .top-tegamitokoro .box-right {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    .top-tegamitokoro .box-right .ttl-txt {
        margin-bottom: 4vw;
        font-size: 5vw;
        line-height: 1;
        letter-spacing: 0.2em;
    }

}




/*----------- 手紙寺郵便 -----------*/
.top-yuubin .box-wrap {
    width: 100%;
    margin: 136px auto 125px;
    justify-content: center;
    overflow: hidden;
}
.top-yuubin .box-left {
    width: 37%;
    max-width: 360px;
    margin-left: auto;
}
.top-yuubin .box-right {
    width: 55%;
    margin-left: 8%;
    overflow: hidden;
}
.top-yuubin .box-left .ttl-txt {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.2em;
}

.top-yuubin .box-right .yuubin-slider {
    width: 110%;
}
.top-yuubin .slide {
    padding: 10px 40px 0 0;
}
.top-yuubin .slide a {
    display: block;
    position: relative;
}
.top-yuubin .slide a .slide-ttl {
    padding: 40px 14px 10px;
    display: inline-block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 25px;
    line-height: 1;
}
.top-yuubin .slide a .slide-ttl::before {
    content: "";
    width: 1px;
    height: 40px;
    display: block;
    background: #666666;
    position: absolute;
    top: -10px;
    left: 20px;
}

@media (max-width: 768px) {
    .top-yuubin .box-wrap {
        margin: 0 auto 18vw;
        flex-direction: column-reverse;
    }
    .top-yuubin .box-left {
        width: 90%;
        max-width: initial;
        margin: 0 auto;
    }
    .top-yuubin .box-right {
        width: 95%;
        margin: 0 0 10vw auto;
        overflow: hidden;
    }
    .top-yuubin .box-left .ttl-txt {
        margin-bottom: 4vw;
        font-size: 5vw;
        line-height: 1;
        letter-spacing: 0.2em;
    }

    .top-yuubin .box-right .yuubin-slider {
        width: 150%;
    }
    .top-yuubin .slide {
        padding: 0 5vw 0 0;
    }
    .top-yuubin .slide a {
        display: block;
        position: relative;
    }
    .top-yuubin .slide a .slide-ttl {
        padding: 8vw 1vw 2vw;
        display: inline-block;
        background: #fff;
        position: absolute;
        top: 0;
        left: 4vw;
        line-height: 1;
    }
    .top-yuubin .slide a .slide-ttl::before {
        content: "";
        width: 1px;
        height: 7vw;
        display: block;
        background: #666666;
        position: absolute;
        top: 0;
        left: 2.6vw;
    }

}




/*----------- 喫茶手紙寺分室 -----------*/
.top-bunshitsu {
    width: 100%;
    padding: 106px 0 88px;
    background: #F7F7F7;
}
.top-bunshitsu .box-wrap {
    margin: 0 auto 55px;
    align-items: center;
}
.top-bunshitsu .box-left {
    width: 60%;
}
.top-bunshitsu .box-right {
    width: 40%;
    padding: 0 5%;
}
.top-bunshitsu .box-right .ttl-txt {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.2em;
}


.top-bunshitsu ul.note-list {
    display: flex;
    justify-content: space-between;
}
.top-bunshitsu ul.note-list li {
    width: 22%;
}
.top-bunshitsu ul.note-list li a {
    display: block;
}
.top-bunshitsu ul.note-list li .note-date {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1;
}
.top-bunshitsu ul.note-list li .note-ttl {
    margin-top: 16px;
    font-size: 14px;
}

.top-bunshitsu ul.note-list li .note-ttl.is-ellipsis {
    width: 100%;
    height: 3.5em;
    overflow: hidden;
    position: relative;
}
.top-bunshitsu ul.note-list li .note-ttl.is-ellipsis::after {
    content: "…";
    padding: 0 0.5em 0 0.8em;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #F7F7F7;
}

@media (max-width: 768px) {
    .top-bunshitsu {
        width: 100%;
        padding: 0 0 18vw;
        background: #F7F7F7;
    }
    .top-bunshitsu .cont-in {
        width: 100%;
    }
    .top-bunshitsu .box-wrap {
        margin: 0 auto 12vw;
        align-items: center;
        flex-direction: column;
    }
    .top-bunshitsu .box-left {
        width: 100%;
    }
    .top-bunshitsu .box-right {
        width: 90%;
        margin: 12vw auto 0;
        padding: 0;
    }

    .top-bunshitsu .box-right .ttl-txt {
        margin-bottom: 4vw;
        font-size: 5vw;
        line-height: 1;
        letter-spacing: 0.2em;
    }

    .top-bunshitsu ul.note-list {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .top-bunshitsu ul.note-list li {
        width: 48%;
        margin-bottom: 8vw;
    }
    .top-bunshitsu ul.note-list li a {
        display: block;
    }
    .top-bunshitsu ul.note-list li .note-date {
        margin-bottom: 1vw;
        font-size: 3.0vw;
        line-height: 1;
    }
    .top-bunshitsu ul.note-list li .note-ttl {
        margin-top: 2vw;
        font-size: 3.0vw;
    }
    .top-bunshitsu ul.note-list li .note-ttl.is-ellipsis {
        width: 100%;
        height: 3.5em;
        overflow: hidden;
        position: relative;
    }
    .top-bunshitsu ul.note-list li .note-ttl.is-ellipsis::after {
        content: "…";
        padding: 0 0.5em 0 0.8em;
        position: absolute;
        bottom: 0;
        right: 0;
        background: #F7F7F7;
    }
    .top-bunshitsu p.tar {
        width: 90%;
        margin: -8vw auto 0;
    }
}




/*----------- お知らせ -----------*/
.top-infomation {
    padding: 100px 0 120px;
}
.top-infomation h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.2em;
}
.top-infomation ul.info-list {
    padding-left: 60px;
    border-left: 1px solid #CCCCCC;
}
.top-infomation ul.info-list li {
    margin-bottom: 40px;
}
.top-infomation ul.info-list li:last-child { margin-bottom: 0;}

.top-infomation ul.info-list li a {
    display: flex;
    justify-content: flex-start;
}
.top-infomation ul.info-list li .info-date {
    width: 120px;
    font-size: 14px;
}
.top-infomation ul.info-list li .info-cat {
    width: 120px;
    color: #707070;
    font-size: 14px;
}
.top-infomation ul.info-list li .info-ttl {
    width: calc(100% - 240px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
}
@media (max-width: 768px) {
    .top-infomation {
        padding: 18vw 0;
    }
    .top-infomation h2 {
        margin-bottom: 6vw;
        font-size: 6vw;
        font-weight: 300;
        letter-spacing: 0.2em;
    }
    .top-infomation ul.info-list {
        padding-left: 8vw;
        border-left: 1px solid #CCCCCC;
    }
    .top-infomation ul.info-list li {
        margin-bottom: 8vw;
    }
    .top-infomation ul.info-list li:last-child { margin-bottom: 0;}

    .top-infomation ul.info-list li a {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .top-infomation ul.info-list li .info-date {
        width: 20vw;
    }
    .top-infomation ul.info-list li .info-cat {
        width: auto;
        color: #707070;
    }
    .top-infomation ul.info-list li .info-ttl {
        width: 100%;
        margin-top: 2vw;
        overflow: hidden;
        white-space: normal;
        text-overflow: inherit;
    }
    .top-infomation ul.info-list li .info-ttl.is-ellipsis {
        width: 100%;
        height: 3.5em;
        overflow: hidden;
        position: relative;
    }
    .top-infomation ul.info-list li .info-ttl.is-ellipsis::after {
        content: "…";
        padding: 0 0.5em 0 0.8em;
        position: absolute;
        bottom: 0;
        right: 0;
        background: #fff;
    }
    .top-infomation p.tar {
        margin: 4vw auto 0;
    }

}


