﻿  @charset "UTF-8";
/*-----------------------------------

brandheading.css
フードブランド CSS

-----------------------------------*/

  .brandheading-box {
  display: flex;
  align-items: stretch;
  max-width: 990px;
  margin: 0 auto;
  font-family: 'Noto Sans JP';
padding-bottom: 20px;
}

.brandheading-label {
  color: #fff;
  background: #3e9c72;
  padding: 16px 20px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
  position: relative;
  white-space: nowrap;
}

.brandheading-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  border-width: 8px 0 8px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #3e9c72;
}

.brandheading-content {
  background: #f3efea;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

/* SP対応 */
@media screen and (max-width: 750px) {
  .brandheading-box {
    max-width: 750px;
    flex-direction: column;
  }

  .brandheading-label {
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    padding: 12px 16px;
  }


  .brandheading-label br {
    display: none;
  }

  .brandheading-label::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;

    border-width: 10px 8px 0 8px;
    border-style: solid;
    border-color: #3e9c72 transparent transparent transparent;
  }

  .brandheading-content {
    font-size: 14px;
    margin-top: 0;
  }
}