.contact_form {
    /*
    position: fixed;
    right: 0;
    top: 0;
    width: 47rem;
    height: 100%;
    padding-top: 150px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    */
    z-index: 888;
    background: #fff;
    
  }
  /*
  .contact_form .scroll {
    overflow-y: auto;
    height: 100%;
  }
    */
  .contact_form .inner {
    padding: 3rem;
  }
  .contact_form .ttl {
    color: #f08200;
    text-align: center;
  }
  .contact_form .ttl span {
    display: inline-block;
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: bold;
  }
  .contact_form .ttl span::before, .contact_form .ttl span::after {
    content: "";
    width: 3px;
    height: 1.5em;
    background: #f08200;
    rotate: -15deg;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1em;
  }
  .contact_form .ttl span::after {
    rotate: 15deg;
    margin-left: 1em;
    margin-right: 0;
  }
  .contact_form .tar {
    color: #f08200;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: right;
    margin: 0.5em 0;
  }
  .contact_form .form .grid {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1rem;
  }
  .contact_form .form .grid dt {
    font-weight: bold;
    padding-top: 0.5em;
    /*white-space: nowrap;*/
  }
  .contact_form .form .grid dt .kome {
    color: #f08200;
  }
  .contact_form .form .grid .flex {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .contact_form .form *::placeholder {
    color: #999;
  }
  .contact_form .form label {
    display: inline-block;
    margin: 0.2em 0;
  }
  .contact_form .form input[type=text],
  .contact_form .form input[type=email],
  .contact_form .form input[type=tel],
  .contact_form .form textarea,
  .contact_form .form select {
    font-size: 1.6rem;
    padding: 0 1em;
    background: #f5f2ed;
    border-radius: 0.5rem;
    border: none;
  }
  @media screen and (max-width: 767px) {
    .contact_form .form input[type=text],
  .contact_form .form input[type=email],
  .contact_form .form input[type=tel],
  .contact_form .form textarea,
  .contact_form .form select {
      padding: 0 0.5em;
      
    }
    .contact_form .ttl span{
        font-size: 2.2rem;
    }
    .contact_form .form button{
        font-size: 1.35rem !important;
    }
    .contact .mt100{
        margin-top: 30px;
    }

  }
  .contact_form .form textarea {
    line-height: 1.8em;
    padding: 1em;
    height: 8em;
  }
  .contact_form .form input[type=text],
  .contact_form .form input[type=email],
  .contact_form .form input[type=tel],
  .contact_form .form select {
    line-height: 3em;
    height: 3em;
  }
  .contact_form .form input[type=text],
  .contact_form .form input[type=email],
  .contact_form .form input[type=tel],
  .contact_form .form textarea {
    width: 100%;
  }
  .contact_form .form select {
    background: #f5f2ed url("../img/select.svg") no-repeat right center/auto 100%;
    padding-right: 3.5em;
    vertical-align: middle;
    width: 100%;
  }
  .contact_form .form input[type=radio],
  .contact_form .form input[type=checkbox] {
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    visibility: hidden;
  }
  .contact_form .form input[type=radio] + span,
  .contact_form .form input[type=checkbox] + span {
    display: inline-block;
    position: relative;
    padding-left: 1.8em;
  }
  .contact_form .form input[type=radio] + span::before, .contact_form .form input[type=radio] + span::after,
  .contact_form .form input[type=checkbox] + span::before,
  .contact_form .form input[type=checkbox] + span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.4em;
    height: 1.4em;
    border-radius: 100%;
    border: 1px solid #ccc;
    background: #fff;
    margin-right: 0.3em;
  }
  .contact_form .form input[type=radio] + span::after,
  .contact_form .form input[type=checkbox] + span::after {
    width: 0.8em;
    height: 0.8em;
    margin: 0.3em 0 0 0.3em;
    background: transparent;
    border: none;
  }
  .contact_form .form input[type=radio]:checked + span::after,
  .contact_form .form input[type=checkbox]:checked + span::after {
    background: #000;
  }
  .contact_form .form input[type=checkbox] + span::before {
    border-radius: 0;
  }
  .contact_form .form input[type=checkbox]:checked + span::after {
    width: 1em;
    height: 0.6em;
    margin: 0.2em 0 0 0.2em;
    border-bottom: 3px solid #000;
    border-left: 3px solid #000;
    transform: rotate(-45deg);
    border-radius: 0;
    background: transparent;
  }
  .contact_form .form button {
    background: #f08200;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: bold;
    border-radius: 100px;
    padding: 0.8em 3em;
    margin: 0.5em auto 0;
  }
  .form button:hover{
    opacity: 0.8;
  }
  .contact_form .form .small {
    color: #757575;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: -0.1em;
    text-align: center;
    /*white-space: nowrap;*/
    margin-top: 3em;
  }
  