html,
body {
  height: 100%;
}

body {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

textarea {
    width: 100%;
    resize: none;
    height: 1.3em;
    border: 1px inset gray;
    margin: 0px;
    font-size: 18px;

    border-radius:10px;
    box-shadow: none;
    padding: 2px 8px;
}

.row-3 {
    height: calc( 1.4em * 1 );
    line-height: 1.4;
}

.btn--orange,
button.btn--orange {
  color: #fff;
  background-color: #eb6100;
  width: 100%;
}
.btn--orange:hover,
button.btn--orange:hover {
  color: #fff;
  background: #f56500;
  /* width: 70%; */
}


h4 {
  border-bottom: 6px double #000;
}

.line-container {
    position: relative;
    margin: 50px 0;
    text-align: center;
}

.line-container h2 {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 10px;
    width: 100%;
    background-color: #2D2A4A;
    color: #eeeeee
}

.line-container::before,
.line-container::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px; /* 線の太さ */
}

.line-container::before {
    top: -13px; /* 上部の一番上の線の位置調整 */
    border-top: 6px solid #A51931; /* 上部の一番上の線の色 */
    border-bottom: 6px solid white; /* 上部の真ん中の線の色 */
}

.line-container::after {
    bottom: -5px; /* 下部の一番下の線の位置調整 */
    border-top: 6px solid white; /* 下部の真ん中の線の色 */
    border-bottom: 6px solid #A51931; /* 下部の一番下の線の色 */
}
