/*
==================================================
あんしんサポート＋
Service Detail Page
==================================================
*/

:root {
    --as-main: #e58f9c;
    --as-main-dark: #c86f7e;
    --as-accent: #ef8a3c;
    --as-text: #252525;
    --as-sub: #686868;
    --as-line: #e7e7e7;
    --as-bg: #f7f7f8;
    --as-soft: #fff5f3;
    --as-white: #ffffff;
    --as-header-top-height: 32px;
    --as-header-main-height: 108px;
    --as-header-total-height: 154px;
    --as-radius-lg: 28px;
    --as-radius-md: 20px;
    --as-shadow: 0 18px 50px rgba(30, 30, 30, 0.08);
}


/* ==============================================
リセット
============================================== */

.page-template-page-anshin-support *,
.page-template-page-anshin-support *::before,
.page-template-page-anshin-support *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.page-template-page-anshin-support {
    margin: 0;
    background: var(--as-white);
    color: var(--as-text);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        "Yu Gothic",
        YuGothic,
        Meiryo,
        sans-serif;
    line-height: 1.8;
}

body.page-template-page-anshin-support.is-menu-open {
    overflow: hidden;
}

.page-template-page-anshin-support .site-header,
.page-template-page-anshin-support .page-header,
.page-template-page-anshin-support .breadcrumb,
.page-template-page-anshin-support .veu_socialSet {
    display: none !important;
}

.as-page {
    width: 100%;
    overflow: hidden;
    background: var(--as-white);
}

.as-page img {
    display: block;
    width: 100%;
    height: auto;
}

.as-page a {
    color: inherit;
    text-decoration: none;
}

.as-page button {
    color: inherit;
    font: inherit;
}

.as-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==============================================
固定ヘッダー
============================================== */

.as-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9990;
    width: 100%;
    background: var(--as-white);
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
}

body.admin-bar .as-header {
    top: 32px;
}

/* ==============================================
上部お知らせバー
============================================== */

:root{

    --as-header-top-height:30px;

}

.as-header__top{

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:var(--as-header-top-height);

    padding:3px 14px;

    background:#efb2bc;

    color:#fff;

    text-align:center;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.as-header__top p{

    margin:0;

    font-size:11px;

    font-weight:600;

    letter-spacing:.08em;

    line-height:1.2;

}

.as-header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 82px;

    padding: 8px max(24px, calc((100vw - 1180px) / 2));

    border-bottom: 1px solid rgba(0,0,0,.05);
}

.as-header__logo-link {

    display:block;

    width:min(260px,38vw);

}

.as-header__logo {

    width:100%;
    max-height:54px;

    object-fit:contain;
    object-position:left center;

}

.as-header__actions {
    display: flex;
    align-items: stretch;
    gap: 26px;
}

.as-header-action {
    display: flex;
    min-width: 82px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 3px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.as-header-action__icon {
    display: block;
    width: 42px;
    height: 42px;
}

.as-header-action__icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: var(--as-text);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.as-header-action__label {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
}

.as-menu-icon {
    display: flex;
    width: 39px;
    height: 34px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.as-menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--as-text);
}

.as-main {
    padding-top: var(--as-header-total-height);
}

body.admin-bar .as-main {
    padding-top: calc(var(--as-header-total-height) + 32px);
}


/* ==============================================
ドロワーメニュー
============================================== */

.as-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9995;
    visibility: hidden;
    background: rgba(20, 20, 20, 0.46);
    opacity: 0;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.as-drawer-overlay.is-active {
    visibility: visible;
    opacity: 1;
}

.as-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: min(420px, 90vw);
    height: 100dvh;
    overflow-y: auto;
    background: var(--as-white);
    box-shadow: -18px 0 50px rgba(0, 0, 0, 0.16);
    transform: translateX(105%);
    transition: transform 0.35s ease;
}

.as-drawer.is-active {
    transform: translateX(0);
}

.as-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 20px 26px;
    border-bottom: 1px solid var(--as-line);
}

.as-drawer__header p {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.as-drawer-close {
    position: relative;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.as-drawer-close span {
    position: absolute;
    top: 20px;
    left: 7px;
    display: block;
    width: 29px;
    height: 2px;
    background: var(--as-text);
}

.as-drawer-close span:first-child {
    transform: rotate(45deg);
}

.as-drawer-close span:last-child {
    transform: rotate(-45deg);
}

.as-drawer__body {
    padding: 18px 28px 40px;
}

.as-drawer__link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 4px;
    border-bottom: 1px solid var(--as-line);
    font-size: 16px;
    font-weight: 700;
}

.as-drawer__link span {
    color: var(--as-main-dark);
    font-size: 12px;
    letter-spacing: 0.08em;
}


/* ==============================================
導入
============================================== */

.as-intro {
    padding: 88px 0 76px;
    background:
        radial-gradient(circle at 88% 10%, rgba(230, 143, 156, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fff9f7 100%);
}

.as-intro__eyebrow {
    margin: 0 0 15px;
    color: var(--as-main-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.as-intro__title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 5.2vw, 72px);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0.01em;
}

.as-intro__description {
    max-width: 740px;
    margin: 28px 0 0;
    color: var(--as-sub);
    font-size: 18px;
    line-height: 2;
}

.as-intro__image,
.as-support-visual {
    position: relative;
    margin-top: 52px;
    overflow: hidden;
    border-radius: var(--as-radius-lg);
    background: #eee;
    box-shadow: var(--as-shadow);
}

.as-intro__image img {
    aspect-ratio: 16 / 7.8;
    object-fit: cover;
}

.as-image-label {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    font-size: 11px;
    font-weight: 700;
}


/* ==============================================
サービスナビ
============================================== */

.as-service-nav {
    position: relative;
    z-index: 3;
    padding: 0 0 48px;
    background: var(--as-white);
}

.as-service-nav__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -30px;
    overflow: hidden;
    border: 1px solid var(--as-line);
    border-radius: var(--as-radius-md);
    background: var(--as-white);
    box-shadow: var(--as-shadow);
}

.as-service-nav__item {
    display: flex;
    min-height: 142px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 26px;
    border-right: 1px solid var(--as-line);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.as-service-nav__item:last-child {
    border-right: 0;
}

.as-service-nav__item:hover {
    background: var(--as-soft);
}

.as-service-nav__number {
    margin-bottom: 7px;
    color: var(--as-main-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.as-service-nav__item strong {
    font-size: 20px;
}

.as-service-nav__item small {
    margin-top: 5px;
    color: var(--as-sub);
    font-size: 12px;
}


/* ==============================================
共通セクション
============================================== */

.as-section {
    scroll-margin-top: calc(var(--as-header-total-height) + 18px);
    padding: 100px 0;
}

.as-section-heading {
    max-width: 780px;
    margin-bottom: 52px;
}

.as-section-heading__en {
    margin: 0 0 8px;
    color: var(--as-main-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.as-section-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.35;
}

.as-section-heading > p:last-child {
    margin: 20px 0 0;
    color: var(--as-sub);
    font-size: 17px;
    line-height: 1.95;
}


/* ==============================================
優待サービス・横スクロール
============================================== */

.as-benefits {
    background: var(--as-bg);
}

.as-carousel {
    width: 100%;
}

.as-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.as-carousel__guide {
    margin: 0;
    color: var(--as-sub);
    font-size: 13px;
    font-weight: 700;
}

.as-carousel__guide span {
    margin-left: 7px;
    color: var(--as-main-dark);
    font-size: 20px;
}

.as-carousel__controls {
    display: flex;
    gap: 10px;
}

.as-carousel-button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid var(--as-line);
    border-radius: 50%;
    background: var(--as-white);
    font-size: 20px;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.as-carousel-button:hover {
    border-color: var(--as-main);
    background: var(--as-main);
    color: var(--as-white);
}

.as-benefit-track {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    padding: 4px 2px 28px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.as-benefit-track::-webkit-scrollbar {
    display: none;
}

.as-benefit-card {
    min-width: min(390px, 78vw);
    overflow: hidden;
    border: 1px solid var(--as-line);
    border-radius: var(--as-radius-md);
    background: var(--as-white);
    box-shadow: 0 12px 35px rgba(20, 20, 20, 0.07);
    scroll-snap-align: start;
}

.as-benefit-card__image {
    position: relative;
    overflow: hidden;
}

.as-benefit-card__image img {
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.as-benefit-card:hover .as-benefit-card__image img {
    transform: scale(1.035);
}

.as-benefit-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.as-benefit-card__body {
    padding: 25px 25px 28px;
}

.as-benefit-card__category {
    margin: 0 0 6px;
    color: var(--as-main-dark);
    font-size: 11px;
    font-weight: 800;
}

.as-benefit-card__body h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
}

.as-benefit-card__body > p:not(.as-benefit-card__category) {
    min-height: 86px;
    margin: 14px 0 0;
    color: var(--as-sub);
    font-size: 14px;
    line-height: 1.8;
}

.as-benefit-card__highlight {
    display: block;
    margin-top: 18px;
    color: var(--as-main-dark);
    font-size: 23px;
    font-weight: 800;
}


/* ==============================================
補償
============================================== */

.as-support-section {
    background: var(--as-white);
}

.as-support-section--soft {
    background: #f6f4f8;
}

.as-support-visual img {
    aspect-ratio: 16 / 7.3;
    object-fit: cover;
}

.as-device-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.as-device-list span {
    padding: 10px 17px;
    border: 1px solid var(--as-line);
    border-radius: 999px;
    background: var(--as-white);
    font-size: 13px;
    font-weight: 700;
}

.as-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 42px;
}

.as-feature-card {
    padding: 32px;
    border: 1px solid var(--as-line);
    border-radius: var(--as-radius-md);
    background: var(--as-white);
}

.as-feature-card__number {
    display: block;
    margin-bottom: 18px;
    color: var(--as-main-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.as-feature-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.as-feature-card p {
    margin: 13px 0 0;
    color: var(--as-sub);
    font-size: 14px;
    line-height: 1.85;
}

.as-note {
    margin: 27px 0 0;
    color: #777;
    font-size: 11px;
    line-height: 1.8;
}


/* ==============================================
広告ブロック
============================================== */

.as-adblock {
    background: var(--as-soft);
}

.as-adblock-compare {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
    gap: 22px;
}

.as-adblock-panel {
    padding: 24px;
    border: 1px solid var(--as-line);
    border-radius: var(--as-radius-md);
    background: var(--as-white);
}

.as-adblock-panel--active {
    border-color: rgba(229, 143, 156, 0.65);
    box-shadow: 0 16px 42px rgba(200, 111, 126, 0.13);
}

.as-adblock-panel__label {
    margin: 0 0 16px;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}

.as-adblock-panel img {
    aspect-ratio: 0.78 / 1;
    border-radius: 14px;
    object-fit: cover;
}

.as-adblock-panel > p:last-child {
    margin: 18px 0 0;
    color: var(--as-sub);
    font-size: 14px;
    text-align: center;
}

.as-adblock-arrow {
    color: var(--as-main-dark);
    font-size: 38px;
    font-weight: 300;
    text-align: center;
}

.as-mini-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 28px;
}

.as-mini-feature-grid article {
    display: flex;
    flex-direction: column;
    padding: 23px;
    border-radius: 16px;
    background: var(--as-white);
    text-align: center;
}

.as-mini-feature-grid strong {
    font-size: 18px;
}

.as-mini-feature-grid span {
    margin-top: 5px;
    color: var(--as-sub);
    font-size: 12px;
}


/* ==============================================
料金
============================================== */

.as-price {
    background:
        radial-gradient(circle at 15% 20%, rgba(229, 143, 156, 0.2), transparent 28%),
        var(--as-white);
}

.as-price-card {
    max-width: 690px;
    margin: 0 auto;
    padding: 54px 40px;
    border: 1px solid var(--as-line);
    border-radius: var(--as-radius-lg);
    background: var(--as-white);
    box-shadow: var(--as-shadow);
    text-align: center;
}

.as-price-card__service {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
}

.as-price-card__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.as-price-card__amount strong {
    color: var(--as-main-dark);
    font-size: clamp(62px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
}

.as-price-card__amount span {
    font-size: 20px;
    font-weight: 700;
}

.as-price-card__free {
    display: inline-block;
    margin: 28px 0 0;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--as-main);
    color: var(--as-white);
    font-size: 17px;
    font-weight: 800;
}

.as-price-card__note {
    max-width: 500px;
    margin: 25px auto 0;
    color: var(--as-sub);
    font-size: 12px;
}


/* ==============================================
FAQ
============================================== */

.as-faq {
    background: var(--as-bg);
}

.as-faq-list {
    max-width: 920px;
}

.as-faq-item {
    border-bottom: 1px solid var(--as-line);
    background: var(--as-white);
}

.as-faq-item:first-child {
    border-radius: var(--as-radius-md) var(--as-radius-md) 0 0;
}

.as-faq-item:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--as-radius-md) var(--as-radius-md);
}

.as-faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 25px 28px;
    border: 0;
    background: transparent;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.as-faq-question span {
    position: relative;
    padding-left: 39px;
}

.as-faq-question span::before {
    position: absolute;
    top: -2px;
    left: 0;
    color: var(--as-main-dark);
    content: "Q";
    font-size: 21px;
    font-weight: 800;
}

.as-faq-question i {
    position: relative;
    width: 22px;
    min-width: 22px;
    height: 22px;
}

.as-faq-question i::before,
.as-faq-question i::after {
    position: absolute;
    top: 10px;
    left: 2px;
    width: 18px;
    height: 2px;
    background: var(--as-text);
    content: "";
    transition: transform 0.25s ease;
}

.as-faq-question i::after {
    transform: rotate(90deg);
}

.as-faq-question[aria-expanded="true"] i::after {
    transform: rotate(0);
}

.as-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.as-faq-answer > div {
    overflow: hidden;
    padding: 0 28px;
    color: var(--as-sub);
    font-size: 14px;
}

.as-faq-item.is-open .as-faq-answer {
    grid-template-rows: 1fr;
}

.as-faq-item.is-open .as-faq-answer > div {
    padding-bottom: 26px;
}


/* ==============================================
タブレット
============================================== */

@media (max-width: 991px) {

    :root {
        --as-header-main-height: 92px;
        --as-header-total-height: 138px;
    }

    .as-header__main {
        padding-right: 22px;
        padding-left: 22px;
    }

    .as-header__logo-link {
        width: min(270px, 48vw);
    }

    .as-service-nav__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-service-nav__item {
        border-bottom: 1px solid var(--as-line);
    }

    .as-service-nav__item:nth-child(2) {
        border-right: 0;
    }

    .as-service-nav__item:nth-child(3),
    .as-service-nav__item:nth-child(4) {
        border-bottom: 0;
    }

    .as-feature-grid {
        grid-template-columns: 1fr;
    }

    .as-adblock-compare {
        grid-template-columns: 1fr 45px 1fr;
        gap: 12px;
    }

}


/* ==============================================
スマートフォン
============================================== */

@media (max-width: 767px) {

    :root {
        --as-header-top-height: 30px;
        --as-header-main-height: 92px;
        --as-header-total-height: 122px;
    }

    .as-container {
        width: min(100% - 30px, 1180px);
    }

    body.admin-bar .as-header {
        top: 46px;
    }

    body.admin-bar .as-main {
        padding-top: calc(var(--as-header-total-height) + 46px);
    }

    .as-header__top{

    padding:2px 10px;

}

.as-header__top p{

    font-size:10px;

    font-weight:600;

    letter-spacing:.08em;

}

    .as-header__main {
        padding: 10px 14px;
    }

    .as-header__logo-link {
        width: min(180px, 50vw);
    }

    .as-header__logo {
        max-height: 42px;
    }

    .as-header__actions {
        gap: 9px;
    }

    .as-header-action {
        min-width: 48px;
        gap: 2px;
    }

    .as-header-action__icon {
        width: 29px;
        height: 29px;
    }

    .as-menu-icon {
        width: 29px;
        height: 27px;
        gap: 5px;
    }

    .as-menu-icon span {
        height: 2px;
    }

    .as-header-action__label {
        font-size: 9px;
    }

    .as-intro {
        padding: 54px 0 60px;
    }

    .as-intro__eyebrow {
        font-size: 10px;
    }

    .as-intro__title {
        font-size: 37px;
        line-height: 1.35;
    }

    .as-intro__description {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.9;
    }

    .as-intro__image {
        margin-top: 34px;
        border-radius: 19px;
    }

    .as-intro__image img {
        aspect-ratio: 1.25 / 1;
    }

    .as-image-label {
        right: 9px;
        bottom: 9px;
        font-size: 9px;
    }

    .as-service-nav {
        padding-bottom: 20px;
    }

    .as-service-nav__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
        border-radius: 15px;
    }

    .as-service-nav__item {
        min-height: 108px;
        padding: 17px 15px;
    }

    .as-service-nav__item strong {
        font-size: 16px;
    }

    .as-service-nav__item small {
        font-size: 10px;
    }

    .as-section {
        padding: 72px 0;
    }

    .as-section-heading {
        margin-bottom: 35px;
    }

    .as-section-heading h2 {
        font-size: 31px;
    }

    .as-section-heading > p:last-child {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.9;
    }

    .as-carousel__header {
        margin-bottom: 16px;
    }

    .as-carousel__controls {
        display: none;
    }

    .as-carousel__guide {
        font-size: 11px;
    }

    .as-benefit-track {
        width: calc(100% + 15px);
        gap: 10px;
        padding-right: 15px;
    }

    .as-benefit-card {
        min-width: 68vw;
        border-radius: 18px;
    }

    .as-benefit-card__body {
        padding: 15px;
    }

    .as-benefit-card__body h3{

    font-size:18px;
    line-height:1.4;

}

    .as-benefit-card__body > p:not(.as-benefit-card__category) {
       min-height:auto;
    margin-top:8px;
    font-size:12px;
    line-height:1.6;

}

    .as-benefit-card__highlight {
        font-size: 20px;
    }

    .as-support-visual {
        margin-top: 0;
        border-radius: 18px;
    }

    .as-support-visual img {
        aspect-ratio: 1.25 / 1;
    }

    .as-device-list {
        gap: 7px;
        margin-top: 22px;
    }

    .as-device-list span {
        padding: 8px 12px;
        font-size: 11px;
    }

    .as-feature-grid {
        gap: 12px;
        margin-top: 29px;
    }

    .as-feature-card {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .as-feature-card h3 {
        font-size: 21px;
    }

    .as-adblock-compare {
        grid-template-columns: 1fr;
    }

    .as-adblock-arrow {
        transform: rotate(90deg);
        font-size: 29px;
    }

    .as-adblock-panel {
        padding: 18px;
        border-radius: 17px;
    }

    .as-adblock-panel img {
        aspect-ratio: 0.95 / 1;
    }

    .as-mini-feature-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .as-mini-feature-grid article {
        padding: 18px;
    }

    .as-price-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .as-price-card__amount {
        flex-direction: column;
        gap: 8px;
    }

    .as-price-card__amount strong {
        font-size: 68px;
    }

    .as-price-card__amount span {
        font-size: 16px;
    }

    .as-faq-question {
        padding: 21px 19px;
        font-size: 14px;
    }

    .as-faq-question span {
        padding-left: 32px;
    }

    .as-faq-answer > div {
        padding-right: 19px;
        padding-left: 51px;
        font-size: 13px;
    }

}
/* ==============================================
割引サービス対象者
============================================== */

.as-member-info {
    width: 100%;
    max-width: 920px;
    margin: 28px auto 0;
}

.as-member-info__box {
    padding: 24px 0 20px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
}

.as-member-info__box h3 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 13px;
    color: var(--as-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.as-member-info__box h3::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 82px;
    height: 2px;
    background: var(--as-main-dark);
    content: "";
}

.as-member-info__target {
    margin: 0;
    color: #444;
    font-size: 14px;
    line-height: 2;
}

.as-member-info__note {
    margin: 13px 0 0;
    color: #777;
    font-size: 11px;
    line-height: 1.8;
}

.as-member-button {
    display: flex;
    width: 100%;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 16px;
    padding: 15px 20px;
    border: 1px solid #98bfe9;
    border-radius: 7px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.as-member-button:hover {
    border-color: #6da5df;
    background: #f8fbff;
    color: #333;
}

.as-member-button__arrow {
    display: grid;
    width: 22px;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #238bd2;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
/* 会員優待セクションの余白調整 */

.as-benefits {
    padding-bottom: 62px;
}

.as-benefit-track {
    padding-bottom: 14px;
}

.as-benefits .as-carousel {
    margin-bottom: 0;
}
@media (max-width: 767px) {

    .as-benefits {
        padding-bottom: 48px;
    }

    .as-member-info {
        margin-top: 18px;
    }

    .as-member-info__box {
        padding: 20px 0 18px;
    }

    .as-member-info__box h3 {
        margin-bottom: 15px;
        font-size: 17px;
    }

    .as-member-info__target {
        font-size: 13px;
        line-height: 1.9;
    }

    .as-member-info__note {
        margin-top: 11px;
        font-size: 10px;
    }

    .as-member-button {
        min-height: 58px;
        padding: 14px 17px;
        font-size: 12px;
    }

}
/*==========================================
家電・住宅設備補償
==========================================*/

.as-home-support{

    background:#fff;

}

.as-home-support-image{

    display:block;

    margin-top:42px;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #e8e8e8;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.as-home-support-image img{

    width:100%;

    display:block;

}
/*==========================================
保険金請求ボタン
==========================================*/

.as-home-support-button{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:18px;

    padding:18px 22px;

    border:1px solid #9fc5ee;

    border-radius:10px;

    background:#fff;

    color:#333;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    transition:.25s;

}

.as-home-support-button:hover{

    background:#f7fbff;

    border-color:#4b9df7;

}

.as-home-support-button__arrow{

    width:26px;

    height:26px;

    border-radius:50%;

    background:#238bd2;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    line-height:1;

}
@media(max-width:767px){

.as-home-support-button{

    margin-top:14px;

    padding:16px 18px;

    font-size:13px;

}

.as-home-support-button__arrow{

    width:22px;

    height:22px;

    font-size:16px;

}

}
/*==========================================
通信端末補償
==========================================*/

.as-device-support{

    background:#f8fafc;

}

.as-device-support-image{

    display:block;

    margin-top:42px;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #e8e8e8;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.as-device-support-image img{

    display:block;

    width:100%;

}

.as-device-support-button{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:18px;

    padding:18px 22px;

    border:1px solid #9fc5ee;

    border-radius:10px;

    background:#fff;

    color:#333;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    transition:.25s;

}

.as-device-support-button:hover{

    background:#f7fbff;

    border-color:#4b9df7;

}

.as-device-support-button__arrow{

    width:26px;

    height:26px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#238bd2;

    color:#fff;

    font-size:20px;

    line-height:1;

}

@media(max-width:767px){

.as-device-support-image{

    margin-top:26px;

    border-radius:14px;

}

.as-device-support-button{

    margin-top:14px;

    padding:16px 18px;

    font-size:13px;

}

.as-device-support-button__arrow{

    width:22px;

    height:22px;

    font-size:16px;

}

}
/*==========================================
広告ブロック
==========================================*/

.as-adblock{

    background:#fff8f3;

}

.as-adblock-image{

    display:block;

    margin-top:42px;

    overflow:hidden;

    border:1px solid #e8e8e8;

    border-radius:22px;

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.as-adblock-image img{

    display:block;

    width:100%;

}

.as-adblock-button{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:18px;

    padding:18px 22px;

    border:1px solid #9fc5ee;

    border-radius:10px;

    background:#fff;

    color:#333;

    font-size:15px;

    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.as-adblock-button:hover{

    background:#f7fbff;

    border-color:#4b9df7;

}

.as-adblock-button__arrow{

    display:flex;

    justify-content:center;

    align-items:center;

    width:26px;

    height:26px;

    border-radius:50%;

    background:#238bd2;

    color:#fff;

    font-size:20px;

    line-height:1;

}

@media(max-width:767px){

.as-adblock-image{

    margin-top:26px;

    border-radius:14px;

}

.as-adblock-button{

    margin-top:14px;

    padding:16px 18px;

    font-size:13px;

}

.as-adblock-button__arrow{

    width:22px;

    height:22px;

    font-size:16px;

}

}