@charset "utf-8";
/* CSS Document */

/*==================================
ページトップへのボタン
====================================*/

.topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00c112;
    width: 50px;
    height: 50px;
    z-index: 100;
    cursor: pointer;
    border-radius: 50%;
}

.topBtn:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transition: .5s;
}

.topBtn:hover::before {
    top: 12px;
}

@media screen and (max-width:767px) {

    .topBtn {
        width: 45px;
        height: 45px;
    }

    .topBtn::before {
        top: 16px;
    }

}

/*==================================
ホバーの共通化
====================================*/

.cmn_hover {
    transition: 0.5s;
}

.cmn_hover:hover {
    opacity: 0.6;
    text-decoration: none;
}

/*==================================
共通のpadding設定
====================================*/

.sub_pdg {
    padding: 100px 0;
}

@media screen and (max-width:767px) {

    .sub_pdg {
        padding: 60px 0;
    }

}

/*====================
一覧ページネーション
====================*/

.pagenation {
    display: flex;
    justify-content: center;
    margin: 60px auto 0;
}

.pagenation li {
    margin: 0 5px;
}

.pagenation li span,
.pagenation li a {
    padding: 10px;
    display: block;
    background-color: #fff;
    border: 1px solid;
    line-height: 1.5;
}

.pagenation li span,
.pagenation li:hover a {
    color: #fff;
}

.pagenation li span,
.pagenation li a:hover {
    background-color: #434343;
}

.post_none {
    margin: 0 auto;
    font-size: 2rem;
}

.top_post_none {
    font-size: 1.4rem;
    color: #fff;
}

@media screen and (max-width:767px) {}

/*========================================
詳細ページネーションの設定
==========================================*/

.paginated-link {
    display: flex;
    justify-content: center;
    color: inherit;
    margin-top: 40px;
    line-height: 1;
}

.paginated-link a {
    line-height: 1;
}


.back-link {
    position: relative;
    width: 100px;
    text-align: center;
    border-left: 1px solid;
    border-right: 1px solid;
}

.prev-link,
.next-link {
    width: 40%;
}

.prev-link {
    margin-right: 20px;
    text-align: right;
}

.next-link {
    margin-left: 20px;
}

@media screen and (max-width:767px) {

    .paginated-link {
        font-size: 1.2rem;
    }

}

/*==================================
パンくずリスト設定
====================================*/

.breadcrumbs .bread_boxs {
    justify-content: flex-start;
}

.breadcrumbs li {
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.breadcrumbs .bread_name {
    flex: 1;
}

.breadcrumbs li:not(:last-child)::before {
    content: ' ';
    display: block;
    margin: auto;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
}

.breadcrumbs li,
.breadcrumbs a {
    font-size: 1.2rem;
}

.breadcrumbs a {
    text-decoration: underline;
}


@media screen and (min-width: 768px) {
    .breadcrumbs {
        padding: 7px 0;
    }

    .breadcrumbs li:not(:last-child) {
        padding: 0 30px 0 0;
    }

    .breadcrumbs li:not(:last-child)::before {
        width: 8px;
        height: 8px;
        right: 13px;
    }
}

@media screen and (max-width:767px) {

    .breadcrumbs {
        padding: 4px 0;
    }

    body:not(#top) .breadcrumbs .bread_boxs {
        flex-direction: row;
        padding: 4px 0;
    }

    .breadcrumbs li:not(:last-child) {
        padding: 0 22px 0 0;
    }

    .breadcrumbs li:not(:last-child)::before {
        width: 7px;
        height: 7px;
        right: 10px;
    }

    .breadcrumbs a {
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

}

/*==================================
テキスト中央寄席の設定
====================================*/

.cen_txt {
    text-align: center;
}

/*==================================
ここから追加
====================================*/

/*tel_num*/

.tel_num {
    display: inline-block;
    font-size: 3.5rem;
    letter-spacing: 0.02em;
    padding-left: 45px;
    font-weight: bold;
    line-height: 1.2;
    font-family: 'yasasisa', 'Noto Sans JP', sans-serif;
    background: url(../images/common/tel_num_icon.png) no-repeat left center;
}

@media screen and (max-width:767px) {

    .tel_num {
        font-size: 2.8rem;
        background-size: 30px;
    }

}

/*cmn_ttl*/

.cmn_ttl {
    text-align: center;
    font-size: 4.0rem;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-bottom: 45px;
    font-family: 'yasasisa', 'Noto Sans JP', sans-serif;
}

.cmn_ttl_en {
    display: block;
    font-size: 2.0rem;
    color: #ffa800;
    letter-spacing: 0.06em;
}

.cmn_ttl_fz30 {
    font-size: 3.0rem;
}

@media screen and (max-width:767px) {

    .cmn_ttl {
        font-size: 3.0rem;
        margin-bottom: 40px;
    }

    .cmn_ttl span {
        font-size: 1.6rem;
    }

    .cmn_ttl_fz30 {
        font-size: 2.4rem;
    }

}

/*cmn_pdg*/

.cmn_pdg {
    padding: 100px 0;
}

@media screen and (max-width:767px) {

    .cmn_pdg {
        padding: 60px 0;
    }

}

/*hover_img*/

.hover_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.hover_img:hover img {
    transform: scale(1.2);
}

/*cmn_works*/

.cmn_works li {
    width: 310px;
}

.cmn_works li:not(:nth-child(3n)) {
    margin-right: 75px;
}

.cmn_works li:nth-last-child(n+4) {
    margin-bottom: 50px;
}

.cmn_works_img {
    border: 5px solid #06b922;
    height: 310px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.cmn_works_img_in {
    position: relative;
    border: 5px solid #fff;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
}

.cmn_works_ttl {
    font-size: 2.0rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid;
}

.cmn_works_txt{
    margin-top: 20px;
    font-size: 2.0rem;
    line-height: 1.6;
}

/*ここからモーダル用*/
.js-modal__bg {
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.js-modal__main {
    width: 1080px;
    min-height: 60vh;
    max-height: 80vh;
    padding: 50px 20px 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    position: absolute;
    overflow-y: auto;
    border: 3px solid #06b922;
}

.js-modal__btn {
    cursor: pointer
}

.cmn_works_modal_ttl{
    font-size: 2.6rem;
    border-bottom: 2px solid;
    margin-bottom: 30px;
    line-height: 1.5;
    padding-bottom: 10px;
}

.cmn_works_modal_img{
    margin-bottom: 40px;
    overflow: hidden;
    text-align: center;
}

.cmn_works_modal_img img{
    max-width: 100%;
    height: auto;
}

.cmn_works_modal_txt{
    padding-bottom: 50px;
}

.js-modal__btn--close {
    border-radius: 6px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 101;
    line-height: 1;
    cursor: pointer;
    padding: 5px 10px;
    background: #ffa800;
    color: #fff;
}

@media screen and (max-width:767px) {

    .top_works_list {
        flex-direction: column;
        align-items: center;
    }

    .cmn_works li {
        width: 270px;
    }

    .cmn_works_img {
        height: 270px;
        margin-bottom: 20px;
    }

    .cmn_works_img_in {
        border-width: 3px;
    }

    .cmn_works li:not(:nth-child(3n)) {
        margin-right: 0;
    }

    .cmn_works li:nth-last-child(n+4) {
        margin-bottom: 0;
    }

    .cmn_works li:not(:last-child) {
        margin-bottom: 50px;
    }

    .cmn_works_ttl {
        font-size: 1.8rem;
    }

    .js-modal__main{
        width: calc(100% - 25px);
    }

    .cmn_works_modal_ttl{
        font-size: 2.1rem;
    }

    .cmn_works_modal_img{
        margin-bottom: 30px;
    }

}

/*cmn_btn*/

.cmn_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: #ffa800;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto;
    border: 2px solid #ffa800;
    transition: .5s;
    width: 250px;
    height: 50px;
}

.cmn_btn:hover {
    background: #fff;
    color: #ffa800;
}

@media screen and (max-width:767px) {

    .cmn_btn {
        width: 230px;
    }

}

/*cmn_news*/

.cmn_news li {
    position: relative;
    line-height: 1;
    border-bottom: 1px dashed #c6c6c6;
}

.cmn_news li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 5px;
    width: 10px;
    height: 50px;
    background: #00c112;
}

.cmn_news a {
    display: block;
    padding: 20px;
    transition: .5s;
}

.cmn_news a:hover {
    transform: translate(5px, -5px);
}

.news_post_time {
    display: block;
    font-size: 1.5rem;
    color: #b5e9a7;
    margin-bottom: 10px;
}

.news_post_ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width:767px) {


    .cmn_news a {
        padding: 15px 10px 15px 15px;
    }

    .cmn_news li::before {
        width: 5px;
    }

}

/*normal_ttl*/

.normal_ttl {
    font-size: 4.0rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.06em;
    margin-bottom: 45px;
    font-family: 'yasasisa', 'Noto Sans JP', sans-serif;
}

@media screen and (max-width:767px) {

    .normal_ttl {
        font-size: 2.7rem;
    }

}
