@charset "UTF-8";

.common-title-box {

    .en-title {
        font-size: 4.6rem;

        @media screen and (max-width: 767px) {
          font-size: 2.6rem;
        }
    }
}

.sec-iesp {

    .content-box {
        .top-box{
            margin-bottom: 7rem;

            @media screen and (max-width: 767px) {
              margin-bottom: 5rem;
            }

            .top-desc{
                font-size: 1.6rem;
                margin-bottom: 4.5rem;

                @media screen and (max-width: 767px) {
                  margin-bottom: 3rem;
                }
            
            }
            .top-img-box{
                display: flex;
                gap: 2rem;

                & img {
                    width: calc((100% - 4rem) / 3);
                }
            
            }
        }

        .events-box{
            display: flex;
            flex-direction: column;
            gap: 7rem;

            .event-box{

                &:not(:last-child) {
                margin-bottom: 4rem;
                }

                .title{
                    font-size: 2rem;
                    font-weight: 500;
                    color: #fff;
                    background-color: var(--primary-color);
                    margin-bottom: 2rem;
                    padding: 1.5rem 3rem;
                    border-radius: 30px;
            
                }
                .event-list{
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    grid-column-gap: 5.5rem;
                    grid-row-gap: 2rem;

                    @media screen and (max-width: 767px) {
                      grid-template-columns: 1fr;
                    }
            
                    .event-itemm{
                    
                        .event-link{
                            width: 100%;
                            height: 7.5rem;
                            padding: 2.6rem;
                            padding-left: 4.6rem;
                            border-radius: 60px;

                            @media screen and (max-width: 767px) {
                              height: 6rem;
                              border-radius: 30px;
                              padding: 2rem;
                            }
                        
                            .btn-text{
                            
                            }
                            .btn-icon{
                            
                            }
                        }
                    }
                }
            
            }
        }
        .current-events-box{

        }
        .current-event01{

        }

        .past-events-box {

            .past-event-title {
                margin-bottom: 3rem;

            }
        }

    }
}

.event-link {
    @media screen and (max-width: 767px) {
        line-height: 1.4 !important;
    }
}

.detail-table {

    & th, & td {
        @media screen and (max-width: 767px) {
          display: block !important;
          width: 100%;
        }
    }

    & th {
        @media screen and (max-width: 767px) {
            padding: 1rem 2rem;
        }
    }
}