/*
 * Private Fit v2 Style
 * 既存スタイルを上書きする新しいCSS
 */

/* ========================================
   トップページ ヒーローセクション
======================================== */

/* ボタンエリア */
.inner_content_buttons {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 2.5em;
}

.inner_content_buttons a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.inner_content_buttons a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.inner_content_buttons img {
    height: 3.5em;
    width: auto;
}

/* ========================================
   プライベートフィットの魅力
======================================== */
.v2-charm {
    padding: 5em 2%;
    overflow: visible;
}

.v2-charm__inner {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.v2-charm__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 2em;
    color: #fff;
}

.v2-charm__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3em 2em;
    justify-content: center;
    padding: 1em;
}

.v2-charm__item {
    width: calc(50% - 1em);
    overflow: visible;
    position: relative;
}

.v2-charm__item--center {
    width: calc(50% - 1em);
}

.v2-charm__img {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
}

.v2-charm__img:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.v2-charm__img > img:not(.v2-charm__number) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-charm__number {
    position: absolute;
    top: -1.5em;
    z-index: 2;
    width: 3.5em;
    height: auto;
}

.v2-charm__text {
    background: #272727;
    padding: 1.5em;
    min-height: 10em;
    display: flex;
    flex-direction: column;
}

.v2-charm__text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #fff;
}

.v2-charm__text p {
    font-size: 13px;
    line-height: 1.8;
    color: #ccc;
}

/* ========================================
   スマホ対応
======================================== */
@media only screen and (max-width: 780px) {
    .inner_content_buttons {
        flex-direction: column;
        gap: 1em;
        margin-top: 1.5em;
        padding: 0 2%;
    }

    .inner_content_buttons img {
        height: 3em;
        width: 100%;
        max-width: 280px;
    }

    /* プライベートフィットの魅力 SP */
    .v2-charm {
        padding: 3em 2%;
    }

    .v2-charm__title {
        font-size: 20px;
        margin-bottom: 1.5em;
    }

    .v2-charm__grid {
        gap: 1.5em;
    }

    .v2-charm__item,
    .v2-charm__item--center {
        width: 100%;
    }

    .v2-charm__number {
        width: 2.5em;
        top: -0.3em;
        left: -0.3em;
    }

    .v2-charm__text {
        padding: 1em;
        min-height: auto;
    }

    .v2-charm__text h3 {
        font-size: 16px;
    }

    .v2-charm__text p {
        font-size: 12px;
    }

    /* 料金プラン SP */
    .v2-plan__inner {
        padding: 3em 4%;
    }

    .v2-plan__title {
        font-size: 24px;
    }

    .v2-plan__subtitle {
        font-size: 18px;
    }

    .v2-plan__hours table {
        font-size: 12px;
    }

    /* 施設紹介・スタッフ紹介バナー SP */
    .v2-banners__item {
        height: 10em;
    }

    .v2-banners__title {
        font-size: 20px;
    }
}

/* ========================================
   料金プランセクション
======================================== */
.v2-plan {
    padding: 0 2%;
    margin-bottom: 2em;
}

.v2-plan__inner {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5em 4%;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: url(/wp-content/themes/privatefit/img/004.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    transition: opacity 0.3s ease;
}

.v2-plan__inner:hover {
    opacity: 0.9;
}

.v2-plan__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.v2-plan__inner:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.v2-plan__inner > * {
    position: relative;
    z-index: 1;
}

.v2-plan__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1em;
}

.v2-plan__subtitle {
    font-size: 24px;
    margin-bottom: 1.5em;
}

.v2-plan__hours {
    display: inline-block;
}

.v2-plan__hours table {
    font-size: 14px;
    text-align: left;
    border-collapse: collapse;
}

.v2-plan__hours td {
    padding: 0.3em 0.5em;
}

.v2-plan__hours tr td:first-child {
    text-align: right;
    padding-right: 1em;
}

/* ========================================
   施設紹介・スタッフ紹介バナー
======================================== */
.v2-banners {
    padding: 0 2%;
}

.v2-banners__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.v2-banners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20em;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    margin-bottom: 2em;
}

.v2-banners__item:last-child {
    margin-bottom: 0;
}

.v2-banners__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.v2-banners__item:hover .v2-banners__overlay {
    background: rgba(0, 0, 0, 0.2);
}

.v2-banners__title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* CUSTOM CSS */
body {
    line-height: 1.7;
}
.v2-tp_mainh2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1.5em;
}
.center {
    text-align: center;
}
.tp_blog {
    margin: 80px 0;
}
.tp_blog__main {
    margin-bottom: 2em;
}
.tp_news {
    background: #272727;
    margin-bottom: 0;
}
.tp_news .v2-tp_mainh2 {
    margin-bottom: 2em;
}
.tp_news_flex_main_flex_day {
    color: #4860FD;
}

/* ========================================
   フッター v2
======================================== */
.v2-footer {
    background: #000;
    padding: 3em 2% 0;
}

.v2-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3em;
}

.v2-footer__info {
    flex: 0 0 35%;
}

.v2-footer__logo {
    margin-bottom: 1.5em;
}

.v2-footer__logo img {
    height: 3em;
}

.v2-footer__details {
    margin-bottom: 2em;
}

.v2-footer__name {
    font-size: 14px;
    margin-bottom: 0.5em;
}

.v2-footer__address {
    font-size: 13px;
    margin-bottom: 0.3em;
}

.v2-footer__tel {
    font-size: 13px;
}

.v2-footer__tel a {
    color: #fff;
}

.v2-footer__menu {
    font-size: 13px;
}

.v2-footer__menu a {
    color: #fff;
}

.v2-footer__menu a:hover {
    text-decoration: underline;
}

.v2-footer__divider {
    margin: 0 1em;
}

.v2-footer__map {
    flex: 0 0 60%;
    min-height: 300px;
}

.v2-footer__map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.v2-footer__copy {
    text-align: center;
    font-size: 11px;
    color: #fff;
    padding: 1em 0;
    margin-top: 5em;
    border-top: solid 1px #2054A5;
}

/* フッター SP */
@media only screen and (max-width: 780px) {
    .v2-footer__inner {
        flex-direction: column;
        gap: 2em;
    }

    .v2-footer__map {
        min-height: 200px;
    }

    .v2-footer__map iframe {
        min-height: 200px;
    }

    .v2-footer__logo img {
        height: 2.5em;
    }

    .v2-footer__menu {
        font-size: 12px;
    }

    .v2-footer__divider {
        margin: 0 0.5em;
    }
}

/* ========================================
   料金プラン詳細ページ (overview)
======================================== */
.v2-rateplan {
    background: #272727;
    padding: 5em 2%;
}

.v2-rateplan__inner {
    max-width: 900px;
    margin: 0 auto;
}

.v2-rateplan__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5em;
}

.v2-rateplan__title span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0.3em;
    letter-spacing: 0.1em;
}

.v2-rateplan__banner {
    margin-bottom: 2em;
}

.v2-rateplan__banner img {
    width: 100%;
    height: auto;
}

.v2-rateplan__desc {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 3em;
    text-align: justify;
}

/* 月会費テーブル */
.v2-rateplan__table {
    background: #fff;
    margin-bottom: 2em;
}

.v2-rateplan__table-header {
    background: #1A2569;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 0.8em;
}

.v2-rateplan__row {
    display: flex;
    border-bottom: solid 1px #ddd;
    background: #EFF4FC;
}

.v2-rateplan__row:nth-child(odd) {
    background: #E6E8F4;
}

.v2-rateplan__row:last-child {
    border-bottom: none;
}

.v2-rateplan__row-title {
    width: 25%;
    padding: 1.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    border-right: solid 1px #ddd;
}

.v2-rateplan__crown {
    width: 1.5em;
    height: auto;
}

.v2-rateplan__row-content {
    width: 75%;
    padding: 1.5em;
    color: #000;
}

.v2-rateplan__price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.v2-rateplan__price--premium {
    color: #4860FD;
}

.v2-rateplan__price--day {
    color: #2054A5;
}

.v2-rateplan__price--night {
    color: #1A2569;
}

.v2-rateplan__detail {
    font-size: 12px;
    line-height: 1.8;
}

/* その他料金 */
.v2-rateplan__other {
    background: transparent;
    margin-bottom: 3em;
    border-top: solid 1px #fff;
}

.v2-rateplan__other-row {
    display: flex;
    border-bottom: solid 1px #fff;
    padding: 1em 1.5em;
}

.v2-rateplan__other-title {
    width: 40%;
    font-size: 14px;
    color: #fff;
}

.v2-rateplan__other-content {
    width: 60%;
    font-size: 14px;
    color: #fff;
}

/* 体験案内 */
.v2-rateplan__trial {
    border: solid 1px #fff;
    padding: 2em;
    text-align: center;
}

.v2-rateplan__trial h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1em;
}

.v2-rateplan__trial p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.v2-rateplan__trial-btn {
    display: inline-block;
    padding: 0.8em 3em;
    background: #fff;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
}

.v2-rateplan__trial-btn:hover {
    background: #000;
    color: #fff;
}

/* 料金プラン SP */
@media only screen and (max-width: 780px) {
    .v2-rateplan {
        padding: 3em 2%;
    }

    .v2-rateplan__title {
        font-size: 24px;
    }

    .v2-rateplan__desc {
        font-size: 12px;
    }

    .v2-rateplan__row {
        flex-direction: column;
    }

    .v2-rateplan__row-title {
        width: 100%;
        border-right: none;
        border-bottom: solid 1px #ddd;
        padding: 1em;
    }

    .v2-rateplan__row-content {
        width: 100%;
        padding: 1em;
    }

    .v2-rateplan__other-row {
        flex-direction: column;
        gap: 0.5em;
    }

    .v2-rateplan__other-title,
    .v2-rateplan__other-content {
        width: 100%;
    }

    .v2-rateplan__trial {
        padding: 1.5em;
    }

    .v2-rateplan__trial h3 {
        font-size: 16px;
    }

    .v2-rateplan__trial p {
        font-size: 12px;
    }
}

/* ========================================
   セミパーソナルトレーニング (overview)
======================================== */
.v2-semipersonal {
    background: #000;
    padding: 5em 2%;
}

.v2-semipersonal__inner {
    max-width: 900px;
    margin: 0 auto;
}

.v2-semipersonal__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5em;
}

.v2-semipersonal__title span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0.3em;
    letter-spacing: 0.1em;
}

.v2-semipersonal__desc {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 3em;
}

/* セミパーソナルテーブル */
.v2-semipersonal__table {
    background: #fff;
}

.v2-semipersonal__table-header {
    background: #1A2569;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 0.8em;
}

.v2-semipersonal__row {
    display: flex;
    border-bottom: solid 1px #ddd;
}

.v2-semipersonal__row-title {
    width: 25%;
    padding: 1.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #2054A5;
    border-right: solid 1px #ddd;
    line-height: 1.5;
}

.v2-semipersonal__row-content {
    width: 75%;
    padding: 1.5em;
    color: #000;
}

.v2-semipersonal__price {
    font-size: 18px;
    font-weight: 700;
    color: #2054A5;
    margin-bottom: 0.5em;
}

.v2-semipersonal__detail {
    font-size: 12px;
    line-height: 1.8;
}

/* セミパーソナル SP */
@media only screen and (max-width: 780px) {
    .v2-semipersonal {
        padding: 3em 2%;
    }

    .v2-semipersonal__title {
        font-size: 24px;
    }

    .v2-semipersonal__desc {
        font-size: 12px;
    }

    .v2-semipersonal__row {
        flex-direction: column;
    }

    .v2-semipersonal__row-title {
        width: 100%;
        border-right: none;
        border-bottom: solid 1px #ddd;
        padding: 1em;
    }

    .v2-semipersonal__row-content {
        width: 100%;
        padding: 1em;
    }
}

/* ========================================
   ウエディングプラン (overview)
======================================== */
.v2-wedding {
    background: #272727;
    padding: 5em 2%;
}

.v2-wedding__inner {
    max-width: 900px;
    margin: 0 auto;
}

.v2-wedding__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5em;
}

.v2-wedding__title span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0.3em;
    letter-spacing: 0.1em;
}

.v2-wedding__desc {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 3em;
}

/* ウエディングテーブル */
.v2-wedding__table {
    background: #fff;
    margin-bottom: 2em;
}

.v2-wedding__table-header {
    background: #1A2569;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 0.8em;
}

.v2-wedding__row {
    display: flex;
    border-bottom: solid 1px #ddd;
}

.v2-wedding__row:last-child {
    border-bottom: none;
}

.v2-wedding__row-title {
    width: 25%;
    padding: 1.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    border-right: solid 1px #ddd;
    line-height: 1.5;
}

.v2-wedding__row-title--blue {
    color: #2054A5;
}

.v2-wedding__row-title--navy {
    color: #1A2569;
}

.v2-wedding__row-content {
    width: 75%;
    padding: 1.5em;
    color: #000;
}

.v2-wedding__price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.v2-wedding__price--blue {
    color: #2054A5;
}

.v2-wedding__price--navy {
    color: #1A2569;
}

.v2-wedding__detail {
    font-size: 12px;
    line-height: 1.8;
}

/* ウエディング SP */
@media only screen and (max-width: 780px) {
    .v2-wedding {
        padding: 3em 2%;
    }

    .v2-wedding__title {
        font-size: 24px;
    }

    .v2-wedding__desc {
        font-size: 12px;
    }

    .v2-wedding__row {
        flex-direction: column;
    }

    .v2-wedding__row-title {
        width: 100%;
        border-right: none;
        border-bottom: solid 1px #ddd;
        padding: 1em;
    }

    .v2-wedding__row-content {
        width: 100%;
        padding: 1em;
    }
}

/* ========================================
   法人料金プラン タイトル
======================================== */
.v2-corporate__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5em;
}

.v2-corporate__title span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 0.3em;
    letter-spacing: 0.1em;
}

@media only screen and (max-width: 780px) {
    .v2-corporate__title {
        font-size: 24px;
    }
}

.corporate {
    padding-bottom: 0em;
}
.corporate__hozinmerit {
    background: #0F163F;
}
.corporate__main--h2 {
    color: #fff;
}
.corporate__main--h2 span {
    font-size: 1.4em;
    margin: 0 0.2em;
}
.corporate__main--h2:after {
    background: #fff;
}
.corporate__merit--content.flex_4culm {
    background: #fff;
    color: #000;
}
.corporate__plan {
    padding-bottom: 4em;
}

/* 法人プラン CTAボタン */
.v2-corporate__cta {
    text-align: center;
    margin-top: 2em;
}

.v2-corporate__cta-btn {
    display: inline-block;
    background: #fff;
    color: #2054A5 !important;
    border: solid 2px #2054A5;
    padding: 1em 4em;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.v2-corporate__cta-btn:hover {
    background: #2054A5;
    color: #fff !important;
}

/* ========================================
   スタッフカード (staff)
======================================== */
.low_black {
    background: #000;
    padding: 4em 2%;
}

.v2-staff-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4em;
    align-items: flex-start;
}

.v2-staff-card:last-child {
    margin-bottom: 0;
}

.v2-staff-card__img {
    flex: 0 0 30%;
    max-width: 30%;
}

.v2-staff-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v2-staff-card__content {
    flex: 1;
    padding-left: 5em;
}

.v2-staff-card__name {
    font-size: 24px;
    font-weight: 700;
    color: #4860FD;
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
    border-bottom: solid 1px #000;
}

.v2-staff-card__info {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.v2-staff-card__row {
    display: flex;
    gap: 2em;
}

.v2-staff-card__label {
    flex: 0 0 120px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.v2-staff-card__value {
    flex: 1;
    font-size: 13px;
    line-height: 1.8;
}
.ft_floating__cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}
.ft_floating__cta img {
    height: 3.5em;
}

/* スタッフカード SP */
@media only screen and (max-width: 780px) {
    .low_black {
        padding: 2em 2%;
    }

    .v2-staff-card {
        flex-direction: column;
    }

    .v2-staff-card__img {
        flex: none;
        max-width: 100%;
    }

    .v2-staff-card__img img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .v2-staff-card__content {
        padding: 1.5em;
    }

    .v2-staff-card__name {
        font-size: 18px;
    }

    .v2-staff-card__row {
        flex-direction: column;
        gap: 0.3em;
    }

    .v2-staff-card__label {
        flex: none;
        font-size: 12px;
        color: #888;
    }

    .v2-staff-card__value {
        font-size: 12px;
	}
	.header_menu_cago {
		right: 4em;
	}
	.ft_floating__cta {
		bottom: 20px;
		right: 0;
		text-align: center;
		width: 100%;
	}
	.ft_floating__cta img {
		height: auto;
		width: 90%;
		max-width: 300px;
	}
}

/* フォーム関連 */
.form-container {
    font-size: 14px;
    line-height: 1.6;
}
.form-description {
    text-align: center;
    margin-bottom: 50px;
    font-size: 14px;
}
.form-row {
    display: flex;
    border-bottom: 1px solid #ddd;
    min-height: 60px;
}
.form-row:first-child {
    border-top: 1px solid #ddd;
}
.form-label {
    width: 250px;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    font-weight: bold;
    position: relative;
}
.form-input {
    flex: 1;
    padding: 30px 15px;
}
.required {
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 15px;
    font-weight: normal;
}
.form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}
.form-example {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
}
.form-note {
    font-size: 12px;
    color: #fff;
    margin-bottom: 8px;
}
.textarea-large {
    min-height: 120px;
    resize: vertical;
}
.policy-section {
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
}
.policy-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.policy-text {
    margin-bottom: 25px;
    font-size: 13px;
}
.policy-link {
    text-decoration: underline;
    font-size: 13px;
    display: block;
    margin-bottom: 40px;
    color: #fff!important;
}
.policy-link:hover {
    text-decoration: underline;
}
.checkbox-wrapper {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
}
.checkbox-wrapper .required {
    margin-right: 8px;
    margin-left: 0;
}
.checkbox-wrapper input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 2px;
}
.checkbox-wrapper label {
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
    font-weight: unset;
}
.form-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-buttons input.btn-primary {
    padding: 0.8em 5em;
    font-size: 13px;
    display: inline-block;
    margin-top: 1em;
    background: #1e4d9c;
    border: solid 1px #1e4d9c;
    color: #fff;
    cursor: pointer;
}
.form-buttons input.btn-secondary {
    order: -1;
    padding: 0.8em 5em;
    font-size: 13px;
    display: inline-block;
    margin-top: 1em;
    background: #9e9e9e;
    border: solid 1px #9e9e9e;
    color: #fff;
    cursor: pointer;
}
.btn-primary:hover {
    background: #0056b3;
}
.btn-secondary {
    background: #6c757d;
    color: #fff;
}
.btn-secondary:hover {
    background: #545b62;
}
.form-thanks {
    text-align: center;
    border: solid 1px #000;
    padding: 4em;
    font-size: 14px;
}
.form-thanks h4 {
    font-size: 18px;
    margin-bottom: 1em;
}
.form-thanks p {
    margin-bottom: 1.5em;
}
.form-thanks p:last-child {
    margin-bottom: 0;
}
.form-thanks p a {
    text-decoration: underline;
}
@media (max-width: 768px) {
	.form-description {
		margin-bottom: 35px;
		font-size: 13px;
	}
	.form-container {
		font-size: 13px;
	}
	.form-row {
		flex-direction: column;
		min-height: auto;
	}
	.form-input {
		padding: 15px 0 20px;
	}
	.form-label {
		width: 100%;
		border-right: none;
		padding: 15px 0 0;
	}
	.policy-section {
		padding: 0px 0;
	}
	.checkbox-wrapper .required {
		white-space: nowrap;
	}
	.form-thanks {
		padding: 4em 20px;
		font-size: 13px;
	}
    .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
        padding: 15px;
    }
	.service_activities__qa--q {
		font-size: 13px;
		gap: 20px;
	}
	.service_activities__qa--a {
		font-size: 11px;
		gap: 20px;
		margin-top: 10px;
	}
}
