/*
Theme Name: タクシー買取センター
Author: --
Description: タクシー買取センターのオリジナルテーマです。
Version: 1.0
*/
/* 基本設定 */
html {
    scroll-behavior: smooth;
    font-size: 10px;
}
@media (max-width: 1280px) {
    html {
        font-size: 0.78125vw;
    }
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* 変数 */
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-blue: #165AA8;
}

/* 汎用クラス */
a {
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
}
.container {
    width: 108rem;
    margin-left: auto;
    margin-right: auto;
}
.child_sec__sub-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 0.1rem;
}
.child_sec__title {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}


/* ヘッダー */
.header {
    position: relative;
    overflow: hidden;
}
.header-wrapper {
    position: absolute;
    width: 100%;
    top: 2rem;
    left: 0;
    z-index: 10;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo__image {
    width: 17rem;
}

.header-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-nav__list {
    display: flex;
    list-style: none;
    gap: 6rem;
}

.header-nav__list--main {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    overflow: hidden;
    padding: 1rem 5rem;
}

.header-nav__list--contact {
    margin-left: 2rem;
}

.header-nav__link {
    display: block;
    text-decoration: none;
    font-weight: 700;
    height: 100%;
    box-sizing: border-box;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    white-space: nowrap;
}

.header-nav__link--primary {
    color: var(--color-black);
}

.header-nav__link--secondary {
    color: var(--color-white);
    background-color: var(--color-blue);
    border-radius: 3rem;
    padding: 1rem 3.5rem;
}

/* フッター */

.footer {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 8.0rem 0 2.0rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5.0rem;
}

.footer-info {
    flex-basis: 50%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 3.0rem;
}
.footer-logo__image {
    width: 17rem;
    height: auto;
    filter: brightness(0) invert(1);
}
.footer-company-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.footer-address-zip,
.footer-address,
.footer-tel {
    font-size: 1.6rem;
    font-weight: 500;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    flex-basis: 50%;
    text-align: right;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-nav__item {
    margin-bottom: 1.5rem;
}
.footer-nav__link {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
}
.footer-privacy-link {
    margin-top: 3rem;
    font-size: 1.6rem;
    text-decoration: underline;
    letter-spacing: 0.1rem;
}
.footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    padding-top: 1.0rem;
}

/* トップページ */
.top-fv {
    position: relative;
    background: url('./images/top-fv__bg.jpg') no-repeat center center/cover;
    min-height: 60.0rem;
    color: var(--color-white);
    overflow: hidden;
}
.top-fv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--color-black);
    clip-path: circle(75% at 0% 50%);
    opacity: 0.6;
}
.top-fv__inner {
    position: relative;
    z-index: 1;
    padding: 20rem 0 14rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-fv__image {
    width: 17rem;
    height: auto;
    margin-bottom: 1.5rem;
}
.top-fv__title {
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.8);
}
.top-fv__text {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 3.0rem;
}
.top-fv__button {
    display: inline-block;
    padding: 1.5rem 1rem;
    background-color: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: 900;
    border-radius: 5rem;
    letter-spacing: 0.6rem;
    width: 42rem;
    text-align: center;
    border: 0.4rem solid #fff;
    filter: drop-shadow(0.7rem 1rem 0.7rem rgba(0,0,0,0.5));
    transform: translateZ(0);
}

.top-point {
    padding: 10rem 0;
    background-color: var(--color-white);
    background-image: linear-gradient(to bottom, var(--color-blue) 0rem, var(--color-white) 3rem);
}

.top-point__inner {
    max-width: 120.0rem;
    margin: 0 auto;
}

.top-point__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5rem 0;
}
.top-point__item:nth-child(2n) {
    flex-direction: row-reverse;
}

.top-point__content {
    flex-basis: 58rem;
}

.top-point__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 1rem;
    line-height: 1;
}
.top-point__title {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--color-blue);
    letter-spacing: 0.2rem;
    border-bottom: 0.2rem solid var(--color-blue);
    padding-bottom: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}
.top-point__text {
    font-size: 1.4rem;
    line-height: 1.8;
}
.top-point__image-area {
    flex-basis: 36rem;
    flex-shrink: 0;
}
.top-point__image {
    width: 100%;
}

.top-sec__title {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}
.top-sec__sub-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 0.1rem;
}

.top-sales {
    background-color: var(--color-blue);
    padding-bottom: 8.0rem;
}

.top-sales__header {
    padding: 8.0rem 0 5.0rem;
    text-align: center;
    color: var(--color-white);
}
.top-sales__list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 9rem;
}

.top-sales__card {
    display: block;
    text-decoration: none;
    background-color: var(--color-white);
    padding: 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 1.0rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 0 1 30%;
}

.top-sales__card-image-area {
    width: 100%;
    height: 24rem;
    overflow: hidden;
}

.top-sales__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-sales__card-body {
    padding: 1rem 0 2rem;
    color: var(--color-black);
}
.top-sales__card-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.top-sales__card-detail {
    display: block;
    text-align: right;
}

.top-sales__card-spec {
    font-size: 1.4rem;
    font-weight: 700;
}
.top-sales__card-spec span {
    display: inline-block;
    margin-left: 1rem;
    width: 7rem;
}
.top-sales__button {
    display: block;
    padding: 1.2rem 1.0rem;
    background-color: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 5.0rem;
    letter-spacing: 0.4rem;
    width: 30rem;
    text-align: center;
    margin: 0 auto;
    border: 0.2rem solid var(--color-white);
    box-shadow: 0 0.5rem 1.0rem rgba(0, 0, 0, 0.1);
}

.top-flow {
    background: url('./images/top-flow__bg.jpg') no-repeat center center/cover;
    padding: 6rem 0 10rem;
}

.top-flow__header {
    padding: 8.0rem 0 5.0rem;
    text-align: center;
    color: var(--color-white);
}
.top-flow__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 3rem;
    padding: 6rem 3.5rem 6rem 5rem;
}
.top-flow__item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}
.top-flow__step-image-area {
    flex-basis: 37.6rem;
    flex-shrink: 0;
    margin-right: 3.0rem;
}
.top-flow__step-image {
    width: 100%;
    height: auto;
}
.top-flow__text {
    font-size: 1.6rem;
    line-height: 1.6;
}
.top-flow__arrow {
    position: relative;
    width: 100%;
}
.top-flow__arrow::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 16.8rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid transparent;
    border-top: 1.8rem solid var(--color-blue);
}

.top-contact {
    background: linear-gradient(to bottom, rgba(22,90,168,0.1) 0%, rgba(22,90,168,0.5) 100%);
    padding: 8rem 0 10rem;
}
.top-contact__header {
    text-align: center;
    margin-bottom: 6.0rem;
}
.top-contact__list {
    display: flex;
    justify-content: center;
    gap: 3.0rem;
}
.top-contact__item {
    width: 40rem;
}
.top-contact__balloon {
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.0rem 2.0rem;
    border-radius: 5rem;
    position: relative;
    width: 100%;
    text-align: center;
}
.top-contact__balloon--line {
    border: 0.4rem solid #00c300;
}
.top-contact__balloon--tel {
    border: 0.4rem solid var(--color-blue);
}
.top-contact__arrow {
    width: 4.2rem;
    margin: 1.5rem auto;
}
.top-contact__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20rem;
    border-radius: 2rem;
    color: var(--color-white);
    font-weight: 700;
    box-shadow: 0 0.7rem 1.0rem rgba(0, 0, 0, 0.3);
}
.top-contact__button--line {
    background-color: #00c300;
}
.top-contact__button-text {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}
.top-contact__button--tel {
    background-color: #104a8e;
}
.top-contact__number {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}
.top-contact__icon {
    height: 5rem;
}


.top-faq {
    background-color: #F0F7FF;
    padding: 8rem 0 10rem;
}
.top-faq__header {
    text-align: center;
    margin-bottom: 8rem;
}
.top-faq__item {
    border-bottom: 0.1rem solid var(--color-black);
}
.top-faq__item:first-child {
    border-top: 0.1rem solid var(--color-black);
}
.top-faq__question {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-top: 3rem;
    font-size: 2rem;
    font-weight: 700;
}
.top-faq__question::after {
    content: '';
    margin-left: auto;
    margin-top: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-style: solid;
    border-color: var(--color-black);
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.top-faq__item--open .top-faq__question {
    padding-bottom: 3rem;
}
.top-faq__item--open .top-faq__question::after {
    transform: rotate(-135deg);
    margin-top: 1rem;
}
.top-faq__q-mark {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-blue);
    margin-right: 1rem;
    line-height: 1;
    display: flex;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.3rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.top-faq__q-text {
    line-height: 1.5;
}
.top-faq__answer-wrap {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: 0.3s ease-out;
    padding-bottom: 3rem;
}
.top-faq__item--open .top-faq__answer-wrap {
    height: auto;
    opacity: 1;
}
.top-faq__answer {
    display: flex;
}
.top-faq__a-mark {
    font-size: 2rem;
    font-weight: 700;
    background-color: var(--color-white);
    color: var(--color-blue);
    margin-right: 1rem;
    line-height: 1;
    display: flex;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 0.1rem solid #ddd;
    flex-shrink: 0;
}
.top-faq__a-text {
    font-size: 2rem;
    line-height: 1.5;
}

:root {
    --color-black: #000;
    --color-white: #fff;
    --color-blue: #165AA8;
}

.top-news {
    background-color: var(--color-white);
    padding: 8.0rem 0 10.0rem;
}

.top-news__header {
    text-align: center;
    margin-bottom: 5.0rem;
}

.top-news__sub-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
}

.top-news__title {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.2rem;
}

.top-news__list {
    display: flex;
    justify-content: center;
    gap: 3.0rem;
    margin-bottom: 6.0rem;
}

.top-news__card {
    display: block;
    text-decoration: none;
    background-color: var(--color-white);
    border-radius: 1.0rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 0 1 30%;
    color: var(--color-black);
}

.top-news__card-image-area {
    border-radius: 1.0rem 1.0rem 0 0;
    height: 18rem;
    overflow: hidden;
    position: relative;
}

.top-news__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-news__card-body {
    padding: 2.0rem 2.5rem;
    min-height: 17.0rem;
    display: flex;
    flex-direction: column;
}

.top-news__card-date {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1.0rem;
}

.top-news__card-text {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.top-news__card-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 0.3rem 1.0rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin-top: auto;
}

.top-news__button {
    display: block;
    padding: 1.2rem 1.0rem;
    color: var(--color-blue);
    background-color: var(--color-white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 5.0rem;
    letter-spacing: 0.3rem;
    width: 30rem;
    text-align: center;
    margin: 0 auto;
    border: 0.2rem solid var(--color-blue);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* 店舗情報 */
.child_about-fv {
    background: url('./images/child_about-fv__bg.jpg') no-repeat center center/cover;
    padding: 26rem 0 20rem;
}
.child_about-fv__inner {
    text-align: center;
    color: var(--color-white);
}
.child_about-sec__sub-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 0.1rem;
}
.child_about-sec__title {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}
.child_about-info {
    padding: 16rem 0 10rem;
}
.child_about-info__table {
    width: 100%;
    margin-bottom: 6rem;
}
.child_about-info__table th,
.child_about-info__table td {
    text-align: left;
    font-size: 2rem;
    padding: 2rem 0;
}
.child_about-info__table th {
    font-weight: 700;
    width: 20rem;
}
.child_about-info__table td {
    font-weight: 500;
}
.gmap iframe {
    width: 100%;
}
.child_about-contact {
    background-color: #F0F0F0;
    padding: 16rem 0;
}
.child_about-contact__header {
    text-align: center;
}
.child_about-contact__list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 8rem;
}
.child_about-contact__item {
    flex-grow: 1;
}
.child_about-contact__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10rem;
    border-radius: 2rem;
    color: var(--color-white);
    font-weight: 700;
    box-shadow: 0 0.7rem 1.0rem rgba(0, 0, 0, 0.3);
}
.child_about-contact__button--line {
    background-color: #00c300;
}
.child_about-contact__button--tel {
    background-color: #104a8e;
}
.child_about-contact__button-text, .child_about-contact__number {
    font-size: 2.4rem;
    margin-right: 1.5rem;
}
.child_about-contact__icon {
    height: 4rem;
}

/* 在庫車両 */
.child_sales-fv {
    background: url('./images/child_sales-fv__bg.jpg') no-repeat center center/cover;
    padding: 26rem 0 20rem;
}
.child_sales-fv__inner {
    text-align: center;
    color: var(--color-white);
}
.child_sales-sec__sub-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 0.1rem;
}
.child_sales-sec__title {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}

.child_sales-container {
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, var(--color-blue) 0%, var(--color-blue) 50%, var(--color-white) 50%, var(--color-white) 100%);
}
.child_sales-sub {
    flex-basis: 36rem;
    width: 36rem;
    padding: 8rem 4rem;
    background-color: var(--color-blue);
}
.child_sales-main {
    flex-basis: 92rem;
    width: 92rem;
    padding: 8rem 5rem;
    background-color: var(--color-white);
}
.child_sales-content__text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}
.child_sales-controls__item {
    margin-bottom: 2rem;
}
.child_sales-controls__label {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.8rem;
}
.child_sales-controls__select,
.child_sales-controls__input {
    width: 100%;
    height: 4.5rem;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    border: none;
    border-radius: 0.5rem;
    box-sizing: border-box;
}
.child_sales-controls__select {
    appearance: none;
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000' d='M6 8L0 2L1.4 0.6L6 5.2L10.6 0.6L12 2L6 8Z'/%3E%3C/svg%3E") no-repeat center right 1.5rem;
    background-size: 1.2rem;
}
.child_sales-controls__submit-button {
	width: 100%;
	padding: 1rem;
	font-size: 1.4rem;
	background-color: #fff;
	border-radius: 0.5rem;
	border: none;
	cursor: pointer;
}
.child_sales-controls__year-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.child_sales-controls__year-range span {
    color: var(--color-white);
    font-size: 1.6rem;
    padding: 0 0.5rem;
}
.child_sales-controls__keyword-group {
    position: relative;
}
.child_sales-controls__submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    border: none;
    background: #eee url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") no-repeat center center;
    background-size: 2rem;
    cursor: pointer;
    border-radius: 0 0.5rem 0.5rem 0;
}
.child_sales-controls__input {
    padding-right: 5rem;
}
.child_sales-content__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}
.child_sales-card {
    display: block;
    text-decoration: none;
    background-color: var(--color-white);
    border-radius: 0.8rem;
    box-shadow: 0 0.5rem 1.0rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.child_sales-card__image-area {
    width: 100%;
    height: 18rem;
    overflow: hidden;
}
.child_sales-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.child_sales-card__body {
    padding: 1rem;
    color: var(--color-black);
}
.child_sales-card__name {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.child_sales-card__detail {
    display: block;
    text-align: right;
}
.child_sales-card__spec {
    font-size: 1.3rem;
    font-weight: 700;
}
.child_sales-card__spec span {
    display: inline-block;
    margin-left: 1rem;
    width: 6.5rem;
}
.child_sales-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.child_sales-pagination__link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 4rem;
    height: 4rem;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-blue);
    border-radius: 50%;
}
.child_sales-pagination__link--current {
    background-color: var(--color-blue);
    color: var(--color-white);
    cursor: default;
}
.child_sales-pagination__link--prev,
.child_sales-pagination__link--next {
    border: none;
    padding: 0 1rem;
}
.child_sales-pagination__link--prev:hover,
.child_sales-pagination__link--next:hover {
    background-color: transparent;
    text-decoration: underline;
    opacity: 0.7;
}

/* 車両詳細 */
.child_car-fv {
    background: linear-gradient(to bottom, #092742 0%, #1663A8 100%);
    padding: 15rem 0 9rem;
}
.child_car-fv__inner {
    text-align: center;
    color: var(--color-white);
}
.child_car-sec__title {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}
.breadcrumb {
    padding: 3.5rem 0 2.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-blue);
}
.breadcrumb a {
    text-decoration: none;
    color: var(--color-blue);
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.child_car-content {
    padding: 0 0 10rem;
}
.child_car__title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.child_car__layout {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}
.child_car__gallery {
    flex-basis: 60rem;
    width: 60rem;
    flex-shrink: 0;
}
.child_car__info {
    flex-basis: 44rem;
    width: 44rem;
    flex-shrink: 0;
}
.child_car__gallery-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 1rem;
    aspect-ratio: 4 / 3;
    background-color: #eee;
}
.child_car__gallery-slider {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}
.child_car__gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.child_car__gallery-prev,
.child_car__gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(22, 90, 168, 0.5);
    color: white;
    border: none;
    font-size: 3rem;
    font-weight: 700;
    padding: 4rem 1.5rem;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    opacity: 0.7;
}
.child_car__gallery-prev:hover,
.child_car__gallery-next:hover {
    background-color: rgba(22, 90, 168, 0.8);
    opacity: 1;
}
.child_car__gallery-prev {
    left: 0;
}
.child_car__gallery-next {
    right: 0;
}
.child_car__gallery-prev img,
.child_car__gallery-next img {
    width: 1.4rem;
}
.child_car__gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.child_car__thumb-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 0.2rem solid transparent;
    box-sizing: border-box;
}
.child_car__thumb-item:hover {
    opacity: 1;
}
.child_car__thumb-item.active {
    opacity: 1;
    border-color: var(--color-blue);
}
.child_car__spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0.1rem solid #F0F0F0;
    border-left: 0.1rem solid #F0F0F0;
    margin-bottom: 2.5rem;
}
.child_car__grid-head {
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    text-align: left;
    border-right: 0.1rem solid #F0F0F0;
    border-bottom: 0.1rem solid #F0F0F0;
}
.child_car__grid-cell {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1rem;
    border-right: 0.1rem solid #F0F0F0;
    border-bottom: 0.1rem solid #F0F0F0;
    height: 7rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.child_car__spec-extra {
    margin-bottom: 2rem;
}
.child_car__spec-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}
.child_car__spec-value {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
}
.child_car__price-box {
    margin-bottom: 3rem;
}
.child_car__price-total {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.2rem solid var(--color-black);
    margin-bottom: 1.5rem;
}
.child_car__price-total .child_car__price-label {
    font-size: 1.6rem;
    font-weight: 700;
}
.child_car__price-total .child_car__price-amount {
    text-align: right;
}
.child_car__price-total .child_car__price-value {
    font-size: 4.8rem;
    color: var(--color-black);
}
.child_car__price-breakdown {
    display: flex;
    justify-content: space-between;
}
.child_car__price-item {
    width: 46%;
    display: flex;
    justify-content: space-between;
}
.child_car__price-label {
    font-size: 1.5rem;
    font-weight: 700;
}
.child_car__price-amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}
.child_car__price-breakdown .child_car__price-amount {
    padding-top: 1.3rem;
}
.child_car__price-value {
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--color-black);
    margin-right: 0.5rem;
}
.child_car__price-unit {
    font-size: 1.6rem;
    font-weight: 700;
}
.child_car__contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.child_car__contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    border-radius: 2rem;
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0.7rem 1.0rem rgba(0, 0, 0, 0.3);
}
.child_car__contact-button span {
    font-size: 2.4rem;
    margin-right: 1.5rem;
}
.child_car__contact-button img {
    height: 4rem;
}
.child_car__contact-button--line {
    background-color: #00c300;
}
.child_car__contact-button--tel {
    background-color: #104a8e;
}

/* =======================================
// お知らせ一覧ページ
// ======================================= */
.child_news-fv {
    background: url('./images/child_sales-fv__bg.jpg') no-repeat center center/cover;
    padding: 26rem 0 20rem;
}
.child_news-fv__inner {
    text-align: center;
    color: var(--color-white);
}

.child_news-content {
    padding: 5rem 0 10rem;
}
.child_news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.0rem;
    margin-bottom: 6.0rem;
}
.child_news-content__pagination {
    margin-top: 6rem;
}

/* =======================================
// お知らせ記事ページ
// ======================================= */
.child_article-content {
    padding: 8rem 0 10rem;
    background-color: var(--color-white); /* 記事ページは白背景 */
}
.article-body {
    /* 記事の可読性を高めるために幅を制限 */
    max-width: 80rem;
    margin: 0 auto 6rem;
}
.article-header {
    border-bottom: 0.2rem solid var(--color-blue);
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}
.article-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.article-date {
    font-size: 1.6rem;
    color: #666;
}
.article-tag {
    /* .top-news__card-tag のスタイルを流用 */
    /* display, font-size, background-color などが継承されます */
}

/* 記事本文のスタイル */
.article-main {
    font-size: 1.6rem;
    line-height: 1.8;
}
.article-main > * + * {
    margin-top: 2.5em; /* 要素間のマージン */
}
.article-main h2 {
    font-size: 2.4rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid #ddd;
    margin-top: 4rem;
}
.article-main h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3.5rem;
}
.article-main p {
    font-size: 1.6rem;
    line-height: 1.8;
}
.article-main ul,
.article-main ol {
    padding-left: 2em;
}
.article-main li {
    margin-bottom: 0.5em;
    list-style: disc;
}
.article-main img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
.article-main figure {
    margin: 0;
}
.article-main figcaption {
    font-size: 1.4rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}
.article-main blockquote {
    margin: 0;
    padding: 1.5em;
    background-color: #F0F7FF;
    border-left: 0.4rem solid var(--color-blue);
}
.article-main blockquote p {
    margin: 0;
}
.article-main a {
    color: var(--color-blue);
    text-decoration: underline;
}
.article-main a:hover {
    text-decoration: none;
    opacity: 0.7;
}

/* 記事ページネーション */
.article-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    border-top: 0.1rem solid #ddd;
    padding-top: 4rem;
}
.article-pagination__link {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 0.2rem solid var(--color-blue);
    border-radius: 5rem;
    transition: 0.3s;
}
.article-pagination__link:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    opacity: 1;
}
.article-pagination__link--center {
    background-color: #eee;
    color: #333;
    border-color: #eee;
}
.article-pagination__link--center:hover {
    background-color: #ddd;
    color: #333;
}

/* =======================================
// プライバシーポリシーページ
// ======================================= */
.child_privacy-fv {
    background: url('./images/child_about-fv__bg.jpg') no-repeat center center/cover;
    padding: 26rem 0 20rem;
}
.child_privacy-fv__inner {
    text-align: center;
    color: var(--color-white);
}



/* =======================================
// レスポンシブ対応 (650px以下)
// ======================================= */

/* ------------------------------
// 共通ヘッダー ハンバーガー
// ------------------------------ */
.header-hamburger-trigger {
    display: none;
    z-index: 100;
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1.5rem;
}
.header-hamburger-trigger span {
    display: block;
    position: absolute;
    left: 0.5rem;
    width: 2.5rem;
    height: 0.2rem;
    background-color: var(--color-white);
    transition: 0.3s;
}
.header-hamburger-trigger span:nth-child(1) {
    top: 1rem;
}
.header-hamburger-trigger span:nth-child(2) {
    top: 1.7rem;
}
.header-hamburger-trigger span:nth-child(3) {
    top: 2.4rem;
}

.header-hamburger-trigger.is-active span:nth-child(1) {
    top: 1.7rem;
    transform: rotate(45deg);
}
.header-hamburger-trigger.is-active span:nth-child(2) {
    opacity: 0;
}
.header-hamburger-trigger.is-active span:nth-child(3) {
    top: 1.7rem;
    transform: rotate(-45deg);
}


/* ------------------------------
// 絞り込み(Sales) ハンバーガー
// ------------------------------ */
.sales-filter-trigger {
    display: none;
}
.sales-filter-close {
    display: none;
}


@media (max-width: 650px) {
    /* ------------------------------
    // 共通レイアウト調整
    // ------------------------------ */
    html {
        font-size: 10px;
    }
    .container {
        width: 100%;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
	.for_pc {
		display: none;
	}

    .header-container {
        justify-content: flex-start;
        align-items: center;
    }
    .header-logo__image {
        width: 11rem;
    }
    .header-hamburger-trigger {
        display: block;
    }
    .header-nav {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .header-nav__list--main {
        transform: translateY(-100%);
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background-color: rgba(22, 90, 168, 0.9);
        padding: 0;
        border-radius: 0;
        transition: 0.6s;
    }
    .header-nav__list--main.is-active {
        transform: translateY(0%);
    }
    .header-nav__item {
        margin-bottom: 0;
    }
    .header-nav__link--primary {
        color: var(--color-white);
        font-size: 1.6rem;
        padding: 1rem 2rem;
    }

    /* お問い合わせボタン調整 */
    .header-nav__list--contact {
        margin-left: 1rem;
    }
    .header-nav__link--secondary {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
        letter-spacing: 0;
    }

    /* ------------------------------
    // 在庫車両(Sales) SP対応
    // ------------------------------ */
    .child_sales-container {
        display: block;
        background: var(--color-white);
    }
    .sales-filter-wrapper {
        background-color: var(--color-blue);
    }
    .sales-filter-trigger {
        display: block;
        width: 16rem;
        padding: 1rem 1rem;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--color-white);
        background-color: var(--color-blue);
        border: none;
        cursor: pointer;
        margin-left: auto;
        border-left: 0.1rem solid var(--color-white);
    }

    .child_sales-sub {
        transform: translateX(100%);
        position: fixed;
        top: 0;
        right: 0;
        width: 32rem;
        height: 100%;
        z-index: 101;
        background-color: var(--color-blue);
        overflow-y: auto;
        padding: 8rem 2rem 2rem;
        box-sizing: border-box;
        transition: 0.6s;
    }
    .child_sales-sub.is-active {
        transform: translateX(0%);
    }
    .child_sales-controls__label {
        font-size: 1.4rem;
    }
    .child_sales-controls__select, .child_sales-controls__input {
        font-size: 1.3rem;
    }

    .sales-filter-close {
        display: block;
        position: absolute;
        top: 2rem;
        right: 1.5rem;
        font-size: 3rem;
        font-weight: 400;
        color: var(--color-white);
        background: none;
        border: none;
        cursor: pointer;
        line-height: 1;
    }

    .child_sales-main {
        width: 100%;
        padding: 0;
    }
    .child_sales-content__text {
        font-size: 1.2rem;
        padding: 3rem 1.5rem 1rem;
    }
    .child_sales-content__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    .child_sales-card__image-area {
        height: 14rem;
    }
    .child_sales-card__name {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .child_sales-card__spec {
        font-size: 1.2rem;
    }
    .child_sales-card__spec span {
        width: 5.5rem;
    }
    .child_sales-pagination {
        padding: 0 1.5rem 6rem;
    }
    .child_sales-pagination__link {
        min-width: 3.2rem;
        height: 3.2rem;
        padding: 0 1rem;
        font-size: 1.4rem;
    }

    /* ------------------------------
    // その他下層ページ調整
    // ------------------------------ */
    /* トップ */
    .top-fv::before {
        clip-path: none;
    }
    .top-fv__inner {
        height: 100vh;
        padding: 5rem 0;
        justify-content: flex-end;
    }
    .top-fv__image {
        width: 13rem;
    }
    .top-fv__title {
        font-size: 3.2rem;
    }
    .top-fv__text {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .top-fv__button {
        font-size: 1.8rem;
        width: 30rem;
        padding: 1.2rem 1rem;
    }

    .top-point {
        padding: 5rem 0;
    }
    .top-point__item {
        flex-direction: column;
        padding: 3rem 0;
    }
    .top-point__content {
        flex-basis: auto;
        margin-bottom: 1.8rem;
    }
    .top-point__number, .top-point__title {
        font-size: 2.4rem;
        letter-spacing: 0.1rem;
    }
    .top-point__number {
        margin-bottom: 0;
    }
    .top-point__title {
        margin-bottom: 1.8rem;
    }
    .top-point__text {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    .top-point__image-area {
        flex-basis: auto;
    }
    .top-point__item:nth-child(2n) {
        flex-direction: column;
    }

    .top-sec__title {
        font-size: 2.4rem;
        line-height: 1.4;
    }
    .top-sec__sub-title {
        font-size: 1.4rem;
        letter-spacing: 0;
        margin-bottom: 0;
    }
    .top-sales {
        padding-bottom: 6rem;
    }
    .top-sales__header {
        padding: 6rem 0 5.0rem;
    }
    .top-sales__list {
        overflow: scroll;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 2rem;
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
    }
    .top-sales__card {
        flex-basis: 29rem;
        width: 29rem;
        flex-shrink: 0;
    }
    .top-sales__card-image-area {
        height: 20rem;
    }
    .top-sales__card-name {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .top-sales__card-body {
        padding: 1rem 0;
    }
    .top-sales__card-spec {
        font-size: 1.3rem;
    }
    .top-sales__button {
        font-size: 1.8rem;
    }

    .top-flow {
        padding: 6rem 0;
    }
    .top-flow__header {
        padding: 0 0 5rem;
    }
    .top-flow__inner {
        padding: 3rem 1.4rem;
    }
    .top-flow__item {
        flex-direction: column;
    }
    .top-flow__step-image-area {
        flex-basis: auto;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .top-flow__text {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    .top-flow__arrow::after {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .top-contact {
        padding: 6rem 0;
    }
    .top-contact__header {
        margin-bottom: 4rem;
    }
    .top-contact__list {
        flex-direction: column;
        gap: 5rem;
    }
    .top-contact__item {
        width: 100%;
    }
    .top-contact__balloon {
        font-size: 1.4rem;
    }
    .top-contact__button-text {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .top-contact__button {
        height: 15rem;
    }
    .top-contact__icon {
        height: 4rem;
    }

    .top-faq {
        padding: 6rem 0;
    }
    .top-faq__header {
        margin-bottom: 5rem;
    }
    .top-faq__q-text {
        line-height: 1.5;
        padding-right: 1rem;
    }
    .top-faq__q-mark {
        font-size: 1.4rem;
        width: 2.4rem;
        height: 2.4rem;
        padding-bottom: 0.4rem;
        margin-right: 0.6rem;
    }
    .top-faq__question {
        font-size: 1.6rem;
    }
    .top-faq__question::after {
        margin-top: -0.8rem;
        width: 1.4rem;
        height: 1.4rem;
    }
    .top-faq__a-text {
        font-size: 1.5rem;
    }
    .top-faq__a-mark {
        font-size: 1.4rem;
        width: 2.4rem;
        height: 2.4rem;
        margin-right: 0.6rem;
    }

    .top-news {
        padding: 6rem 0;
    }
    .top-news__list {
        overflow: scroll;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 2rem;
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
    }
    .top-news__card {
        flex-basis: 29rem;
        width: 29rem;
        flex-shrink: 0;
    }
    .top-news__button {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }
    .top-news__card-image-area {
        height: 16rem;
    }
    .top-news__card-body {
        padding: 1.5rem 2rem;
        min-height: 17.0rem;
        display: flex;
        flex-direction: column;
    }
    .top-news__card-date {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    /* FV */
    .child_car-fv,
    .child_about-fv,
    .child_sales-fv,
    .child_news-fv,
    .child_privacy-fv {
        padding: 14rem 0 8rem;
    }
    .child_sec__title, .child_about-sec__title, .child_sales-sec__title, .child_car-sec__title {
        font-size: 2.6rem;
    }
    .child_sec__sub-title, .child_about-sec__sub-title, .child_sales-sec__sub-title {
        font-size: 1.4rem;
        letter-spacing: 0;
    }

    /* パンくず */
    .breadcrumb {
        padding: 2rem 0 1rem;
        font-size: 1.1rem;
    }

    /* 店舗情報 */
    .child_about-info {
        padding: 6rem 0;
    }
    .child_about-info__table th, .child_about-info__table td {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    .child_about-info__table th {
        width: 12rem;
    }
    .child_about-info__table {
        margin-bottom: 3rem;
    }
    .child_about-contact {
        padding: 6rem 0;
    }
    .child_about-contact__list {
        margin-top: 6rem;
        flex-direction: column;
    }
    .child_about-contact__button {
        height: 8rem;
    }
    .child_about-contact__button-text, .child_about-contact__number {
        font-size: 2rem;
    }
    .child_about-contact__icon {
        height: 3rem;
    }

    /* 車両詳細 */
    .child_car-content {
        padding: 0 0 6rem;
    }
    .child_car__title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    .child_car__layout {
        flex-direction: column;
        gap: 0;
    }
    .child_car__gallery,
    .child_car__info {
        width: 100%;
        flex-basis: auto;
    }
    .child_car__gallery-thumbs {
        display: none;
    }
    .child_car__gallery-prev, .child_car__gallery-next {
        padding: 3rem 1rem;
    }
    .child_car__gallery-prev img, .child_car__gallery-next img {
        width: 1rem;
    }
    .child_car__grid-head {
        padding: 0.3rem 1rem;
    }
    .child_car__grid-cell {
        height: 6.5rem;
    }
    .child_car__spec-grid {
        margin-bottom: 1.5rem;
    }
    .child_car__price-item {
        width: 48%;
    }
    .child_car__price-breakdown .child_car__price-amount {
        padding-top: 0.6rem;
    }
    .child_car__price-total .child_car__price-label, .child_car__price-label {
        font-size: 1.1rem;
    }
    .child_car__price-total .child_car__price-value {
        font-size: 3.6rem;
    }
    .child_car__price-value {
        font-size: 2.8rem;
        margin-right: 0.2rem;
    }
    .child_car__price-unit {
        font-size: 1.2rem;
    }
    .child_car__price-box {
        margin-bottom: 5rem;
    }

    /* お知らせ一覧 */
    .child_news-content {
        padding: 4rem 0 6rem;
    }
    .child_news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .child_news-list .top-news__card {
        flex-basis: auto;
        width: 100%;
        flex-shrink: 1;
    }

    /* 記事・PP */
    .child_article-content {
        padding: 2rem 0 6rem;
    }
    .article-title {
        font-size: 2rem;
    }
    .article-main,
    .article-main p,
    .article-main li {
        font-size: 1.4rem;
    }
    .article-main h2 {
        font-size: 1.8rem;
    }
    .article-main h3 {
        font-size: 1.6rem;
    }
    .article-main > * + * {
        margin-top: 1.5em;
    }
    .article-pagination a span {
        display: none;
    }
    .article-pagination__link {
        font-size: 1.4rem;
        padding: 0.8rem 2rem;
        border-radius: 3rem;
    }

    /* フッター */
    .footer {
        padding: 4rem 0 2rem;
    }
    .footer-inner {
        flex-direction: column; /* 縦積み */
        gap: 4rem;
        margin-bottom: 4rem;
    }
    .footer-nav {
        align-items: flex-start; /* 左揃え */
        text-align: left;
    }
    .footer-nav__list {
        align-items: flex-start;
    }
    .footer-logo__image {
        width: 14rem;
    }
    .footer-nav__item {
        margin-bottom: 1rem;
    }
    .footer-company-name, .footer-address-zip, .footer-address, .footer-tel, .footer-nav__link {
        font-size: 1.4rem;
    }
    .footer-privacy-link {
        margin-top: 2.5rem;
        font-size: 1.4rem;
    }

}

/* 画面が小さいスマホ向け (480px以下) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    /* 在庫一覧を1カラムに */
    .child_sales-content__list {
        grid-template-columns: 1fr;
    }
    .child_sales-card__image-area {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    /* お知らせ一覧を1カラムに */
    .child_news-list {
        grid-template-columns: 1fr;
    }
}

.cf-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	border-bottom: 1px dashed #ccc;
	transition: all .3s;
	font-size: 1.4rem;
}

.cf-area:last-child {
	border-bottom: none;
}

.cf-area dt {
  width: 200px;
  padding-right: 30px;
  text-align: right;
	line-height:1.5em;
}

.cf-area dd {
    flex: 1;
}

.cf-area input, .cf-area textarea {
  width: 100%;
  padding: 0.8em;
  border: none;
  background-color: #e6e6e6;
  font-size: 16px;
	resize: vertical;
	transition: all .3s;
}

.cf-area input:focus,.cf-area textarea:focus {
	outline: none;
	background: #dde2e9;
}

.cf-required {
	background: #b91e23;
	color: #fff;
	font-size: 0.8em;
	padding: 0 5px 2px;
	border-radius: 2px
}

.cf-send input {
	display: block;
	background: linear-gradient(135deg, #6b7a8e 0%, #3b4a5e 100%);
	width: 300px;
	height: 60px;
	margin: 30px auto 0;
	border: none;
	border-radius: 10px;
	color: #fff;
	box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, .2);
	font-size: 1.3em;
	font-weight: bold;
	transition: all .3s;
}

.cf-send input:hover {
	filter: brightness(1.25);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #fce3e3;
	border: none;
	text-align: center;
}

@media screen and (max-width:768px){
	.cf-area {
		display: block;
	}

	.cf-area dt {
    width: 100%;
		margin-bottom: 5px;
    padding-right: 0;
    text-align: left;
		line-height:1.5em;
	}
}
