@charset "UTF-8";
/* CSS Document */

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
/*  CTAデザイン */
.cta-container img {
    width: 100%;
    max-width: 100%!important;
    height: auto!important;
}
.cta-container {
    background-color: #f7f7f7;/* CTA背景色 */
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    margin-top: 20px;
}

.cta-left {
    position: relative;
    width: calc(50% - 20px);
    text-align: center;
    margin-right: 20px;
}

.cta-right {
    color: #fff;
    font-size: 16px;
    width: 50%;
}

.cta-description {
    color: #000000;/* 説明文文字色 */
    padding: 10px;
    text-align: left;
}

@media only screen and (max-width: 1023px) {
    .cta-container {
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-container {
        display: block;
        padding: 20px;
    }
    .cta-right, .cta-left {
        width: 100%;
    }
}


/* CTAボタン */

.cta-btn {
    display: inline-block;
    padding: 1em 1em;
    text-decoration: none!important;
    background-color: #ff0000;/*ボタン色*/
    color: #fff!important;
    border-bottom: solid 4px #a92d1f;/* 影の色 */
    border-radius: 8px;
}
.cta-btn:hover {
    background-color: #faafaf;/* マウスホバー時 */
}
.cta-btn:active {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    border-bottom: none;
}
