  #soshina {
    width: 100%;
    font-family: "游ゴシック";
    text-align: center;
  }
  .trivia {
    margin: 0 0 50px 0;
    background-color: #e6dcdd;
    padding: 40px;
    border-radius: 30px;
  }
  .trivia img {
    width: 7%;
  }
  .trivia h3 {
    font-weight: bold;
    margin-bottom: 0;
    padding: 10px;
  }
  .mame {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
  }
  .half {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 50px;
  }
  /* Acordeon styles */
  .tab {
    position: relative;
    margin-bottom: 5px;
    width: 100%;
    overflow: hidden;
    text-align: left;
  }
  input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .mame_topic {
    position: relative;
    display: block;
    padding: 0 0 0 20px;
    background: #fff; /* アコーディオン タブ背景色 */
    font-weight: bold;
    line-height: 3;
    cursor: pointer;
  }
  .tab-content {
    max-height: 0;
    overflow: hidden;
    background: #fff; /* タブ内背景色 */
    -webkit-transition: max-height 0.35s;
    -o-transition: max-height 0.35s;
    transition: max-height 0.35s;
    border-top: 1px solid #e6dcdd;
  }
  .tab-content p {
    padding: 10px 20px 10px 20px;
    color: #000; /* タブ内文字色 */
  }
  /* :checked */
  input:checked ~ .tab-content {
    max-height: 100em;
  }
  /* Icon */
  label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
  }
  input[type="checkbox"] + label::after {
    content: "+";
  }
  input[type="radio"] + label::after {
    content: "\25BC";
  }
  input[type="checkbox"]:checked + label::after {
    transform: rotate(315deg);
  }
  input[type="radio"]:checked + label::after {
    transform: rotateX(180deg);
  }
  .soshina_products h2 {
    font-size: 24px;
    font-weight: bold;
    border-bottom: solid 1px;
    display: inline-block;
  }
  .itemtitle {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    background-color: #7d7d7d;
    padding: 5px 0 5px 0;
  }
  a {
    text-decoration: none;
  }

  .soshina_price {
    color: #e50012;
    font-weight: bold;
  }

  .soshina_price:visited {
    color: #e50012;
    font-weight: bold;
  }

  .soshina_contact {
    position: relative;
  }
  .soshina_button {
    position: absolute;
    width: 32%;
    top: 78%;
    left: 58%;
  }

  .manager_comment{
  margin: 0 0 50px 0;
  background-color: #f9f4f0;
  padding: 40px;
  border-radius: 30px;
  }

  .manager_comment h2{
    font-weight: bold;
    font-size: 24px;
  }

  .manager_comment p{
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 20px 80px;
  }

  .manager_comment img{
    width: 80%;
  }


  @media screen and (max-width: 768px) {
    .soshina_products h2 {
      font-size: 20px;
    }
    .itemtitle {
      font-size: 16px;
    }

    .manager_comment img{
    width: 100%;
    }

    .manager_comment p{
    margin: 20px 10px;
    }
  }