@charset "utf-8";


  #category_top img {
    width: 100%;
  }

  #category_top picture {
    display: block;
    margin-bottom: 2em;
  }

  #category_cont {
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #category_cont h2 {
    font-size: clamp(24px, 6.8vw, 34px);
    color: #00796b;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }

  #category_cont h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #00796b;
  }

  #category_cont p {
    margin: 0 auto;
    display: inline-block;
    text-align: center;
  }

  @media screen and (max-width: 767px) {
    #category_top {
      width: calc(100% - 1em);
      margin: 1em auto 0;
    }

    #category_cont {
      width: calc(100% - 1em);
      margin: 1em auto 0;
      padding: 0 0 10px;
    }

    #category_cont p {
      text-align: left;
      line-height: 1.8;
    }
  }