@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version:  2.13.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.plan-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.plan-card {
  background-color: #f9f9f9;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  box-sizing: border-box;
}

.plan-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  text-align: center;
}

.plan-card .price {
  font-size: 1.2em;
  color: #e67e22;
  text-align: center;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
}

.plan-card ul li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .plan-cards {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}

