@charset "UTF-8";
#call .gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#call .gallery-list li {
    width: calc(50% - 24px);
    margin-bottom: 48px;
}
#call .gallery-list li .ttl {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
}
#call .gallery-list li .links {
    margin-top: 16px;
}
#call .gallery-list li .links li {
    width: 100%;
    margin-bottom: 10px;
}
#call .gallery-list li .links li a {
    padding: 16px;
    border: 2px solid var(--color1);
    display: block;
    text-align: center;
    background: var(--color1);
    color: #fff;
    transition: 0.4s all;
}
#call .gallery-list li .links li a:hover {
    background: #fff;
    color: var(--color1);
}
@media screen and (max-width: 768px) {
    #call .gallery-list li {
        width: 100%;
    }
}
#call_detail .container {
    display: flex;
    justify-content: space-between;
}
#call_detail .container .left {
    width: 40%;
}
#call_detail .container .left .thumbnail {
    margin-bottom: 20px;
}
#call_detail .container .left .ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 16px;
}
#call_detail .container .right {
    width: 55%;
}
#call_detail .container .right .main-txt p {
    line-height: 1.8;
    font-size: 1.6rem !important;
}
#call_detail .container .right .info-txt {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px dotted #ccc;
}
@media screen and (max-width: 768px) {
    #call_detail .container {
        flex-wrap: wrap;
    }
    #call_detail .container .left,
    #call_detail .container .right {
        width: 100%;
    }
    #call_detail .container .right .main-txt {
        margin-top: 24px;
    }
    #call_detail .container .right .main-txt p {
        font-size: 1.6rem !important;
    }
}