@charset "UTF-8";

/* -------------------------------------------------------------------------------
|  Created:     2025-02-13
|  Updated:     N/A
|------------------------------------------------------------------------------- */

/*---------------------------------------------------------
  gt37wide.html
---------------------------------------------------------*/

/* ネットワークの垣根を超える
-------------------------------------------------------------------------------- */

.meswp-titleText--square {
  position: relative;
  background-color: var(--meswNavyLightColor);
  color: var(--white);
  
  &::after {
    content: "";
    width: 30px;
    height: 20px;
    bottom: -19px;
    left: calc(50% - 15px);
    position: absolute;
    background-color: var(--meswNavyLightColor);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}

.meswp-titleText--circle {
  position: relative;
  background-color: var(--grey300);
  border-radius: 20px;
  
  &::after {
    content: "";
    width: 30px;
    height: 20px;
    bottom: -19px;
    left: calc(50% - 15px);
    position: absolute;
    background-color: var(--grey300);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}