.price .title02,.option .title02 {
    text-align-last: left;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tax-note {
    text-align: right;
    font-size: 16px;
    margin-bottom: 10px;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
}

/* 各カードの基本スタイル */
.plan-card {
    background: #fff;
    border-radius: 15px;
    flex: 1;
    border: 5px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}


/* カラーバリエーション */
.light { border-color: #87C9C8; }
.light .plan-header { background-color: #87C9C8; }
.standard { border-color: #7ED357; }
.standard .plan-header { background-color: #7ED357; position: relative;}
.pro { border-color: #26B299; }
.pro .plan-header { background-color: #26B299; }

/* おすすめバッジ */
.recommended {
　position: relative;
}
.recommend-badge {
    position: absolute;
    background: #ff3d10;
    color: #fff;
    text-align: center;
    padding: 8px 30px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    top: -40px;
    z-index: 10;
    margin: 0 auto;
    right: 0;
    left: 0;
    max-width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.recommend-badge:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 20px solid #ff3d10;
    
}
.plan-header {
    padding: 30px;
    text-align: center;
    color: #fff;
}

.plan-header h3 {
    margin: 0;
    font-size: 32px;
    color: #fff;
    text-align: center;
}

.plan-content {
    padding: 20px;
    text-align: center;
}

.price-section {
    margin-bottom: 15px;
}
.line-solid {
    border-bottom: 1px solid #d3d3d3;
}

.price-label {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.price-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.badge {
    font-size: 16px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 3px;
    color: #213244;
}
.plan-card.light .plan-content .price-section .price-value .badge {
    background: #cfebeb;
}
.plan-card.standard .plan-content .price-section .price-value .badge {
    background: #ccedba;
}
.plan-card.pro .plan-content .price-section .price-value .badge {
    background: #a4e0d6;
}

.badge.month { background: #B3D7D6; color: #213244; }

.price-value strong {
    font-size: 40px;
    letter-spacing: 1px;
}

/* 中段のグレーボックス */
.notes {
    background: #F2F2F2;
    padding: 15px;
    border-radius: 8px;
    font-size: 11px;
    text-align: left;
    margin: 15px 0;
    line-height: 1.6;
}
.notes p {
    font-size: 16px;
}

/* ボタン */
.button {
    background-color: #ff7900;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(15px, 2.5vw, 17px);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 9px 0 #c46200;
    display: block;
}

.button:hover {
  transform: translateY(9px);
  background-color: #f58a20;
  box-shadow: 0 1px 0 #c46200;
}

.button img {
  position: relative;
    top: -4px;
    right: -3%;
    width: 7%;
}

/* 下部のリスト項目 */
.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    font-size: 13px;
    align-items: center;
    font-weight: bold;
}

.features li:nth-child(odd) {
    background-color: #F2F2F2;
}

.features li small {
    display: block;
    font-size: 12px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .pricing-wrapper {
        flex-direction: column;
    }
    .recommended {
        margin-top: 0;
    }
    .recommend-badge {
        font-size: 15px;
        padding: 8px 30px;
        top: -20px;
        max-width: 200px;
    }
}

/* オプション */
.option {
    background-color: #e9eaec;
    border-radius: 20px;
    margin-bottom: 100px;
}
.option-section {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    color: #34495E;
    margin-bottom: 30px;
    font-weight: bold;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

/* 各行のスタイル */
.option-item {
    display: flex;
    background-color: #fff;
    border: 5px solid #3E4E5E;
    border-radius: 20px;
    overflow: hidden;
    min-height: 120px;
}

/* 左側のラベル部分 */
.option-label {
    background-color: #3E4E5E;
    color: #fff;
    width: 320px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    flex-shrink: 0;
}

.option-label h3 {
    font-size: 20px;
    margin: 0;
    line-height: 1.4;
    color: #fff;
}

/* 右側のコンテンツ部分 */
.option-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

/* 説明テキスト */
.option-description {
    flex-grow: 1;
}

.option-description p {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
}

.option-description .sub-text {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 2px;
}

/* 価格部分 */
.option-price {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 20px;
}

.option-price .unit {
    background-color: #E9ECEF;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 8px;
    font-weight: bold;
}

.option-price .amount {
    font-size: 28px;
    font-weight: bold;
}

.option-price .currency {
    font-size: 14px;
    margin-left: 4px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .option-item {
        flex-direction: column;
    }
    
    .option-label {
        width: auto;
        padding: 15px;
    }
    .option-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .option-price {
        margin-left: 0;
        margin-top: 15px;
        align-self: flex-end;
    }
}
.description > ul > li {
    max-width: 1050px;
    align-items: center;
}
.description ul li div .check li {
    position: relative;
    right: -20px;
    padding-right: 20px;
}
.description ul li div .check li:before {
    content: url(../img/check-icon.png);
    position: absolute;
    top: 2px;
    left: -20px;
}
.description p small {
    margin: 0;
    text-align: right;
}