@charset "utf-8";

/*ask*/
/*-----------------------------------------------------------*/
.accordion {
    margin-bottom: 3rem;
  }
  
  .link-privacy a {
    background: url(../../img/common/icon_newwindow.png) 100% 50% no-repeat;
    display: inline-block;
    padding-right: 1.5em;
  }
  
  /*ベース*/
  .toggle {
    display: none;
  }
  
  .Label:hover {
    text-decoration: underline;
  }
  
  .Label,
  .detail {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.4s;
  }
  
  .detail {
    /*本文*/
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .toggle:checked + .Label + .detail {
    /*開閉時*/
    height: auto;
    padding: 10px 0;
    transition: all 0.3s;
  }
  
  .toggle:checked + .Label::before {
    transform: rotate(-45deg) !important;
  }
  
  #ask h3 {
    border-bottom: 2px solid #959595;
    margin: 0 0 0.7em;
    padding: 0 2% 0.25em;
  }
  
  .required {
    background: var(--orange);
    border-radius: 3px;
    color: var(--bs-white);
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5em;
    padding: 0 0.5em;
    vertical-align: middle;
  }
  
  .required_box {
    border: 1px solid var(--orange);
    background: #ffffed;
  }
  textarea.required_box {
    margin-top: 0.25em;
  }
  
  .ask_purpose {
    display: block;
    list-style: none;
    margin: 0 0 2rem;
    padding: 0 2%;
  }
  
  .ask_purpose li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  
  .ask_purpose li:not(:first-child) {
    margin-left: 3em;
  }
  
  .ask_purpose input {
    margin-right: 5px;
  }
  
  .ask_txt {
    margin: 0 2% 2rem;
  }
  
  .ask_txt textarea {
    width: 100%;
  }
  
  .table1 {
    margin: 0 2% 2rem;
  }
  
  .table1 tr td {
    padding: 8px 0;
  }
  
  .table1 tr td:first-of-type {
    position: relative;
    width: 9em;
  }
  
  .table1 tr td:first-of-type .required {
    position: absolute;
    right: 15px;
  }
  
  .submit {
    text-align: center;
  }
  
  input[type="submit"] {
    background: var(--orange);
    border: 0 none;
    border-radius: 3px;
    color: var(--bs-white);
    cursor: pointer;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 1em;
    transition: 0.4s;
  }
  
  input[type="submit"]:hover {
    background-color: var(--btn-inq);
    box-shadow: 2px 2px 0 var(--orange) inset,
      2px -2px 0 var(--orange) inset, -2px 2px 0 var(--orange) inset,
      -2px -2px 0 var(--orange) inset;
    color: var(--text-color);
  }
  
  .link-dl {
    background: #fffff0;
    border: 1px solid var(--txt-color);
    border-radius: 1em;
    margin: 3em auto;
    padding: 1em;
    text-align: center;
    width: 70%;
  }
  .link-dl a {
    background: url(../img/icon_newwindow.png) 100% 50% no-repeat;
    display: inline-block;
    padding-right: 1.5em;
  }
  .link-dl img {
    display: inline-block;
    margin-right: .5em;
    vertical-align: middle;
  }