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

/* コンテナ */
    .about-container {
      max-width: 100%;
      margin: 0px auto;
    }

    /* タイトル */
    .about-title {
      display: inline-block;
      background-color: #014026;
      color: #fff;
      padding: 8px 18px;
      font-size: 1.2rem;
      font-weight: bold;
      clip-path: polygon(100% 0, 93% 50%, 99% 100%, 0% 100%, 0 51%, 0% 0%);
    }

    /* 中身を横並び */
    .about-content {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
		border: 1px solid #ccc;
      padding: 10px;
    }

    /* 左右のエリア */
    .about-box {
      flex: 1;
      min-width: 280px;
    }

    /* 見出し */
    .about-box h3 {
    color: #8B6B3E;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 3px;
    }

    /* 各項目 */
    .about-box p {
      margin: 2px 0 2px;
      line-height: 1.3;
    }

.subtitle {
    font-size: 2.0rem;
}

　　/* 各項目 緑色 */
    .p-green {
      color: #014026;
    }

    /* 各項目 small */
    .p-small {
      font-size: 1.0rem;
      line-height: 1.3;
    }

    /* 料金の強調 */
    .price {
      color: #014026;
      font-weight: bold;
      font-size: 1.8rem;
    }

    /* 料金の強調02 */
    .price02 {
      color: #014026;
	font-weight: bold;
    }
.price03 {
      color: #014026;
      font-weight: bold;
      font-size: 2.8rem;
	text-align: right;
    }

    /* 日本語の見出し */
    .label {
      display: inline-block;
      width: 90px;
      color: #8B6B3E;
    }

    /* スマホ対応 */
    @media (max-width: 600px) {
      .about-content {
        flex-direction: column;
        gap: 20px;
      }
    }
