    body {
      
      font-family: 'Yomogi', sans-serif;
      margin: 0;
      padding: 0;
      text-align: center;
      background-size: cover;
      background-position: center;
      transition: background-color 0.8s;
    }
    .title {
      background-color: rgba(255, 228, 228, 0.6);
      font-family: "LXGW Marker Gothic", sans-serif;
      font-weight: 800;
      font-size: 2em;
      color: #6b4c76;
    }
    .container {
      padding: 60px 20px;
    }
    .quote {
      font-size: 1.6em;
      font-family: 'Kosugi Maru', sans-serif;
      background: rgba(255,255,255,0.6);
      display: inline-block;
      padding: 20px;
      border-radius: 12px;
      max-width: 90%;
    }
    .button-text {
      font-family: 'Mochiy Pop One', sans-serif;
      font-size: 1em;
    }
    .buttons {
      margin-top: 80px;   
    }
    .button-1{
      background-color: #f7ccf8; 
      color: #6b4c76;
    }
    .button-2{
      background-color: #9cf7ef;
      color: #6b4c76;
    }
    .button-3{
       background-color: #fdedd3;
       color: #6b4c76;
    }
    button {
      margin: 0 10px;
      padding: 10px 18px;
      font-size: 1em;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    button:hover {
      background-color: #fcfdccee;
      cursor: pointer;
    }
    footer {
      margin-top: 40px;
      padding: 20px 15px;
      background-color: rgba(255, 255, 255, 0.6); /* ふわっとした白 */
      text-align: center;
      font-family: 'Yomogi', sans-serif;
      font-size: 0.95em;
      border-top: 1px dashed #ccc;
      color: #444;
    }

    .ad-template-link p {
      font-size: 1.1em;
      margin-bottom: 8px;
    }

    .ad-template-link a {
      display: block;
      margin: 8px auto;
      color: #6b4c76;
      text-decoration: none;
      padding: 10px 12px;
      border-radius: 10px;
      background-color: #f9f5ff;
      transition: background-color 0.3s ease, transform 0.2s ease;
      max-width: 90%;
    }

    .ad-template-link a:hover {
      background-color: #e2d4f2;
      transform: scale(1.02);
    }

    .note-link {
      font-size: 0.9em;
      color: #444;
      background-color: #fff8e1;
    }
    .ad-area {
      padding: 16px 0;
      margin-top: 30px;
      background-color: #fff8f8;
      border-top: 1px dashed #ccc;
      text-align: center;
      font-size: 0.9em;
      color: #666;
    }
    .ad-area iframe {
      width: 100%;
      max-width: 320px;
      height: 90px;
      margin: 0 auto;
      display: block;
    }

@media screen and (max-width: 600px) {
  .ad-template-link a {
    font-size: 1em;
    padding: 12px;
  }
  .note-link {
    font-size: 0.85em;
  }
}

    /* 画面サイズ 600px 以下の場合（スマホ向け） */
@media screen and (max-width: 600px) {
  .title {
    font-size: 1.6em;
    text-align: center;
    padding: 10px;
  }

  .quote {
    font-size: 1.2em;
    padding: 15px;
    max-width: 90%;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  button {
    width: 100%;
    font-size: 1.1em;
    padding: 14px 18px;
    border-radius: 10px;
  }
}