@charset "UTF-8";

.message-content-box{
    width: 95rem;
    max-width: 95rem;
    margin: 0 auto;
    padding-bottom: 14rem;

    @media screen and (max-width: 767px) {
      width: 100%;
      max-width: 100%;
      padding-bottom: 7rem;
    }

    .text-box {
      display: flex;
      flex-direction: column;
      gap: 6rem;

      @media screen and (max-width: 767px) {
        gap: 4rem;
      }

      .msg-top-box{
        display: flex;
        gap: 5rem;

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 2rem
        }

        .left-col{
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;

          @media screen and (max-width: 767px) {
            gap: 2rem;
          }
        
          .title{
            font-size: 4.4rem;
            font-weight: bold;
            font-family: "Zen Kaku Gothic New", sans-serif;
            line-height: 1.4;

            @media screen and (max-width: 767px) {
              font-size: 2.6rem;
            }
          
          }
          .author{
            font-size: 2rem;
            line-height: 1.5;
            font-weight: 500;

            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
            }
          
          }
        }
        .right-col{
          flex: 0 0 28rem;

          @media screen and (max-width: 767px) {
            flex: 0 0 auto;
          }

          & img {
            width: 100%;
          }
        
        }
      }

    }

    .main-text {
      font-size: 1.8rem;
      line-height: 1.6;

      @media screen and (max-width: 767px) {
        font-size: 1.6rem;
      }
    }
}