@charset "UTF-8";
h1 {
    font-size: 24px;
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
  }

  h2 {
    font-size: 20px;
    margin: 24px 0 8px 0;
  }

  p {
    font-size: 14px;
  }

  .acd-check {
    display: none;
  }

  .acd-label {
    background: #e4e4e4;
    color: #000000;
    cursor: pointer;
    display: block;
    margin-bottom: 10px;
    padding: 15px;
    position: relative;
    border-radius: 5px;
    white-space: normal;
    font-size: 14px;
  }

  .acd-label:after {
    background: #e4e4e;
    box-sizing: border-box;
    content: '+';
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 44px;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
  }

  .acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
  }

  .acd-check:checked+.acd-label:after {
    content: '-';
  }

  .acd-check:checked+.acd-label+.acd-content {
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
  }

  .acd-content p {
    margin: 0;
    background: #e4e4e;
  }

  :root {
    --header: 60px;
    scroll-padding: calc(var(--header) + 20px);
  }

  .button001 a {
    background: #e4e4e4;
    border-radius: 40px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 80%;
    height: 60px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }

  .button001 a:hover {
    background: #313131;
    color: #FFF;
  }

  .button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #313131;
    border-right: 2px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
  }

  .button001 a:hover:after {
    border-color: #FFF;
  }

  /* リストデザイン01 */
  .list_design01 {
    color: #333;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 2rem 1rem;
    margin: 0;
    border-top: solid #e4e4e4 1px;
    border-bottom: solid #e4e4e4 1px;
  }

  .list_design01 li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    white-space: normal;
    list-style: none;
    margin: 1rem;
    font-weight: 500;
  }

  /* Media Query for desktop (PC) */
  @media (min-width: 768px) {
    .list_design01 {
      grid-template-columns: repeat(3, 1fr);
      font-size: 16px;
    }
  }

  /* Media Query for mobile (smartphone) */
  @media (max-width: 767px) {
    .list_design01 {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      padding: 2rem 0.5rem;
      width: 100%;
      font-size: 14px;
    }
  }
