body {
  background: #FFFFFF;
}

.c-button {
  background: #eff2f4;
}

.c-button,
.c-button:link,
.c-button:hover,
.c-button:active,
.c-button:visited {
  color: #35454c;
}

.c-button:hover {
  background: #dfe5e8;
}

.c-button--primary {
  background: #feedeb;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:hover,
.c-button--primary:active,
.c-button--primary:visited {
  color: #86251e;
}

.c-button--primary:hover {
  background: #fdd9d7;
}

.c-button--danger {
  background: <{$button3_bgcolor}>;
}

.c-button--danger,
.c-button--danger:link,
.c-button--danger:hover,
.c-button--danger:active,
.c-button--danger:visited {
  color: <{$button3_font_color}>;
}

.c-button--danger:hover {
  background: <{$button3_bgcolor_hover}>;
}

.c-input--text {
  border-color: #d7dee2;
}

.c-input--text:focus {
  border-color: #607d8b;
}


/* TEXT BANNER */
.p-page__body-inner {
  position: relative;
}
.c-button__group--sub {
  /* 公開時にコメントアウト解除 1 */
  /* margin-bottom: 200px; */
}
.ec_contact_banner {
  /* 公開時にコメントアウト解除 2 */
  /* display: block !important; */
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  text-decoration: none;

  span:first-child {
    color: #000;
    display: flex;
    justify-content: center;
    font-size: min(18px, 3.6vw);
    font-weight: bold;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    gap: 1em;
    align-items: center;
    &::before ,
    &::after {
      content: "";
       height: 1.2em;
      width: 2px;
      display: block;
      background-color: currentColor;
    }
    &::before {
      transform: rotate(-20deg);
    }
    &::after {
      transform: rotate(20deg);
    }
  }

  span:last-child {
    display: flex;
    position: relative;
    border-radius: 12px;
    background-color: #bc9d4e;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: min(20px, 4vw);
    font-weight: 700;
    letter-spacing: 0.1em;
    width: calc(100% - 40px);
    margin: 16px auto;
    min-height: 100px;
    transition: opacity 200ms;
    &::after {
      content: '';
      width: 18px;
      height: 18px;
      position: absolute;
      right: 16px;
      top: calc(50% - 9px);
      border-style: solid;
      border-width: 2px 2px 0 0;
      border-color: currentColor;
      transform: rotate(45deg);
    }
    &:hover {
      opacity: 0.7;
    }
  }
}