@charset "utf-8";
/* CSS Document */

    .ep_box {
      display: flex;
      flex-wrap: wrap;
      padding: 10px;
      width: 100%;
      box-sizing: border-box;
      justify-content: space-evenly;
      align-items: center;
    }
    .ep_img {
      width: 30%;
      text-align: center;
      padding: 10px;
      box-sizing: border-box;
    }
    .ep_img > img {
      max-width: 240px;
    }
    .ep_ct {
      width: 70%;
      padding-left: 10px;
      box-sizing: border-box;
    }
    .ep_ttl {
      font-size: 1.5em;
      font-weight: bold;
      color: #000;
    }
    .ep_txt {
      width: 100%;
    }
    .ep_txt > input[type="text"] {
      margin: 20px 0px 10px 0px;
      display: block;
      border-radius: 50px;
      height: 35px;
      width: 100%;
      max-width: 320px;
    }
    .btn_box {
      display: flex;
      margin-top: 10px;
    }
    .btn {
      margin: 3px;
      background-color: #6f6f6f;
      padding: 7px 25px;
      border: none;
      color: #fff;
      width: 100%;
      border-radius: 50px;
      white-space: nowrap;
      width: 82px;
    }
    @media screen and (max-width: 640px) {
      .ep_img,
      .ep_ct {
        width: 100%;
        text-align: center;
      }
      .btn_box {
        display: flex;
        margin-top: 10px;
        justify-content: space-evenly;
      }
      .btn {
        width: 45%;
      }
      .ep_txt > input[type="text"] {
        max-width: 100%;
      }
    }