@charset "UTF-8";

/* ========================================
   リセット
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Noto Sans CJK JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #DDF1FF;
    overflow-x: auto;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
.details__pricing-cards a{
    text-decoration: underline;
}
    
/* ========================================
   ページ全体ラッパー
======================================== */
.wrapper {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    background: #DDF1FF;
    position: relative;
}

/* ========================================
   ヘッダー（上部固定・追従）
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.header__inner {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    position: relative;
    height: 115px;
    pointer-events: none;
}

.header__logo {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
    cursor: pointer;
}

.header__logo img {
    display: block;
    width: 230px;
    height: 115px;
    transition: filter 0.3s ease;
}

.header__logo:hover img {
    filter: saturate(1.5);
}

.header__buttons {
    position: absolute;
    top: 15px;
    right: 11px;
    display: flex;
	align-items: center;
    flex-direction: column;
    gap: 6px;
    pointer-events: auto;
}

/* ぽよぽよアニメーション */
@keyframes poyopoyo {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* キラッとアニメーション */
@keyframes kirakira {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        left: 200%;
        opacity: 0;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.header__btn-apply {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 25px 33px;
    width: 130px;
    background: #E50077;
    border-radius: 65px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    animation: poyopoyo 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: filter 0.3s ease;
}

.header__btn-apply:hover {
    filter: saturate(1.2);
}

.header__btn-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: kirakira 3s linear infinite;
}

.header__btn-apply img {
    width: 49.64px;
    height: 53px;
}

.header__btn-apply span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

.header__btn-simulation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.82px;
    padding: 17.38px 0;
    width: 106px;
    height: 106px;
    background: #00A5A9;
    border-radius: 61px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    animation: poyopoyo 2s ease-in-out infinite 0.5s;
    position: relative;
    overflow: hidden;
    transition: filter 0.3s ease;
}

.header__btn-simulation:hover {
    filter: saturate(1.5);
}

.header__btn-simulation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: kirakira 3s linear infinite 1.5s;
}

.header__btn-simulation img {
    width: 23px;
    height: 34px;
}

.header__btn-simulation span {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4em;
    color: #fff;
    text-align: center;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    width: 100%;
    position: relative;
}

.hero__bg {
    width: 100%;
    height: 776px;
    position: relative;
    overflow: hidden;
}

.hero__bg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero__bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero__bg-item--active {
    opacity: 1;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__overlay {
    position: absolute;
    top: 629px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero__frame {
    width: 100%;
    max-width: 1200px;
    padding: 17px 20px;
    background-image: url('images/hero-bg-effect.png');
    background-size: cover;
    border-radius: 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.hero__frame-inner {
    width: 552px;
    height: 294px;
    padding: 26px 46px;
    background-image: url('images/hero-frame-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 423px;
}

.hero__location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__location img {
    width: 11px;
    height: 22px;
}

.hero__location-text {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.448em;
    color: #FFD000;
    text-align: center;
}

.hero__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

.hero__cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 378px;
    padding: 9px 49px;
    background: #fff;
    border-radius: 50px;
    animation: poyopoyo 2s ease-in-out infinite 1s;
    transition: transform 0.3s ease;
}

.hero__cta:hover {
    transform: scale(1.1) !important;
    animation: none;
}

.hero__cta-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.hero__cta-icon {
    position: absolute;
    top: 24px;
    right: 24.5px;
    width: 19px;
    height: 21px;
}

.hero__cta-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background: #0086CD;
    border-radius: 50%;
}

.hero__cta-arrow {
    position: absolute;
    top: -1px;
    left: 4px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.182em;
    color: #fff;
    font-family: 'ABeeZee', Arial, sans-serif;
}

.hero__note {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

/* ========================================
   お悩みセクション
======================================== */
.problems {
    width: 100%;
    background-image: url('images/section-bg-1.png');
    background-size: cover;
    background-position: center;
}

.problems__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    padding: 230px 0 80px;
}

.section-title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #0081CC;
    text-align: center;
}

.problems__list {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.problems__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 240px;
}

.problems__icon {
    width: 185px;
    height: 185px;
    border-radius: 92.5px;
    border: 3px solid #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.problems__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problems__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5625em;
    color: #000;
    text-align: center;
}

/* ========================================
   選ばれる理由セクション
======================================== */
.reason {
    width: 100%;
    background: #FBFEFF;
    padding: 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason__card {
    width: 100%;
    max-width: 1200px;
    background: #FFE6E4;
    border-radius: 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.reason__header {
    display: flex;
    flex-direction: column;
}

.reason__label {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.448em;
    color: #F13C82;
    text-align: center;
}

.reason__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.reason__wrap {
    width: 100%;
    max-width: 1100px;
}

/* PC用タブ */
.reason__tabs-pc {
    display: flex;
    gap: 10px;
    list-style: none;
}

.reason__tabs-pc li {
    flex: 1;
}

.reason__tabs-pc li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px 103px;
    height: 71px;
    background: #FF99C0;
    border-radius: 10px 10px 0 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.136em;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.reason__tabs-pc li.is-active a {
    background: #F13C82;
    color: #fff;
}

/* スマホ用トグル */
.reason__toggle {
    display: none;
}

.reason__panel {
    display: none;
    width: 100%;
    max-width: 1100px;
}

.reason__panel.is-show {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 71px;
    padding: 30px;
    background: #fff;
    border: 3px solid #F13C82;
    border-radius: 0 0 20px 20px;
}

.reason__panel img {
    width: 450px;
    border-radius: 20px;
    object-fit: cover;
}

.reason__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5em;
    color: #000;
    text-align: center;
}

.reason__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9375em;
    color: #000;
}
.text_pink{
	color: #E60045;
}
.overview-row {
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
}
.overview-col {
    width: 45%;
    border-radius: 20px;
}
.overview-item {
    height: auto;
    border-radius: 0;
    padding: 7%;
    border-radius: 12px;
    background: linear-gradient(180deg, #3864CC 0%, #8B6EC5 54%, #AB5AB6 100%);
}
.overview-cross img{
    width: 60%;
    margin: 0 auto;
    display: block;
}
/* スマホ時：アコーディオン */
@media (max-width: 1000px) {
    /* お悩みセクション */
    .problems__list {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .problems__item {
        width: calc(50% - 10px);
        max-width: 240px;
    }

    .reason__wrap {
        width: 100%;
    }

    /* 選ばれる理由 - スマホアコーディオン */
    .reason__tabs-pc {
        display: none !important;
    }

    .reason__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 20px;
        padding-right: 50px;
        background: #F13C82;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        cursor: pointer;
        position: relative;
        margin-top: 10px;
        border-radius: 10px;
    }

    .reason__toggle:first-of-type {
        margin-top: 0;
    }

    .reason__toggle.is-active {
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
    }

    .reason__toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%);
    }

    .reason__toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%) rotate(90deg);
        transition: transform 0.3s ease;
    }

    .reason__toggle.is-active::before {
        transform: translateY(-50%) rotate(0deg);
    }

    .reason__panel {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-radius: 0 0 10px 10px !important;
        padding: 0 20px;
    }

    .reason__panel.is-show {
        flex-direction: column;
        gap: 20px;
        max-height: 10000px;
        padding: 20px;
    }

    .reason__panel img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .reason__text {
        width: 100%;
    }

    /* プランセクション - スマホ用 */

    .reason__item {
        width: 100%;
        margin-bottom: 10px;
    }

    .reason__tab-sp {
        width: 100%;
        padding: 20px;
        padding-right: 50px;
        background: #F13C82;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.136em;
        text-align: center;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
    }

    .reason__tab-sp img {
        display: none;
    }

    .reason__item.is-active .reason__tab-sp {
        border-radius: 10px 10px 0 0;
    }

    .reason__tab-sp::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%);
    }

    .reason__tab-sp::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%) rotate(90deg);
        transition: transform 0.3s ease;
    }

    .reason__item.is-active .reason__tab-sp::before {
        transform: translateY(-50%) rotate(0deg);
    }

    .reason__panel-sp {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0;
        margin: 0;
        background: #fff;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .reason__item.is-active .reason__panel-sp {
        max-height: 1000px;
        padding: 20px;
        margin: 0;
        border: 3px solid #F13C82;
        border-top: none;
        border-radius: 0 0 10px 10px;
    }

    .reason__panel-sp img {
        width: 100%;
        height: auto;
    }

    /* プランセクション - スマホ用 */
    .plan__tabs-pc {
        display: none !important;
    }

    .plan__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 20px;
        padding-right: 50px;
        background: #0086CD;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        cursor: pointer;
        position: relative;
        margin-top: 10px;
        border-radius: 10px;
    }

    .plan__toggle img {
        display: none;
    }

    .plan__toggle:first-of-type {
        margin-top: 0;
    }

    .plan__toggle.is-active {
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
    }

    .plan__toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%);
    }

    .plan__toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%) rotate(90deg);
        transition: transform 0.3s ease;
    }

    .plan__toggle.is-active::before {
        transform: translateY(-50%) rotate(0deg);
    }

    .plan__panel {
        display: block;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-radius: 0 0 10px 10px !important;
    }

    .plan__panel.is-show {
        max-height: 10000px;
    }

    .plan__cards {
        width: 100%;
        padding: 20px;
        flex-direction: row;
        align-items: stretch;
        border-radius: 0 0 20px 20px;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    .plan__card {
        align-items: center;
        gap: 10px;
    }


    .details__tv-row {
        flex-direction: column;
        gap: 20px;
    }

    .details__tv-row-content {
        width: 100%;
    }

    .details__tv-badge {
        width: 100%;
        text-align: center;
    }

    .details__pricing {
        width: 100%;
    }

    .details__pricing-cards {
        width: 100%;
    }

    .details__ai-images {
        flex-direction: column;
    }

    .details__ai-image-wrapper {
        width: 100%;
    }

    /* 詳細セクション - スマホアコーディオン */
    .details__inner {
        width: 95%;
        padding: 0 20px;
    }

    .details__tabs-pc {
        display: none !important;
    }

    .details__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 7px;
        padding-right: 50px;
        background: #00A5A9;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        cursor: pointer;
        position: relative;
        margin-top: 10px;
        border-radius: 10px;
    }

    .details__toggle img {
        display: none;
    }

    .details__toggle:first-of-type {
        margin-top: 0;
    }

    .details__toggle.is-active {
        border-radius: 10px 10px 0 0;
        margin-bottom: 0;
    }

    .details__toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%);
    }

    .details__toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        transform: translateY(-50%) rotate(90deg);
        transition: transform 0.3s ease;
    }

    .details__toggle.is-active::before {
        transform: translateY(-50%) rotate(0deg);
    }

    .details__panels {
        display: block;
    }

    .details__panel {
        width: 100%;
        border-radius: 0 0 10px 10px !important;
    }

    .details__section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px;
        box-shadow: none;
        border-radius: 0 !important;
    }

    .details__point-cards {
        flex-direction: column;
    }

    .details__point-card {
        gap: 10px;
    }

    .details__point-card-icon {
        order: -1;
    }

    .details__point-card-body {
        order: 0;
    }

    .details__point-badge {
        padding: 10px !important;
        font-size: 20px !important;
    }

    .details__tv-badge {
        padding: 10px !important;
        font-size: 20px !important;
    }

    .details__title,
    .details__subtitle,
    .details__pricing-title,
    .details__flow-title {
        font-size: 24px !important;
    }
}

/* ========================================
   プランセクション
======================================== */
.plan {
    width: 100%;
    background-color: #DDF1FF;
    background-image: url('images/pattern-bg.png');
    background-repeat: repeat;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.plan__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.plan__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.plan__label {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.plan__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.plan__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.plan__wrap {
    width: 100%;
}

/* PC用タブ */
.plan__tabs-pc {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    list-style: none;
}

.plan__tabs-pc li {
    flex: 0 0 400px;
}

.plan__tabs-pc li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.136em;
    color: #0086cd;
    text-align: center;
    text-decoration: none;
}

.plan__tabs-pc li.is-active a {
    height: 84px;
    padding: 26px 90px;
    background: #0086cd;
    color: #ffffff;
}

.plan__tabs-pc li.is-not-active a {
    height: 76px;
    padding: 22px 25px;
}

/* スマホ用トグル */
.plan__toggle {
    display: none;
}

.plan__panel {
    display: none;
    width: 100%;
    max-width: 1200px;
}

.plan__panel.is-show {
    display: block;
    width: 100%;
    max-height: 10000px;
    overflow: visible;
}

.plan__cards {
    width: 100%;
    max-width: 1200px;
    padding: 50px;
    background: #EFF8FF;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    gap: 34px;
	border: solid 4px #0086cd;
}

.plan__card {
    flex: 1;
    background: #ffffff;;
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    position: relative;
}

.plan__card--recommend {
    border: 4px solid #0086CD;
}

.plan__card-recommend-badge {
    position: absolute;
    top: -25px;
    left: -24px;
    width: 88px;
    height: 88px;
    background: #0086CD;
    border-radius: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 31px 7px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.389em;
    color: #fff;
    text-align: center;
}
.plan__card-recommend-badge02{
	position: absolute;
    top: -15px;
    left: -14px;
    width: 78px;
    height: 78px;
    background: #0086CD;
    border-radius: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 31px 7px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.389em;
    color: #fff;
    text-align: center;
}
.plan__card-icon {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background-image: url('images/plan-icon-1.png');
    background-size: cover;
    background-position: center;
}

.plan__card-icon--dark {
    background-image: url('images/plan-icon-2.png');
}

.plan__card-icon--apartment1 {
    background-image: url('images/plan-icon-2a.png');
}

.plan__card-icon--apartment2 {
    background-image: url('images/plan-icon-2b.png');
}

.plan__card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.plan__card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.389em;
    color: #0086CD;
    text-align: center;
}

.plan__card-speed {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan__card-speed-number {
    font-size: 60px;
    font-weight: 900;
    line-height: 1em;
    color: #0086CD;
}

.plan__card-speed-unit {
    font-size: 24px;
    font-weight: 900;
    line-height: 1em;
    color: #0086CD;
}

.plan__card-badge {
    padding: 7px 47px;
    background: #0086CD;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* ========================================
   キャンペーンセクション
======================================== */
.campaign {
    width: 100%;
    background: #fff;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.campaign__inner {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
}

.campaign__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.campaign__label {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.448em;
    color: #F13C82;
    text-align: center;
}

.campaign__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.campaign__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.campaign__row {
    display: flex;
    gap: 20px;
}

.campaign__item {
    background: #E60045;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.campaign__item--small {
    flex: 1;
    height: 85px;
    padding: 7px 60px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.448em;
    color: #fff;
    background: #ff4870;
    text-align: center;
}

.campaign__row .campaign__item--small:first-child {
    background: #ff4870;
}

.campaign__item--large {
    padding: 26px 0;
    gap: 4px;
}

.campaign__items > .campaign__item--large:first-of-type {
    background: #f10036;
}

.campaign__item-sub {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

.campaign__item-main {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

.campaign__item-group {
    display: flex;
    gap: 16px;
}

.campaign__item-note {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

/* ========================================
   詳細セクション
======================================== */
.details {
    width: 100%;
    background-color: #DDF2F3;
    background-image: url('images/pattern-bg-2.png');
    background-repeat: repeat;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.details__tab-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* PC用タブ */
.details__tabs-pc {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    list-style: none;
}

.details__tabs-pc li {
    flex: 0 0 400px;
}

.details__tabs-pc li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.136em;
    color: #00A5A9;
    text-align: center;
    text-decoration: none;
}

.details__tabs-pc li.is-active a {
    height: 84px;
    padding: 24px 60px;
    background: #00a5a9;
    color: #ffffff;
}

.details__tabs-pc li.is-not-active a {
    height: 76px;
    padding: 22px 25px;
}

/* スマホ用トグル */
.details__toggle {
    display: none;
}

.details__panels {
    position: relative;
}

.details__panel {
    width: 100%;
    max-width: 1200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.details__panel.is-show {
    width: 100%;
    max-height: 10000px;
}

.details__section {
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
	border: solid 2px #00a5a9;
}

.details__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.details__subtitle {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.448em;
    text-align: center;
}

.details__subtitle--pink {
    color: #F13C82;
}

.details__point {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.details__point-label {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.231em;
    color: #0086CD;
}

.details__point-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details__point-subtext {
    font-size: 16px;
    font-weight: 900;
    color: #0086CD;
}

.details__point-label--pink {
    color: #F13C82;
}

.details__point-badge {
    display: inline-block;
    padding: 14px 37px;
    background: #0086CD;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2em;
    width: fit-content;
}

.details__point-badge--pink {
    background: #F13C82;
}

.details__point-badges {
    display: flex;
    gap: 4px;
}

.details__point-cards {
    display: flex;
    gap: 34px;
}

.details__point-card {
    flex: 1;
    background: #EFF8FF;
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
	position: relative;
}

.details__point-card-wifi7-logo {
    position: absolute;
    top: -15px;
    left: -14px;
    width: auto;
    height: 58px;
    object-fit: contain;
    z-index: 1;
    padding: 12px;
    border-radius: 5px;
    background: linear-gradient(180deg, #3864CC 0%, #8B6EC5 54%, #AB5AB6 100%);
}

.details__point-card-icon {
    width: 147px;
    height: 147px;
    border-radius: 50%;
    overflow: hidden;
}

.details__point-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details__point-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.details__point-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.389em;
    color: #0086CD;
    text-align: center;
}

.details__point-card-info {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.details__point-card-speed {
    font-size: 60px;
    font-weight: 900;
    line-height: 1em;
    color: #0086CD;
}

.details__point-card-unit {
    font-size: 24px;
    font-weight: 900;
    line-height: 1em;
    color: #0086CD;
}

.details__point-card-badge {
    padding: 7px 47px;
    background: #0086CD;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.details__point--row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.details__point--row-reverse {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.details__point-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.details__point-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.details__point-badges-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.details__point-badge--small {
    padding: 10px 37px;
    font-size: 18px;
}

.details__tv-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.details__tv-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.details__tv-badges {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.details__tv-badge {
    padding: 10px 37px;
    background: #F13C82;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    line-height: 0.926em;
    width: fit-content;
}

.details__point-text {
    font-size: 16px;
    font-weight: 900;
    line-height: 0.75em;
    color: #0086CD;
}

.details__point-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: #000;
}

.details__tv-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.details__point-icons {
    display: flex;
    gap: 34px;
}

.details__point-icons img {
    width: 147px;
    height: 147px;
    border-radius: 30px;
}

.details__ai-images {
    display: flex;
    gap: 30px;
}

.details__ai-image-item {
    flex: 1;
    display: flex;
    flex-direction: column;
	border-radius: 20px;
	background-color: #EFF8FF;
    padding-bottom: 10px;
}

.details__ai-main-image {
    width: 100%;
    height: auto;
}

.details__ai-image-wrapper {
    position: relative;
    width: 100%;
}

.details__ai-bg-image {
    display: block;
    width: 100%;
    height: auto;
}

.details__ai-app-icon {
    position: absolute;
    bottom: 35px;
    left: 35px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.details__ai-caption {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0 9px;
    flex-wrap: nowrap;
}

.details__ai-caption-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5625em;
    color: #0086CD;
    text-align: center;
}

.details__ai-caption-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    color: #000;
    text-align: center;
}

.details__ai-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.details__ai-button {
    padding: 8px 20px;
    background: #0086CD;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* AI Wi-Fi 紹介セクション */
.details__ai-intro {
    margin: 30px 0;
    text-align: center;
}

.details__ai-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4em;
    color: #000;
    margin-bottom: 16px;
}

.details__ai-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    color: #000;
}

/* 3つの特徴パネル */
.details__ai-features {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.details__ai-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details__ai-feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}

.details__ai-feature-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6em;
    color: #636363;
    text-align: center;
}

/* 2つの詳細図解パネル */
.details__ai-diagrams {
    display: flex;
    gap: 20px;
}

.details__ai-diagram-item {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.details__ai-diagram-header {
    padding: 16px 20px;
    background: linear-gradient(180deg, #009cf5 0%, #0f92dd 54%, #0081cc 100%);
}

.details__ai-diagram-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    color: #fff;
    text-align: center;
}

.details__ai-diagram-content {
    padding: 24px 20px;
}

.details__ai-diagram-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 周波数帯図解 */
.details__ai-frequency-bands {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.details__ai-band {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 8px;
}

.details__ai-band-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4em;
    color: #000;
    text-align: center;
}

.details__ai-band-devices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.details__ai-device-icon {
    width: 40px;
    height: 40px;
    background: #0086CD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto;
}

.details__ai-switch-arrow {
    font-size: 12px;
    font-weight: 700;
    color: #0086CD;
    text-align: center;
    margin-top: 8px;
}

.details__ai-diagram-note {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-top: 16px;
    text-align: left;
}

/* AI学習図解 */
.details__ai-router-diagram {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details__ai-router-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.details__ai-router-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    background: #0086CD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details__ai-router-label {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.details__ai-router-signals {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.details__ai-signal-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #0086CD;
    border-radius: 50%;
    opacity: 0.3;
}

.details__ai-signal-circle:nth-child(1) {
    width: 120px;
    height: 120px;
}

.details__ai-signal-circle:nth-child(2) {
    width: 180px;
    height: 180px;
}

.details__ai-signal-circle:nth-child(3) {
    width: 240px;
    height: 240px;
}

.details__ai-users {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.details__ai-user {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.details__ai-user--top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.details__ai-user--left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.details__ai-user--right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.details__ai-user-icon {
    width: 50px;
    height: 50px;
    background: #9B7EDE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.details__ai-user-arrow {
    font-size: 20px;
    color: #0086CD;
    font-weight: 700;
}

/* レスポンシブ対応 */
@media (max-width: 1000px) {
    .details__ai-features {
        flex-direction: column;
    }
    
    .details__ai-diagrams {
        flex-direction: column;
    }
    
    .details__ai-frequency-bands {
        flex-direction: column;
    }
    
    .details__ai-title {
        font-size: 24px;
    }
    
    .details__ai-subtitle {
        font-size: 16px;
    }
}

.details__point-img {
    width: 434px;
    border-radius: 20px;
    object-fit: contain;
}

.details__point-img--apartment {
    width: 221px;
    height: 233px;
}

.details__divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 3px dashed #0086CD;
    margin: 0;
}

.details__divider--pink {
    border-top-color: #F13C82;
}

.details__divider--light-pink {
    border-top-color: #FFE6E4;
}

.details__tv-campaign {
    display: flex;
    gap: 30px;
}

.details__tv-item {
    flex: 1;
    background: #fff;
    border: 3px solid #F13C82;
    border-radius: 20px;
    padding: 26px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.details__tv-label {
    font-size: 18px;
    font-weight: 700;
    color: #f13c82;
    text-align: center;
    margin-top: 10px;
}

.details__tv-price {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.448em;
    color: #F13C82;
    text-align: center;
}

.details__pricing {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.details__pricing-cards {
    width: 100%;
}

.details__pricing-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.448em;
    color: #00A5A9;
    text-align: center;
}

.details__pricing-cards {
    display: flex;
    gap: 30px;
}

.details__pricing-card {
    flex: 1;
    background: #DDF2F3;
    border-radius: 20px;
    overflow: hidden;
}

.details__pricing-header {
    padding: 16px 12px;
    background: #00A5A9;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

.details__pricing-header--alt {
    background: #00A5A9;
    color: #ffffff;
}

.details__pricing-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.details__pricing-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 188px;
    gap: 0;
    margin-bottom: 11px;
}

.details__pricing-body p {
    font-size: 19.34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.details__pricing-text {
    font-size: 19.34px !important;
    font-weight: 900 !important;
    line-height: 1.448em !important;
    color: #000 !important;
}

.details__pricing-medium {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #000 !important;
}

.details__pricing-emphasis {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: #000 !important;
}

.details__pricing-small {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000 !important;
}

.details__pricing-price {
    font-size: 31.89px !important;
    font-weight: 900 !important;
    line-height: 1.164em !important;
    text-align: center !important;
    padding: 10px 0;
    color: #00A5A9 !important;
}

.details__pricing-num {
    font-size: 48.89px !important;
    font-weight: 900 !important;
    color: #00A5A9 !important;
}

.details__pricing-note {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 2em !important;
    text-align: left !important;
}

.details__terms {
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 50px;
}

.details__terms-title {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.448em;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.details__terms-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 400px;
    border: 2px solid #9ac6c7;
    overflow-y: scroll;
    padding: 2%;
}

.details__terms-item {
    display: flex;
    flex-direction: column;
}

.details__terms-subtitle {
    font-size: 13px;
    font-weight: 700;
    line-height: 2em;
    color: #000;
}

.details__terms-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 2em;
    color: #000;
}

.details__flow {
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 50px;
}

.details__flow-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
    margin-bottom: 30px;
}

.details__flow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.details__flow-step {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.details__flow-step--reverse {
    flex-direction: row-reverse;
}

.details__flow-step-image {
    flex-shrink: 0;
    width: 50%;
}

.details__flow-step-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.details__flow-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.details__flow-step-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.details__flow-step-number {
    width: 55px;
    height: 55px;
    background: #0086CD;
    border-radius: 27.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25.6px;
    font-weight: 700;
    line-height: 1.448em;
    color: #fff;
}

.details__flow-step-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.448em;
    color: #000;
}

.details__flow-step-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625em;
    color: #000;
    text-align: left;
}

.details__flow-step-text--center {
    text-align: center;
}

.details__flow-step-note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.714em;
    color: #000;
    text-align: left;
}

.details__flow-step-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flow-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 378px;
    padding: 9px 49px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.448em;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.flow-button--primary {
    background: #1AA7F2;
    color: #fff;
}

.flow-button--primary:hover {
    background: #1596db;
}

.flow-button--secondary {
    background: #0086CD;
    color: #fff;
}

.flow-button--secondary:hover {
    background: #0075b5;
}

.flow-button--tel {
    background: #005481;
    color: #fff;
}

.flow-button--tel:hover {
    background: #004570;
}

.flow-button__icon {
    position: absolute;
    top: 24px;
    right: 24.5px;
    width: 19px;
    height: 21px;
}

.flow-button__circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background: #fff;
    border-radius: 50%;
}

.flow-button__arrow {
    position: absolute;
    left: 27%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.182em;
    font-family: 'ABeeZee', Arial, sans-serif;
}

.flow-button--primary .flow-button__arrow {
    color: #1AA7F2;
}

.flow-button--secondary .flow-button__arrow {
    color: #0086CD;
}

.flow-button--tel .flow-button__arrow {
    color: #005481;
}

/* ========================================
   サービスセクション
======================================== */
.service {
    width: 100%;
    background-image: url('images/section-bg-1.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.service__inner {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.service__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.service__label {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.service__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.service__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: #000;
    text-align: center;
}

.service__section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.service__grid {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service__item {
    flex: 1 1 calc(50% - 15px);
    height: 199px;
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.service__item-icon {
    width: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.service__item-icon--net {
    background-image: url('images/service-net.png');
}

.service__item-icon--tv {
    background-image: url('images/service-tv.png');
}

.service__item-icon--phone {
    background-image: url('images/service-phone.png');
}

.service__item-icon--vod {
    background-image: url('images/service-vod.png');
}

.service__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 20px;
}

.service__item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6em;
    color: #0086CD;
}

.service__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: #000;
}

/* ========================================
   お客様の声セクション
======================================== */
.voice {
    width: 100%;
    background: #fff;
    padding: 0 0 80px;
}

.voice__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.voice__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.voice__label {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.voice__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.voice__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.voice__item {
    display: flex;
    align-items: center;
    gap: 29px;
}

.voice__item:nth-child(2) {
    flex-direction: row-reverse;
}

.voice__icon {
    width: 257px;
    height: 257px;
    border-radius: 50%;
    border: 5px solid #0086CD;
    flex-shrink: 0;
    object-fit: cover;
}

.voice__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voice__meta {
    font-size: 16px;
    font-weight: 700;
    line-height: 2em;
    color: #000;
}

.voice__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.333em;
    color: #0086CD;
}

.voice__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: #000;
}

/* ========================================
   FAQセクション
======================================== */
.faq {
    width: 100%;
    padding: 80px 0;
}

.faq__inner {
    width: 100%;
    max-width: 1016px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.faq__label {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.faq__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.448em;
    color: #000;
    text-align: center;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__item {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.faq__question {
    height: 85px;
    width: 100%;
    padding: 22px 32px;
    background: #0086CD;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq__q {
    font-family: 'Futura PT', Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.282em;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}

.faq__question-text {
    flex: 1;
    max-width: 889px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.818em;
    color: #fff;
}

.faq__icon {
    width: 30px;
    height: 30px;
    position: relative;
    flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease;
}

.faq__icon::before {
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
    color: #000;
}

/* ========================================
   フッター
======================================== */
.footer {
    width: 100%;
    background: #0086CD;
    padding: 80px 0;
}

.footer__inner {
    width: 100%;
    max-width: 1510px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer__logo {
    width: 143px;
    height: 31px;
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 2em;
    color: #fff;
    text-align: center;
}

.footer__subheading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.333em;
    color: #fff;
    text-align: center;
}

.footer__cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 378px;
    padding: 9px 49px;
    background: #fff;
    border-radius: 50px;
    animation: poyopoyo 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.footer__cta:hover {
    transform: scale(1.1) !important;
    animation: none;
}

.footer__cta-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.448em;
    color: #0086CD;
    text-align: center;
}

.footer__cta-icon {
    position: absolute;
    top: 24px;
    right: 24.5px;
    width: 19px;
    height: 21px;
}

.footer__cta-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background: #0086CD;
    border-radius: 50%;
}

.footer__cta-arrow {
    position: absolute;
    top: -1px;
    left: 4px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.182em;
    color: #fff;
    font-family: 'ABeeZee', Arial, sans-serif;
}

.footer__tel {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

.br-sp {
    display: none;
}

.br-pc {
    display: block;
}

.footer__copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.448em;
    color: #fff;
    text-align: center;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media (max-width: 1000px) {
    .wrapper {
        width: 100%;
    }

    .br-sp {
        display: block;
    }

    .br-pc {
        display: none;
    }

    .fixed-buttons {
        right: 10px;
    }

    .header {
        position: static;
        height: 0;
    }

    .header__inner {
        height: 0;
    }

    .header__logo {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .header__logo img {
        width: 150px;
        height: auto;
    }

    .header__buttons {
        position: fixed;
        top: auto;
        bottom: 10px;
        right: 10px;
        flex-direction: row-reverse;
        align-items: flex-end;
        gap: 6px;
        transform: scale(0.7);
        transform-origin: bottom right;
        z-index: 1000;
    }

    .hero__bg {
        height: auto;
        min-height: 300px;
    }

    .hero__bg-list {
        position: relative;
        height: auto;
        min-height: 300px;
    }

    .hero__bg-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        opacity: 0;
    }

    .hero__bg-item--active {
        opacity: 1;
        position: relative;
    }

    .hero__bg-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .hero {
        padding-top: 0;
        margin-top: 0;
    }

    .hero__overlay {
        position: relative;
        top: auto;
        margin-top: 0;
    }

    .hero__frame {
        width: 90%;
    }

    .hero__frame-inner,
    .hero__content {
        width: 100%;
    }

    .problems__inner {
        padding: 100px 20px 80px;
    }

    .problems__list {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .problems__item {
        width: calc(50% - 10px);
        max-width: 240px;
    }

    .reason__card,
    .plan__inner,
    .campaign__inner,
    .details__section,
    .details__terms,
    .details__flow,
    .service__inner,
    .voice__inner,
    .faq__inner,
    .footer__inner {
        width: 90%;
    }

    .reason__tabs,
    .plan__tabs,
    .details__tabs {
        width: 100%;
    }

    .reason__content {
        width: 100%;
    }

    .service__grid {
        width: 100%;
    }

    /* テレビの魅力のレイアウトを縦並びに */
    .details__tv-row {
        flex-direction: column;
        gap: 20px;
    }

    .details__tv-row-content {
        width: 100%;
    }

    .details__point-img {
        width: 100%;
        height: auto;
    }

    .details__point-img--apartment {
        max-width: 200px;
    }

    .details__point--row-reverse {
        flex-direction: column;
    }

    .details__point--row {
        flex-direction: column;
    }

    .details__point-left-content {
        width: 100%;
    }

    .hero__frame {
        width: 95%;
        padding: 0;
    }

    .hero__frame-inner {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__title {
        font-size: 18px;
    }

    .hero__cta {
        width: 90%;
        padding: 9px 20px;
    }

    .problems__inner {
        padding: 100px 20px 60px;
    }

    .problems__item {
        width: calc(50% - 10px);
        max-width: 240px;
    }
	.problems__icon {
		width: 150px;
		height: 150px;
	}
	.problems__text{
		font-size: 13px;
	}
    .reason__card {
        width: 95%;
        padding: 40px 20px;
    }

    .plan__inner,
    .campaign__inner {
        width: 95%;
    }

    .plan__tabs,
    .details__tabs {
        flex-direction: column;
        width: 100%;
    }

    .plan__tab,
    .details__tab {
        width: 100%;
        height: auto !important;
        padding: 20px !important;
    }

    .plan__cards {
        width: 100%;
        padding: 30px 20px;
        flex-direction: column;
    }

    .campaign__row {
        flex-direction: column;
    }

    .details__section,
    .details__terms,
    .details__flow {
        width: 100% !important;
        padding: 20px;
        margin: 0 auto;
    }

    .details__pricing {
        width: 100%;
    }

    .details__tabs {
        width: 100%;
    }

    .details__ai-content,
    .details__tv-campaign,
    .details__pricing-cards {
        flex-direction: column;
    }

    .details__point-img {
        width: 100%;
        height: auto;
    }

    .service__inner {
        width: 100%;
		padding: 0 5%;
    }

    .service__grid {
        width: 95%;
    }

    .service__item {
        flex: 1 1 100%;
        height: auto;
        flex-direction: row;
    }

    .service__item-icon {
		width: 40%;
        height: auto;
        min-height: 150px;
    }

    .service__item-content {
        padding: 20px;
    }

	.voice__inner{
		width: 70%;
	}
    .faq__inner,
    .footer__inner {
        width: 95%;
    }

    .voice__item,
    .voice__item:nth-child(2) {
        flex-direction: column !important;
        gap: 0px;
        margin-bottom: 5%;
    }

    .faq__question {
        width: 100%;
        padding: 15px 20px;
        height: auto;
    }

    .faq__question-text {
        max-width: none;
        font-size: 18px;
    }

    .details__flow-step-buttons {
        width: 100%;
    }

    .flow-button {
        width: 100%;
        font-size: 15px;
        padding: 10px 30px;
    }

    .details__flow-step,
    .details__flow-step--reverse {
        flex-direction: column;
    }

    .details__flow-step-image img {
        width: 100%;
        height: auto;
    }

    .details__flow-step-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title,
    .reason__title,
    .plan__title,
    .campaign__title,
    .details__title,
    .details__subtitle,
    .details__pricing-title,
    .details__flow-title,
    .service__title,
    .voice__title,
    .faq__title {
        font-size: 24px;
    }

    .hero__title {
        font-size: 16px;
    }

    .hero__cta,
    .footer__cta {
        width: 100%;
        font-size: 14px;
        padding: 9px 20px;
    }

    .hero__location-text {
        font-size: 14px;
    }

    .fixed-buttons {
        right: 5px;
        top: 10px;
    }

    .fixed-buttons__apply,
    .fixed-buttons__simulation {
        transform: scale(0.9);
    }
}
@media (max-width: 800px) {
    .details__point-cards {
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        display: flex;
        gap: 34px;
        flex-wrap: nowrap;
    }
	.details__point-card{
		flex: 1;
		border-radius: 30px;
		padding: 20px 10px;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1px;
	}
    .plan__card{
        background: #ffffff;
    }
	.details__point-card-icon,.plan__card-icon {
		width: 100px;
		height: 100px;
		border-radius: 50%;
		overflow: hidden;
   }
	.details__point-card-body {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		flex: 1;
	}
	.details__point-card-title,.plan__card-title {
		font-size: 12px;
		font-weight: 700;
		line-height: 1.389em;
		color: #0086CD;
		text-align: center;
	}
	.details__point-card-info {
		display: flex;
		align-items: baseline;
		gap: 5px;
	}
	.details__point-card-speed,.plan__card-speed-number {
		font-size: 40px;
		font-weight: 900;
		line-height: 1em;
		color: #0086CD;
	}
	.details__point-card-badge,.plan__card-badge {
		padding: 10px 30px;
		background: #0086CD;
		border-radius: 60px;
		font-size: 14px;
		font-weight: 700;
		color: #fff;
		text-align: center;
	}
}