/**
 * #.# PRICE
 *
 * 
 */
/*基本カラー*/
:root {
    --border-gym: #17C1B0;  /* 基本カラー */
    --border-light: #17A7C1; /*ライト*/
    --border-personal: #05C3C3;/* パーソナル */
    --border-studio: #E07171; /* スタジオ */
    --border-golf: #339544; /* ゴルフ */
    --border-vip: #C58A00; /* VIP */
}
/*フォントカラー*/
.color-gym-plan {
    color:var(--border-gym);
}
.color-light-plan {
    color:var(--border-light);
}
.color-personal-plan {
    color:var(--border-personal);
}
.color-studio-plan {
    color:var(--border-studio);
}
.color-golf-plan {
    color:var(--border-golf);
}
.color-vip-plan {
    color:var(--border-vip);
}
/*背景色*/
.bg-gym-color {
    background: var(--border-gym);
}
.bg-light-color {
    background: var(--border-light);
}
.bg-personal-color {
    background: var(--border-personal);
}
.bg-studio-color {
    background: var(--border-studio);
}
.bg-golf-color {
    background: var(--border-golf);
}
.bg-vip-color {
    background: var(--border-vip);
}

/*スクロール時*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 185px;
}
@media screen and (max-width:768px){
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }
}

/*ページトップボタン*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2.5px #17C1B0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #17C1B0;
    border-right: 3px solid #17C1B0;
    transform: translateY(20%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #fff;
        background: #17C1B0;
    }
}

/* タイトル サイズ調整 */
#price h2 {
    margin: 40px 0 !important;
    font-size: 26px !important;
}
.plan-details-underline {
    margin-bottom: 30px !important;
    padding-left: 10px;
    position: relative;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #EBEBEB;
}
.price-list-underline {
    margin-bottom: 30px !important;
    padding-left: 10px;
    position: relative;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #EBEBEB;
}
.ticket-info-underline {
    margin-bottom: 40px !important;
    padding-left: 10px;
    position: relative;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #EBEBEB;
}
.plan-details-underline::after {
    content: "";
    width: 130px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: var(--border-gym);
}
.price-list-underline::after {
    content: "";
    width: 115px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: var(--border-gym);
}
.ticket-info-underline::after {
    content: "";
    width: 200px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: var(--border-gym);
}
.notice {
    display: flex;
    font-size: 14px;
    font-weight: 400;
}
.notice span {
    font-size: 12px;
    padding-right: 5px;
}
.notice a {
    display: inline-block;
    text-align: left;
}
@media screen and (max-width:720px){
    #price h2 {
        font-size: 22px !important;
    }
    .plan-details-underline {
        font-size: 20px !important;
    }
    .plan-details-underline::after {
        width: 120px;
    }
    .price-list-underline {
        font-size: 20px !important;
    }
    .price-list-underline::after {
        width: 100px;
    }
    .ticket-info-underline {
        font-size: 20px !important;
    }
    .ticket-info-underline::after {
        width: 180px;
    }
}

/* --------------- 重要なお知らせ ------------ */
.important-notice {
    background: #FFE8E8;
    padding: 30px;
    margin-bottom: 30px;
}
.notice-title{
    color: #B71C1C;
    font-weight: 600;
}
.link-notice-arrow {
    width: fit-content;
    margin: 10px 0 5px;
    display: block;
    border-bottom: 1px solid;
}
.link-notice-arrow::before {
    content: "";
    margin: 0 -2px 0 2px;
    display: inline-block;
    border: 6px solid transparent;
    border-left: 10px solid;
}
@media screen and (max-width:720px){
    .important-notice {
        padding: 15px;
        margin-bottom: 20px;
    }    
}

/* ---------- 見出し ---------- */
p.membership__lead {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
    p.membership__lead {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    p.membership__lead {
        font-size: 16px;
    }
    p.membership__lead {
        margin-bottom: 15px;
    }
}
/* ---------- プランナビ ---------- */
ul.membership__list {
    display: flex;
    align-items: center;
    gap: 5px;
}
li.membership__item {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
a.membership__link {
    text-align: center;
    color: #fff;
}
p.membership__plan-en {
    font-family: 'din-condensed', sans-serif;
    font-size: 40px;
    letter-spacing: 0.025em;
    line-height: 1;
}
p.membership__plan-jp {
    font-size: 14px;
    font-weight: 500;
}
li.membership__item::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    bottom: 15%;
    transform: rotate(45deg);
}
@media screen and (max-width: 960px) {
    p.membership__plan-en {
        font-size: 30px;
    }
    p.membership__plan-jp {
        font-size: 12px;
    }
}
@media screen and (max-width: 768px) {
    ul.membership__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 170px));
        justify-items: center;
        width: 100%;
        justify-content: center;
        gap: 2%;
    }
}

/* ---------- プラン料金 ---------- */
.membership-plans {
    margin: 100px auto 30px;
    display: flex;
    gap: 50px;
    flex-direction: column;
}
.plan-card__header {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}
p.plan-card__name-en {
    font-family: 'din-condensed', sans-serif;
    font-size: 46px;
    line-height: .9em;
}
p.plan-card__name-jp {
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
}
.plan-card__body {
    background: #f9f9f9;
    display: flex;
    padding: 50px 30px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.plan-card__price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plan-card__price {
    font-family: 'din-condensed', sans-serif;
    font-size: 70px;
    line-height: 1.3;
}
span.plan-card__currency {
    font-size: 50px;
}
span.plan-card__unit {
    font-size: 26px;
    font-weight: 600;
}
p.plan-card__badge {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
p.plan-card__badge::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-right: 0.6em;
    width: 2px;
    height: 15px;
    border-right: 2px solid;
    transform: translateY(-50%) rotate(-35deg);
}
p.plan-card__badge::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 0.6em;
    width: 2px;
    height: 15px;
    border-right: 2px solid;
    transform: translateY(-50%) rotate(35deg);
}
.plan-card__price-tax {
    font-size: 15px;
    font-weight: 600;
}
ul.plan-card__features {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px auto;
}
li.plan-card__feature {
    width: 17%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
}
img.plan-card__feature-icon {
    width: 60%;
}
.plan-card__feature-text {
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    color: #fff;
    font-size: 14px;
    height: 2.6em;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width: 960px) {
    p.plan-card__name-en {
        font-size: 40px;
    }
    p.plan-card__name-jp {
        font-size: 13px;
        line-height: 1.1;
    }
    p.plan-card__badge {
        font-size: 13px;
    }
    .plan-card__price {
        font-size: 60px;
        line-height: 1.2;
    }
    span.plan-card__currency {
        font-size: 40px;
    }
    span.plan-card__unit {
        font-size: 22px;
    }
    p.plan-card__description {
        font-size: 14px;
    }
    .notice {
        font-size: 13px;
    }
    p.plan-card__feature-text {
        font-size: 12px;
    }
    ul.plan-card__features {
        gap: 5px;
    }
    li.plan-card__feature {
        width: 19%;
        padding: 10px 0px;
    }
}
@media screen and (max-width: 768px) {
    .plan-card__body {
        padding: 30px 15px;
    }
    li.plan-card__feature {
        max-width: 100px;
        width: 100%;
    }
    p.plan-card__feature-text {
        font-size: 10px;
    }
}

/*---------- パーソナル入会日について ---------*/
.personal-plan-info {
    background: #fff;
    padding: 50px 30px;
    margin-top: 20px;
}
p.personal-plan-info__title {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}
p.personal-plan-info__lead {
    font-size: 15px;
    margin-bottom: 10px;
}
dl.personal-plan-table.personal-plan-table--head {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 2fr 2fr;
}
dt.personal-plan-table__head {
    background: var(--border-personal);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-weight: 500;
}
dl.personal-plan-table {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 2fr 2fr;
    margin: 5px auto;
}
dt.personal-plan-table__term {
    background: #E4FDFD;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.3;
    font-size: 14px;
}
dt.personal-plan-table__term span {
    font-size: 24px;
    font-weight: 600;
}
dd.personal-plan-table__price, .personal-plan-table__count {
    border: 1px solid #E0E0E0;
    padding: 15px 0;
    text-align: center;
}
dd.personal-plan-table__price .price {
    font-size: 40px;
    font-family: 'din-condensed', sans-serif;
    color: var(--border-personal);
    line-height: 1;
}
span.price__currency {
    font-size: 30px;
}
span.price__unit {
    font-size: 20px;
    font-weight: 500;
}
.personal-plan-table__price .price__tax {
    font-size: 14px;
    font-weight: 500;
}
dd.personal-plan-table__count .count {
    color: var(--border-personal);
    font-size: 40px;
    font-family: 'din-condensed', sans-serif;
}
span.count__unit {
    font-size: 20px;
    font-weight: 500;
}
@media screen and (max-width: 960px) {
    .personal-plan-info {
        padding: 30px 15px;
        margin-top: 15px;
    }
    p.personal-plan-info__lead {
        font-size: 14px;
    }
    dt.personal-plan-table__head {
        padding: 10px 0;
    }
    dt.personal-plan-table__term span {
        font-size: 20px;
    }
    dt.personal-plan-table__term {
        line-height: 1.4;
        font-size: 13px;
    }
}
@media screen and (max-width: 768px) {
    p.personal-plan-info__title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    dt.personal-plan-table__term span {
        font-size: 16px;
    }
    dt.personal-plan-table__term {
        font-size: 11px;
    }
    span.price__currency {
        font-size: 20px;
    }
    dd.personal-plan-table__price .price {
        font-size: 30px;
        display: flex;
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
    }
    span.price__unit {
        font-size: 14px;
    }
    .personal-plan-table__price .price__tax {
        font-size: 12px;
    }
    dd.personal-plan-table__count .count {
        font-size: 30px;
        display: flex;
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
    }
    span.count__unit {
        font-size: 14px;
    }
}
@media screen and (max-width: 458px) {
    dl.personal-plan-table,
    dl.personal-plan-table.personal-plan-table--head {
        grid-template-columns: 1.3fr 1.8fr 1.8fr;
    }
    dt.personal-plan-table__term span {
        font-size: 14px;
    }
}


/*---------- VIP会員 ----------*/
p.vip-benefit__image {
    margin: 30px auto;
}
img.vip-benefit__img {
    max-width: 800px;
    width: 100%;
}
.vip-maintenance-header {
    color: var(--border-vip);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
}
.maintenance-info {
    font-size: 20px;
}
.vip-heading {
    font-size: 30px;
}
.vip-maintenance-pricing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.regular-price{
    display: flex;
    align-items: center;
}
.discount-label {
    font-size: 24px;
    background: var(--border-vip);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.original-price {
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid var(--border-vip);
    position: relative;
    padding: 0px 15px 5px 10px;
    line-height: 1.2;
}
.original-price::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--border-vip);
    transform: rotate(40deg);
    bottom: 1px;
    right: 0;
}
.price-value {
    font-size: 22px;
    font-family: 'din-condensed', sans-serif;
    font-weight: 500;
}
.price-value::after {
    content: "";
    width: 85%;
    position: absolute;
    height: 2px;
    background: var(--border-vip);
    top: 34px;
    left: 10px;
    transform: rotate(8deg);
}
.price-half-value {
    color: var(--border-vip);
    font-size: 90px;
    margin: 0px 0 10px 20px;
    line-height: 1.3;
    font-family: 'din-condensed', sans-serif;
}
.tax-inclusive {
    font-size: 25px;
    font-weight: 600;
}
.vip-maintenance-details {
    text-align: center;
    font-size: 15px;
}
@media screen and (max-width:960px){
    .vip-maintenance-header {
        line-height: 1.3;
    }
    .maintenance-info {
        font-size: 18px;
    }
    .vip-heading {
        font-size: 26px;
    }
    .price-value {
        font-size: 18px;
    }
    .price-value::after {
        width: 80%;
    }
    .discount-label {
        font-size: 20px;
        width: 60px;
        height: 60px;
    }
    .original-price {
        line-height: 1.3;
    }
    .price-half-value {
        font-size: 70px;
    }
    .tax-inclusive {
        font-size: 20px;
    }
    .vip-maintenance-details {
        font-size: 13px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width:684px){
    .maintenance-info {
        font-size: 14px;
    }
    .discount-label {
        font-size: 16px;
        width: 50px;
        height: 50px;
    }
    .original-price {
        line-height: 1.2;
    }
    .price-value {
        font-size: 16px;
    }
    .price-value::after {
        top: 25px;
    }
    .price-label {
        font-size: 13px;
    }
    .vip-heading {
        font-size: 20px;
    }
    .price-half-value {
        margin: 0px 0 10px 10px;
        line-height: 1.5;
        font-size: 40px;
    }
    .tax-inclusive {
        font-size: 15px;
    }
    .vip-maintenance-details {
        font-size: 12px;
        text-align: left;
    }
}
@media screen and (max-width:548px){
    .vip-maintenance-pricing {
        display: flex;
        margin: 10px 0;
        white-space: nowrap;
    }
    .regular-price {
        padding-top: 15px;
    }
    .price-half-value {
        margin: 0px 0 0px 10px;
        line-height: 1.5;
        font-size: 32px;
    }
    .tax-inclusive {
        font-size: 12px;
    }
    .discount-label {
        font-size: 14px;
        width: 40px;
        height: 40px;
    }
    .price-label {
        font-size: 12px;
    }
    .price-value {
        font-size: 14px;
    }
    .price-value::after {
        top: 23px;
        left: 8px;
        height: 1.5px;
    }
    .original-price::after {
        width: 8px;
    }
    .original-price {
        padding: 0px 15px 2px 10px;
    }
}

/*---------- ツールチップ ---------*/
/*はてなマーク*/
.dli-question-circle {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    position: relative;
    width: 1em;
    height: 1em;
    bottom: 1px;
    border: 1px solid currentColor;
    border-radius: 50%;
    box-sizing: content-box;
}
span.dli-question-circle::after {
    content: "?";
    font-size: 12px;
    position: absolute;
    left: 0;
    right: 0;
}
/* カーソルを重ねる要素 */
.tooltip {
    position: relative;
    cursor: pointer; 
}
/* ツールチップのテキスト */
.tooltip-text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform: translateX(-40%);
    top: -45px;
    display: inline-block;
    padding: 5px 10px;
    text-align: left;
    white-space: nowrap;
    font-size: 0.8rem;
    line-height: 1.3;
    background: #333;
    color: #fff;
    border-radius: 3px;
    transition: 0.3s ease-in;
}
/* ホバー時にツールチップの非表示を解除 */
.tooltip:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}
/*---------- 番号付き※マーク -----------*/
.warning-01{
	position: relative;
}
.warning-01::after {
    content: "※1";
    position: absolute;
    font-size: 10px;
    right: 0px;
    font-weight: 400;
    bottom: 0;
}
.warning-02{
	position: relative;
}
.warning-02::after {
    content: "※2";
    position: absolute;
    font-size: 10px;
    right: 0px;
    font-weight: 400;
    bottom: 0;
}

/*----------- 無料体験 ------------*/
.free-plan-ticket {
    display: flex;   
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding:30px;
    gap:40px;
    margin-bottom: 150px;
}
.free-plan-ticket div {
    flex: 1;
}
.free-plan-ticket img {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    display: block;
}
.free-plan-wrap {
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.freeticket-info-underline {
    font-size: 30px;
    font-weight: 700;
}
.reservation-link {
    background: #17c1b0;
    color: #fff;
    font-weight: 600;
    padding: 15px;
    width: 300px;
    text-align: center;
    border-radius: 50px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
}
@media screen and (max-width: 768px) {
    .free-plan-ticket {
        flex-direction: column;
        align-items: center;
    }
    .free-plan-wrap {
        display: flex;
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    .freeticket-info-underline {
        font-size: 20px;
        font-weight: 700;
    }
    .reservation-link {
        padding: 15px;
        width: 100%;
        margin-top: 0px;
        font-size: 16px;
    }
}

/* ---------- 各種料金 ---------- */
.price-service-wrap{
    margin-bottom: 150px;
}
.price-service-fees{
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    grid-template-columns: 25% 75%;  /* 2列 */
    grid-auto-flow: column; 
    justify-content: center;
}
.en-mark {
    font-size: 20px !important;
    font-weight: 600 !important;
}
.xcl-tax-price {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.xcl-tax-price span {
    font-size: 14px;
    font-weight: 500;
}
.price-option .price-dt,.price-service-fees .price-dt{
    background: #E7F9F7;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:18px;
}
.price-service-fees .price-dd{
    border: 1px solid #E5E5E5;
    vertical-align: middle;
    padding:10px 0;
    font-size:18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.price-option .price-dd{
    border: 1px solid #E5E5E5;
    vertical-align: middle;
    padding:10px 40px;
    font-size:18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-dt-option {
    background: var(--border-gym);
    font-weight: 500;
    width: 25%;
    color:#fff;
    font-size:18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-option-name{
    display: flex;
    align-items: center;
}
.price-option-value {
    font-size:14px;
    padding-top: 3px;
}
.font-price-short{
    font-size:25px;
    font-weight:700;
}
.center {
    text-align: center;
}
.price-option{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    grid-template-columns: 25% 75%;
    margin-top: 8px;
    justify-content: center;
    align-items: center;
}
.price-option dt:nth-child(1){
    grid-row: 1/3;
    width:100%;
    height: 100%;
}  
.sp-br{
    display: none; /* SPの改行を隠す */
}
.font14-note {
    display: flex;
    font-size: 14px;
    padding: 5px 0;
}

/* ---------- チケット料金 ---------- */
.ticket-info-fees {
    display: grid;
    gap: 8px;
    grid-template-columns: 26% 36% 36%;
    justify-content: center;
}
span.expiration-date {
    font-size: 14px;
}
.ticket-info-fees .price-dt{
    background: #E7F9F7;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-direction: column;
}
.ticket-info-fees .price-dd {
    border: 1px solid #E5E5E5;
    vertical-align: middle;
    padding: 15px 0px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ticket-info-fees dd.price-dd:nth-of-type(4) {
    padding: 12px 5px;
}
.ticket-info-fees .price-dd:nth-of-type(1),
.ticket-info-fees dd.price-dd:nth-of-type(4) {
    grid-column: span 2;
}
.ticket-bundle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}
.ticket-bundle__count {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.ticket-bundle .count-bundle {
    border-right: 1px dotted #E5E5E5;
    padding: 5px 0px;
    margin: 5px 0;
}
.ticket-bundle .count-bundle:last-child {
    border: none;
}
/*その他利用料金*/
.price-other {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    grid-template-columns: 26% 36% 36%;
    margin-top: 8px;
    align-items: center;
    justify-content: center;
}
.price-other dt:nth-child(1){
    grid-row: 1/3;
    width:100%;
    height: 100%;
}  
.price-other .price-dt,.price-service-fees .price-dt{
    background: #E7F9F7;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:18px;
}
.price-other .price-dd {
    border: 1px solid #E5E5E5;
    vertical-align: middle;
    padding: 10px 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: span 2;
}
.price-dt-other {
    background: #E7F9F7;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-direction: column;
}
.price-other-name{
    display: flex;
    align-items: center;
}
/*ふきだし*/
.count-bundle {
    position: relative;
}
.ticket-discount {
    position: absolute;
    margin: 0 10px 15px;
    padding: 7px 20px;
    border-radius: 50px;
    background-color: #ffce2d;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    top: -43px;
    left: 0;
    right: 0;
    white-space: nowrap;
}
.ticket-discount::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #ffce2d transparent transparent;
    translate: -50% 100%;
}


@media screen and (max-width:960px){
    .ticket-bundle .count-bundle {
        padding: 5px 0px;
    }
}
@media screen and (max-width:768px){
    .price-service-fees .price-dt {
        white-space: nowrap;
        font-size:14px;
        text-align: center;
    }
    .price-service-fees{
        gap: 4px;
    }
    .font-price-short {
        font-size: 22px;
    }
    .price-option-value{
        font-size: 12px;
    }
    .price-option{
        display: grid;
        gap: 4px;
        grid-template-columns: 100%;
        align-items: stretch;
    }
    .price-option dt:nth-child(1){
        padding: 10px;
    }
    .price-dt-option {
        font-size:16px;
    }
    .price-option .price-dd,.price-service-fees .price-dd{
        padding: 4px 15px;
    }
    .price-option-name {
        font-size: 14px;
    }
    .price-service-fees .price-option-name {
        align-items: baseline;
    }
    .price-other {
        display: grid;
        gap: 4px 0;
        grid-template-columns: 100%;
        align-items: stretch;
        margin-top: 4px;
    }
    .price-other dt:nth-child(1){
        padding: 10px;
    }
    .price-other .price-dd,.price-service-fees .price-dd{
        padding: 12px 15px;
    }
    .price-other-name {
        font-size: 14px;
    }
    .price-service-fees .price-other-name {
        align-items: baseline;
    }
    .ticket-title h3 {
        color: var(--border-gym);
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }
    .ticket-title p {
        font-size: 14px;
    }
    
    .ticket-info-fees {
        display: grid;
        gap: 4px;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
    .ticket-info-fees .price-dt:nth-of-type(1),
    .ticket-info-fees .price-dt:nth-of-type(2),
    .ticket-info-fees .price-dt:nth-of-type(3),
    .ticket-info-fees .price-dd:nth-of-type(1),
    .ticket-info-fees dd.price-dd:nth-of-type(4) {
        grid-column: span 2;
    }
    .ticket-info-fees .price-dt {
        padding: 10px 0;
    }
    .ticket-bundle .count-bundle {
        position: relative;
        padding: 15px 0px;
    }
    .ticket-discount {
        position: absolute;
        margin: 0px 5px 10px;
        padding: 5px 0px;
        border-radius: 50px;
        background-color: #ffce2d;
        text-align: center;
        font-weight: 600;
        top: -25px;
    }
    .ticket-count {
        font-size: 18px;
        font-weight: 700;
    }
    .ticket-price {
        display: flex    ;
        flex-direction: column;
        align-items: center;
        font-size: 24px;
    }
    .incl-tax-price {
        font-size: 12px;
        color: #8C8C8C;
        margin-top: -4px;
        margin-bottom: 4px;
        font-weight: normal;
    }
    .notice-price {
        margin: 15px 25px;
        font-size: 13px;
    }
    .sp-br {
        display: block;
    }
}
@media screen and (max-width:548px){
    .en-mark {
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    .ticket-bundle__count {
        font-size: 14px;
    }
    .ticket-bundle .count-bundle {
        padding: 15px 0px 10px;
    }
    .xcl-tax-price span {
        font-size: 12px;
    }
    .ticket-discount {
        font-size: 14px;
    }
    p.personal-notice__description {
        font-size: 12px;
    }
    .personal-plan {
        grid-template-columns: 22% 5% 35% 35%;
    }
    .personal-plan__title,
    .personal-plan__title02 {
        padding: 10px 0px 15px;
        font-size: 14px;
    }
    .personal-plan__price {
        padding: 15px 0px;
        flex-direction: column;
        font-size: 16px;
        line-height: 1.2;
    }
    .available_title {
        font-size: 12px;
    }
    .ticket-info-fees .xcl-tax-price {
        font-size: 20px;
    }
    .personal-plan__count {
        font-size: 18px;
    }
    .personal-plan__count span {
        font-size: 12px;
    }
    .personal-plan__date {
        font-size: 15px;
    }
    .personal-plan__date span {
        font-size: 9px;
    }
    .personal-notice {
        border: 3px solid var(--border-personal);
        margin: 50px auto 10px;
        position: relative;
        padding: 20px 10px 20px;
    }
    .notice {
        font-size: 12px;
    }
}
@media screen and (max-width:435px){
    .ticket-bundle .count-bundle {
        padding: 15px 0px 10px;
    }
    .personal-count-price {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}

/*---------- 新規入会ボタン ----------*/
.new-membership {
    background: var(--border-gym);
    width: 80%;
    margin: 60px auto 120px;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}
.membership-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
@media screen and (max-width:768px){
    .new-membership {
        width: 100%;
        margin: 30px auto 100px;
    }
    .membership-link {
        font-size: 16px;
    }    
}


