@charset "utf-8";

/* スマホ／PC　共通：style.css
 * **************************************************
 * 追加分
 * **************************************************
 */

    .frame-container {
      display: flex;
    }
	
	.image-container {
	text-align: center;
	margin-bottom: 1em;
	}
	.image-container img {
      display: inline-block;
      max-width: 300px;
      height: auto;
      border-radius: 10px;
    }
	
    .frame-point {
      flex: 1;
      box-sizing: border-box;
      padding: 20px;
      background-color: #e0f6f8;
      margin-right: 20px;
      border-radius: 20px;
	  margin-bottom: 5em;
    }

    .frame-point:last-child {
      margin-right: 0;
    }

    .frame-point p.title {
      color: white;
	  text-align: center;
      font-size: 20px;
	  font-family: "Lucida Grande", "segoe UI", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Meiryo, Arial, sans-serif;
	  font-weight: bold;
      padding: 5px 15px;
      background-color: #00b8c1;
      border-radius: 10px;
	  margin-bottom: 1em;
	  letter-spacing: 3px; /* 字間調整 */
    }

    .frame-point .list {
      list-style-type: none;
      padding-left: 10px;
    }

    .frame-point .list li {
      font-family: "Lucida Grande", "segoe UI", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Meiryo, Arial, sans-serif;
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;
	  font-size: 1.6em;
    }

    .frame-point .list li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #00b7c4;
    }
	  .frame-point .list li.iro2:before {
      background-color: #ec739e;
    }
	

    @media (max-width: 600px) {
      .frame-container {
        flex-direction: column;
      }

      .frame-point  {
        margin-right: 0;
        margin-bottom: 20px;
      }
    }
	
	