@charset "utf-8";
:root{
    --primary:#1353a4;
    --yellow:#f7f146;
    --text-color: #121212;
    --midgray: #414141;
    --gray: #888888;
    --white: #ffffff;
}
body {
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 1.6px;  
}
img {
    max-width: 100%;
    max-height: 100%;
}

/*
 main-visual 
*/
.main-visual-area {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    background-color: transparent;
}
.main-visual-wrapper {
    position: relative;
    height: 100%;
}
.main-visual-text {
    position: absolute;
    left: 7%;
    bottom: 120px;
    color: var(--white);
    text-shadow: 0px 0px 10px #000000;
    font-size: 30px;
    line-height: 1.4;
    font-weight: bold;
    margin-top: -10px;
}
.main-visual-text span {
    display: inline-block;
    margin-top: 10px;
}
@media screen and (min-width:766px){
    .main-visual-area {
        height: 100vh;
    } 
    .main-visual-text {
        bottom: 50px;
        font-size: 48px;
    }
}

/* news */
.news-wrapper {
    padding: 80px 20px 40px 20px;
}
.news-list {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.news-item {
    width: 100%;
    margin-bottom: 40px;
}
.news-list-img {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}
.news-list-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.news-list-img a img {
    width: 100%;
    transition: transform .5s ease;
}
.news-list-img:hover a img {
    transform: scale(1.1);
}
.news-list-text {
    width: 100;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
.news-list-date {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    transition: opacity .4s;
}
.news-list-date:hover {
    opacity: 0.6;
}
.news-list-title {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    transition: opacity .4s;
}
.news-list-title:hover {
    opacity: 0.6;
}
@media screen and (min-width:766px){
    .news-wrapper {
        padding: 100px 20px 50px 20px;
    }
    .news-list {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        margin-bottom: 50px;
    }
    .news-item {
        width: calc((100% - 40px ) /3 );
        margin-bottom: 0;
    }
}
/* message */
.message-wrapper {
    padding: 80px 20px 40px 20px;
}
.message-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}
.message-author-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 50px;
}
.message-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.message-description {
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
.message-description-heading {
    font-size: 24px;
    font-weight: bold;
}
.message-description span {
    display: block;
    margin-top: 30px;
    line-height: 1.8;
    font-size: 16px;
    font-weight: bold; 
}
@media screen and (min-width:766px){
    .message-wrapper {
        padding: 100px 20px 50px 20px;
    }
    .message-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 25px;
    }
    .message-author-img {
        width: 300px;
        height: 300px;
        margin-bottom: 0px;
    }
    .message-description {
        flex: 1 1 0;
        margin-top: 0;
    }.message-description-heading {
        font-size: 28px;
    }
    .message-description span {
        font-size: 18px;
        margin-top: 10px;
    }
}
/* book */
.book-wrapper {
    padding: 80px 20px 40px 20px;
}
.book-info-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}
.book-info-img {
    width: 45%;
    height: auto;
    overflow: hidden;
    
}
.book-info-img img {
    width: 100%;
    transition: transform .4s;
}
.book-info-img img:hover {
    transform: scale(1.1);
}

.book-info-text {
    display: flex;
    flex-direction: column;
    margin-top: -20px;
}
.book-text-heading {
    font-size: 24px;
    font-weight: bold;
}
.book-info-text span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}
.book-btn {
    margin-top: 45px;
}
@media screen and (min-width:766px){
    .book-wrapper {
        padding: 100px 30px 50px 30px;
    }
    .book-info-content {
        flex-direction: row;
        gap:100px;
    }
    .book-info-img {
        width: 80%;
    }
    .book-info-text span {
        margin-top: 50px;
    }
    .book-btn {
        margin-top: 60px;
    }
}
/* flow */
.flow-wrapper {
    padding: 80px 20px 40px 20px;
}
.flow-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94%;
    margin: 0 auto;
    margin-bottom: 50px;
}
.flow-list {
    width: 100%;
    padding-left: 0;
    border-bottom: solid 1px #414141;
}
.flow-item {
    list-style-type: none;
    display: flex;
    padding: 20px 0;
    border-top: solid 1px #414141;
}
.flow-header {
    line-height: 1;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    text-align: center;
    width: 20%;
    position: relative;
    margin-top: 0;
}
.flow-header::before {
    content: 'step';
    font-size: 12px;
    display: block;
    margin-bottom: 3px;
    letter-spacing: 1px;
}
.flow-header::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 64px);
    background-color: #858585;
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    margin: auto;
}
.flow-content {
    width: 80%;
    margin-top: 0.8em;
}
.flow-content-title {
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
    margin-bottom: 10px;
}
.flow-content-description {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
@media screen and (min-width:900px){
    .flow-wrapper {
        padding: 100px 20px 50px 20px;
    }
}
/* content */
.content-wrapper {
    padding: 80px 20px 40px 20px;
}
.content-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.content-item {
    width: 80%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
.content-item span {
    display: inline-block;
}
.br1 {
    display: none;
}
.br2 {
    display: block;
}
.content-item a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.content-item1::before {
    content: "";
    padding-top: 100%;
    border-radius: 50%;
    display: block;
    background-image: url(../images/sato2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% center;
    filter: brightness(40%);
    transition: transform .4s; 
}
.content-item1:hover::before {
    transform: scale(1.1);
}
.content-item2::before {
    content: "";
    padding-top: 100%;
    border-radius: 50%;
    display: block;
    background-image: url(../images/news-img2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(40%);
    transition: transform .4s; 

}
.content-item2:hover::before {
    transform: scale(1.1);
}
.content-item3::before {
    content: "";
    padding-top: 100%;
    border-radius: 50%;
    display: block;
    background-image: url(../images/contact.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    filter: brightness(40%);
    transition: transform .4s; 
}
.content-item3:hover::before {
    transform: scale(1.1);
}
.content-item1 span,
.content-item2 span,
.content-item3 span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    font-weight: bold;
    color: var(--white);
}

@media screen and (min-width:766px){
    .content-wrapper {
        padding: 100px 20px 100px 20px;
    }
    .content-list {
        flex-direction: row;
        justify-content: space-between;
    }
    .content-item {
        width: 28%;
        min-width: 240px;
    }
    .br1 {
        display: block;
    }
    .br2 {
        display: block;
    }
}

/* sub-page */

/* first view */
.sub-top {
    width: 100%;
    height: 60vh;
    position: relative;
}
.sub-top::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary) 11%, transparent 100%);
    background: -webkit-linear-gradient(45deg, var(--primary) 11%, transparent 100%);

}
.page-title {
    position: absolute;
    top: 80%;
    left: 10%;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    z-index: 20;
}
.sub-content {
    background-color: rgba(255,255,255,0.9);
}
@media screen and (min-width:766px){
    .page-title {
        top: 70%;
        left: 10%;
        font-size: 48px;
    }
}
/* about */
.about-wrapper {
    padding: 60px 20px 50px 20px;
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
    position: static;
}
.about-content-img {
    width: 100%;
    margin-bottom: 5px;
}
.about-content-img img {
    width: 100%;
}
.about-content-content {
    width: 98%;
    margin: 0 auto;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 2px 2px 10px var(--midgray);
    position: static;
}
.about-content-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.about-content-text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
}
@media screen and (min-width:900px){
    .about-wrapper {
        padding: 100px 20px 30px 20px;
        max-width: 1240px;
    }
    .about-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .about-content1 {
        margin-bottom: 370px;
    }
    .about-content2 {
        margin-bottom: 270px;
    }
    .about-content3 {
        margin-bottom: 450px;
    }
    .about-content4 {
        margin-bottom: 450px;
    }
    .about-content5 {
        margin-bottom: 400px;
    }
    .about-content6 {
        margin-bottom: 450px;
    }
    .about-content-img {
        width: 55%;
    }
    .about-content-content {
        width: 60%;
        padding: 20px 30px;
        position: absolute;
    }
    .about-content .about-content-content {
        right: 0;
        top: 95%;
        /* transform: translate(0,-50%); */
    }
    .about-content-lr .about-content-content {
        right: auto;
        left: 0;
        top: 95%;
        /* transform: translate(0,-50%); */
    }
    .about-content-title {
        font-size: 24px;
        font-weight: bold;
        color: var(--text-color);
    }
    .about-content-text {
        font-size: 16px;
    }
}
/* blog */
/* blog共通 */
.blog-sec-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
@media screen and (min-width:766px){
    .blog-sec-title {
        font-size: 24px;
        text-align: center;
    }
}
/* blog-topic */
.blog-topic-wrapper {
    padding: 60px 20px 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}
.blog-topic-item {
    width: 100%;
    margin-top: 50px;
}
.blog-topic-img {
    width: 100%;
    overflow: hidden;
}
.blog-topic-img img {
    width: 100%;
    transition: all .3s;
}
.blog-topic-img img:hover {
    width: 100%;
    transform: scale(1.1);
}
.blog-topic-text {
    margin-top: 5px;
    transition: all .3s;
}
.blog-topic-text:hover {
    text-shadow: 0px 0px 15px var(--yellow);
}
.blog-topic-date {
    display: block;
    font-size: 16px;
    font-weight: bold;
}
.blog-topic-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
}
@media screen and (min-width:766px){
    .blog-topic-wrapper {
        padding: 100px 20px 30px 20px;
        flex-direction:row;
        justify-content: center;
        gap: 20px;
        margin-top: 0;
    }
    .blog-topic-item {
        width: calc( ( 100% - 40px) / 3 );
        margin-top: 0px;
    }
    .blog-topic-text {
        margin-top: 15px;
        font-size: 20px;
        font-weight: bold;
    }
    .blog-topic-date {
        font-size: 18px;
    }
}
/* 2column に分ける*/
.blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}
.blog-content-wrapper {
    padding: 30px 20px 50px 20px;
}
.blog-main-content {
    width: 100%;
}
.blog-side-content {
    width: 100%;
}
@media screen and (min-width:766px){
    .blog-content {
     flex-direction: row;
     align-items: start;
     gap: 40px;
    }
    .blog-content-wrapper {
        padding: 80px 20px 30px 20px;
    }
    .blog-main-content {
        width: 65%;
    }
    .blog-aside-content {
        width: 35%;
    }
}
/* blog-main */
.blog-main-articles {
    margin-bottom: 80px;
}
.blog-main-item {
    width: 100%;
    margin-top: 50px;
}
.blog-main-item1 {
    margin-top: 30px;
}
.blog-main-item-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    transition: all .3s;
}
.blog-main-item-title:hover {
    text-shadow: 0px 0px 15px var(--yellow);
}
.blog-main-item-date {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.blog-main-item-img {
    width: 100%;
    margin-bottom: 5px;
    overflow: hidden;
}
.blog-main-item-img img {
    width: 100%;
    transition: all .3s;
}
.blog-main-item-img img:hover {
    width: 100%;
    transform: scale(1.1);
}
.blog-main-item-text {
    font-weight: bold;
    margin-bottom: 15px;
}
@media screen and (min-width:766px){
    .blog-main-articles {
        margin-bottom: 0px;
    }
    .blog-main-item {
        margin-top: 80px;
    }
    .blog-main-item1 {
        margin-top: 20px;
    }
}
/* blog-aside */
.blog-aside-item {
    width: 100%;
    margin-top: 50px;
}
.blog-aside-item1 {
    margin-top: 30px;
}
.blog-aside-item-img {
    width: 100%;
    overflow: hidden;
}
.blog-aside-item-img img {
    width: 100%;
    transition: all .3s;
}
.blog-aside-item-img img:hover {
    transform: scale(1.1);
}
.blog-aside-item-text {
    font-size: 16px;
    font-weight: bold;
    transition: all .3s;
}
.blog-aside-item-text:hover {
    text-shadow: 0px 0px 15px var(--yellow);
}
.blog-aside-item-text  a {
    display: block;
}
/* blog-daily */
.blog-article-wrapper {
    padding: 60px 20px 50px 20px;
}
.blog-article-header {
    font-size: 20px;
    font-weight: bold;
}
.blog-article-date {
    font-size: 16px;
    font-weight: bold;
}
.blog-article-content {
    margin-top: 50px;
    margin-bottom: 50px;
}
.blog-article-text {
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
}
.blog-article-img {
    width: 100%;
    margin-top: 50px;
}
.blog-article-img img {
    width: 100%;
}
@media screen and (min-width:766px){
    .blog-article-wrapper {
        padding: 100px 20px 30px 20px;
    }
    .blog-article-header {
        font-size: 24px;
    }
    .blog-article-date {
        font-size: 18px;
    }
    .blog-article-content {
        margin-top: 100px;
        margin-bottom: 100px;

    }
    .blog-article-text {
        margin-top: 80px;
    }
    .blog-article-img {
        width: 70%;
        margin: 0 auto;
        max-width: 600px;
        margin-top: 100px;

    }
}
/* achivement */
.achivement-wrapper {
    padding: 60px 20px 50px 20px;
}
.achivement-sec-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.appearance-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
}
.appearance-item-list {
    margin-bottom: 30px;
}
.appearance-item-content {
    margin-bottom: 10px;
}
.appearance-item-term {
    font-size: 16px;
    font-weight: bold;
}
.appearance-item-description {
    padding-left: 15px;
    font-size: 16px;
    font-weight: bold;  
}
.appearance-item-media {
    width: 100%;
    aspect-ratio: 16/9;
}
@media screen and (min-width:766px){
    .achivement-wrapper {
        padding: 100px 40px 30px 40px;
    }
    .achivement-sec-title {
        font-size: 30px;
    }
    .appearance-list {
        margin-top: 50px;
    }
    .appearance-item-term {
        font-size: 20px;
    }
    .appearance-item-description {
        font-size: 20px;
    }
    .appearance-item-media {
        width: 70%;
        margin: 0 auto;
        aspect-ratio: 16/9;
    }
}
/* book */
.book-wrapper {
    padding: 60px 20px 50px 20px;
}
.book-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
.book-item {
    width: 100%;
}
.book-item-img {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.book-item-img img {
    width: 100%;
}
.book-item-text {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 20px;
}
@media screen and (min-width:766px){
    .book-wrapper {
        padding: 100px 40px 30px 40px;
    }
    .book-list {
        flex-direction: row;
        gap: 20px;
        margin-top: 50px;
    }
    .book-item {
        width: 45%;
    }
    .book-item-text {
        font-size: 20px;
    }
}
/* fire */
.fire-course-supplement {
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 30px;
}
.fire-wrapper {
    padding: 80px 20px 40px 20px;
}
.fire-course-list {
    display: flex;
    flex-direction: row;
    gap: 50px;
    overflow-x: scroll;
    align-items: stretch;
    position: relative;
}
.fire-course-item {
    width: 320px;
    flex: 1 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border: solid 3px var(--primary);
    border-radius: 10px;
    align-items: stretch;
    position: relative;
}
.fire-course-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: solid 100px transparent;
    border-left: solid 40px var(--primary);
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}
.fire-course-item:nth-child(5):after {
    display: none;
}
.fire-img {
    width: calc(100% + 40px);
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.fire-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.fire-course-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    min-height: 60px;
}
.fire-course-title-heading {
    display: block;
    font-size: 24px;
    text-transform: uppercase;
}
.fire-course-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.fire-list-detail {
    margin-bottom: 30px;
    font-size: 14px;
}
.fire-detail-item {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #CCCCCC;
}
.fire-detail-item-description {
    min-height: 120px;
}
.fire-detail-term {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    flex-shrink: 0;
}
.fire-detail-description {
    font-size: 14px;
    font-weight: bold;
    padding-left: 10px;
}
.fire-detail-description span {
    display: block;
}
.scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-color: rgba(47,107,180,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll-hint-content {
    text-align: center;
}
.scroll-hint-icon {
    display: block;
    color: var(--white);
    font-size: 70px;
}
.scroll-hint-text {
    display: block;
    color: var(--white);
    font-size: 12px;
}
@media screen and (min-width:766px){
    .fire-wrapper {
        padding: 100px 20px 50px 20px;
    }
    .fire-course-list {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 100px;
    }
    .fire-course-item {
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .fire-course-item::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border: solid 200px transparent;
        border-left: solid 80px var(--primary);
        top: 50%;
        right: -295px;
        transform: translateY(-50%);
    }
    .fire-course-title {
        flex: 1 auto;
    }
    .fire-detail-item {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 10px 0;
        border-bottom: 1px solid #CCCCCC;
    }
    .fire-detail-term {
        font-size: 14px;
    }
    .fire-detail-description {
        font-size: 14px;
    }
}

/* fire-btn */
.fire-btn {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
    background: var(--primary);
    text-align: center;
    font-size: 16px;
    color: var(--white);
    transition: all .4s;

}
.fire-btn:hover {
    box-shadow: 0px 0px 5px 5px var(--yellow);
    text-shadow: 0px 0px 15px var(--yellow);
}
@media screen and (min-width:766px){
    .fire-btn {
        width: 40%;
    }
}
/* seminar */
.seminar-wrapper {
    padding: 80px 20px 40px 20px;
}
.seminar-list {
    width: 100%;
}
.seminar-item {
    width: 100%;
    margin-bottom:30px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.seminar-img{
    width: 100%;
    margin-bottom: 5px;
}
.seminar-img img {
    width: 100%;
}
.seminar-text {
    width: 98%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 1px 1px 10px var(--gray);
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seminar-title {
    font-size: 18px;
    font-weight: bold;
}
.seminar-title-heading {
    display: block;
    font-size: 24px;
    text-transform: uppercase;
}
.seminar-description {
    font-size: 14px;
    font-weight: bold;
}
@media screen and (min-width:766px){
    .seminar-wrapper {
        padding: 100px 20px 50px 20px;
    }
    .seminar-item {
        width: 100%;
        margin-bottom: 100px;
        display: flex;
        flex-direction: row;
        position: relative;
    }
    .seminar-item-rl {
        justify-content: right;
    }
    .seminar-img{
        width: 45%;
    }
    .seminar-img img {
        width: 100%;
    }
    .seminar-text {
        width: 55%;
        background-color: #fff;
        box-shadow: 1px 1px 10px var(--gray);
        border-radius: 10px;
        position: absolute;
    }
    .seminar-item .seminar-text {
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }
    .seminar-item-rl .seminar-text {
        right: auto;
        left: 10px;
    }
}
/* calender */
.calender-wrapper {
    padding: 80px 20px 40px 20px;
}
.calender-area {
    position:relative;
    width:100%;
    height:0;
    padding-top: 75%;
}
.calender-area iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.calender-btn {
    display: block;
    width: 80%;
    padding: 10px 0;
    border-radius: 5px;
    background: var(--primary);
    text-align: center;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 20px;
    transition: all .4s;
}
.calender-btn:hover {
    box-shadow: 0px 0px 5px 5px var(--yellow);
    text-shadow: 0px 0px 15px var(--yellow);
}
@media screen and (min-width:766px){
    .seminar-wrapper {
        padding: 100px 20px 50px 20px;
    }
    .calender-btn {
        width: 80%;
        max-width: 400px;
        font-size: 16px;
        margin-top: 50px;
        transition: all .4s;
    }
    .calender-btn:hover {
        box-shadow: 0px 0px 5px 5px var(--yellow);
        text-shadow: 0px 0px 15px var(--yellow);
    }
}

/* cta-area */
.cta-area {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-content {
    width: 96%;
    margin: 0 auto;
    padding: 20px 10px;
    box-shadow: 1px 1px 10px var(--gray);
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.cta-message {
    font-size: 12px;
    font-weight: bold;    
}
.cta-message-br {
    display: block;
}
.line-icon {
    display: block;
    width: 20%;
    max-width: 100px;
    margin: 0 auto;
}
.line-heading span{
    font-size: 14px;
    font-weight: bold;
}
@media screen and (min-width:767px){
    .cta-content {
        max-width: 600px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    .cta-message {
        font-size: 16px;
    }
    .cta-message-br {
        display: none;
    }
    .cta-btn {
        max-width: 500px;
    }
    .line-heading span{
        font-size: 16px;
    }
}