@import url(destyle.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* ------------------------
基本設定
------------------------ */
.pc {
    display: block;
}

.sp {
    display: none;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
}

.h2_title {
    display: block;
    margin: 3rem auto;
    width: 30vw;
}

/* main {
    margin: 70px auto 3vw;
} */
main {
    margin: 0 auto;
}

/* .cta {
    position: fixed;
    right: 1rem;
    bottom: .5rem;
    width: clamp(10rem, 12.5vw, 20rem);
    z-index: 999;
    cursor: pointer;
} */
.cta {
    position: fixed;
    right: 1rem;
    bottom: .5rem;
    width: clamp(10rem, 12.5vw, 20rem);
    z-index: 999;
    cursor: pointer;
    transition: opacity .25s ease, visibility .25s ease;
}

.cta.is-hidden-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gradationblue {
    background: linear-gradient(180deg, #06b7e7 0%, #088ecb 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.img_new,
.img_repeat {
    width: 2.5vw;
}

.underline {
    border-bottom: 1px solid white;
    width: 80%;
    margin: 3% auto;
}

.co_brandskyblue {
    width: 23%;
}

/* ------------------------
ヘッダー
------------------------ */


/* 会社ロゴ */
.img_co_logo {
    width: 30vw;
    padding: 1rem;
}

.tellnav::before {
    content: '';
    display: inline-block;
    width: 14%;
    height: 12%;
    padding-bottom: 15%;
    background-image: url(../image/co_tel.webp);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 3%;
}

b {
    background-image: linear-gradient(#06b7e7, #088ecb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: .7em;
    font-size: clamp(13px, 2.2vw, 6rem);
}

.opentime {
    font-size: clamp(.6rem, 1.3vw, 6rem);
    margin-top: -2%;
}

.nav_right .list {
    margin-right: 6vw;
}

/* ------------------------
ハンバーガーメニュー
------------------------ */


:root {
    --header-h: 6.4vw;
    /* JSで実測上書き */
    --ham-gutter: 9.6vw;
    /* JSで実測上書き（ボタン幅+余白） */
    --overlay-w-pc: 4.5vw;
    /* PCパネル幅 */
    --z-header: 1100;
    --z-overlay: 1200;
    --z-button: 2000;
    /* ボタンは最前面 */
}

:root {
    --header-h: 64px;
    --ham-gutter: 96px;
    --overlay-w-pc: 45vw;
    --z-header: 1100;
    --z-overlay: 1200;
    --z-button: 2000;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    /* height: var(--header-h); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    z-index: var(--z-header);
    padding: env(safe-area-inset-top) 16px 0 16px;
}

.header-logo .img_co_logo {
    width: clamp(160px, 20vw, 36rem);
    display: block;
}

.hamburger_menu {
    position: fixed;
    top: 0;
    right: 0;
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding-right: max(16px, env(safe-area-inset-right));
    z-index: var(--z-button);
}

.hamburger_overlay {
    position: relative;
    width: 52px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger_overlay__line {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #06B7E7;
    border-radius: 2px;
    transition: transform .35s, opacity .25s, top .35s, background .25s;
}

.hamburger_overlay__line:nth-child(1) {
    top: 12px;
}

.hamburger_overlay__line:nth-child(2) {
    top: 22px;
}

.hamburger_overlay__line:nth-child(3) {
    top: 32px;
}

.hamburger_overlay.active .hamburger_overlay__line:nth-child(1) {
    top: 22px;
    transform: rotate(-45deg);
}

.hamburger_overlay.active .hamburger_overlay__line:nth-child(2) {
    opacity: 0;
}

.hamburger_overlay.active .hamburger_overlay__line:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
}

/* オーバーレイ（全画面） */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s, visibility .25s;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.nav-overlay__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(100%, var(--overlay-w-pc));
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
    padding-top: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay.active .nav-overlay__panel {
    transform: translateX(0);
}

.nav-close {
    position: absolute;
    top: calc(var(--header-h, 64px) * 0.2);
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #06B7E7;
}

.nav-overlay__content {
    width: 100%;
    text-align: center;
}

.nav-overlay__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(12px);
    transition: .60s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: .1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: .20s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: .30s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: .40s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
    transition-delay: .50s;
}

.nav-overlay.active .nav-overlay__item:nth-child(6) {
    transition-delay: .60s;
}

.nav-overlay.active .nav-overlay__item:nth-child(7) {
    transition-delay: .70s;
}

.nav-overlay__link {
    display: inline-block;
    padding: 14px 20px;
    color: #06B7E7;
    font-weight: 600;
    font-size: clamp(.8rem, 1.5vw, 3rem);
    text-decoration: none;
}

.nav-overlay__link:hover {
    color: #4a90e2;
}

.ham_footer {
    margin: 3vw;
}

.ham_footer .ham_logo {
    width: clamp(140px, 18vw, 280px);
    margin: 12px auto;
    display: block;
}

.ham_footer .link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vw;
}

.ham_footer .link a {
    color: #146C94;
    text-decoration: none;
    border-bottom: 1px solid #e6f2fb;
    padding-bottom: 4px;
    font-size: clamp(.8rem, 1.5vw, 3rem);
}

main {
    margin-top: var(--header-h);
}

body.is-locked {
    overflow: hidden;
}

.ham_footer .img_co_logo {
    width: 18vw;
}

.ham_footer.link {
    display: flex;
    flex-direction: column;
}

.ham_footer.link a {
    border-bottom: 1px solid white;
    margin: .8vw 0;
}

#section4 {
    scroll-margin-top: 10vh;
}

#section5 {
    scroll-margin-top: 5vh;
}


#section6 {
    scroll-margin-top: 5vh;
}

#section7 {
    scroll-margin-top: 5vh;
}

#section8 {
    scroll-margin-top: 15vh;
}

#section9 {
    scroll-margin-top: 10vh;
}

/* ------------------------
セクション１：ファーストビュー
------------------------ */
.section0_fv img {
    width: 100vw;
}

/* ------------------------
セクション２：お金や現金化の悩み
------------------------ */
.img_pc_brandback {
    width: 100vw;
    position: relative;
}

.troble {
    position: absolute;
    top: 45vw;
    left: 6vw;
    z-index: 999;
}

.torable1 img {
    position: relative;
}

.torable1 p {
    position: absolute;
    top: 290px;
    left: 46px;
    color: #333;
    font-size: clamp(1rem, 1.5vw, 2.5rem);
}

:root {
    --trouble-gap: clamp(16px, 2vw, 32px);
}

.troble_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90vw;
    margin: 0 auto;
}


.trouble_card {
    position: relative;
    flex: 0 1 calc((100% - (var(--trouble-gap) * 2)) / 3);
    max-width: 36vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    --plate-center: 78%;
}

.trouble_card .img_troble {
    display: block;
    width: 75%;
    height: auto;
}

.trouble_card p {
    position: absolute;
    left: 50%;
    top: var(--plate-center);
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    font-size: clamp(13px, 1.6vw, 60px);
    word-break: keep-all;
    overflow-wrap: anywhere;
}


/* ------------------------
セクション３：そんな時には「買取コウタロー」
------------------------ */
.section2_koutaro {
    margin-top: -20vw;
}

.img_solutionback {
    width: 100vw;
    position: relative;
}

.img_solution {
    width: 25vw;
}

.solution_container {
    display: flex;
    gap: 5vw;
    justify-content: center;
}

.solution {
    position: absolute;
    top: 107.5vw;
    left: 8vw;
}

.solution_card {
    position: relative;
    flex: 0 1 calc((100% - (var(--trouble-gap) * 2)) / 3);
    max-width: 36vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    --plate-center: 69%;
}

.solution_card .img_troble {
    display: block;
    width: 75%;
    height: auto;
}

.solution_card p:not(.note) {
    position: absolute;
    left: 50%;
    top: var(--plate-center);
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: #146C94;
    font-weight: 700;
    line-height: 1.5;
    font-size: clamp(13px, 1.6vw, 60px);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.solution_card p.note {
    position: absolute;
    left: 50%;
    top: calc(var(--plate-center) + 14%);
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: #146C94;
    font-weight: 500;
    line-height: 1.4;
    font-size: clamp(10px, 1.1vw, 50px);
    font-family: 'Noto Sans JP', sans-serif;
    opacity: 0.85;
}

.yellow {
    color: #FFC44E;
}

/* ------------------------
セクション３：コウタローならリスクなし
------------------------ */
.img_norisk {
    width: 80vw;
    margin-bottom: 2rem;
}

.risk_text h2 {
    font-size: clamp(1rem, 1.5vw, 3.5rem);
    margin-bottom: .5rem;
}

.risk_text p {
    font-size: clamp(.8rem, 1.3vw, 3.2rem);
}

.norisk_container1 {
    position: relative;
}

.img_koutaro_4 {
    position: absolute;
    /* transform: rotate(10deg); */
    width: 10vw;
    top: 17vw;
    left: 80vw;
}

.norisk_container2 {
    position: relative;
}

.img_koutaro_5 {
    position: absolute;
    transform: scale(-1, 1) rotate(10deg);
    width: 17vw;
    top: 17vw;
    left: 4vw;
}


.norisk_card {
    position: relative;
    flex: 0 1 calc((100% - (var(--trouble-gap) * 2)) / 3);
    max-width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    --plate-center: 40%;
    margin: auto;
}

.norisk_card h2 {
    position: absolute;
    left: 84%;
    top: var(--plate-center);
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    font-size: clamp(13px, 1.6vw, 60px);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.norisk_card p {
    position: absolute;
    left: 71.5%;
    top: calc(var(--plate-center) + 18%);
    transform: translate(-50%, -50%);
    width: 55%;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(13px, 1.4vw, 60px);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.norisk_card2 {
    position: relative;
    flex: 0 1 calc((100% - (var(--trouble-gap) * 2)) / 3);
    max-width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    --plate-center: 40%;
    margin: auto;
}

.norisk_card2 h2 {
    position: absolute;
    left: 39%;
    top: var(--plate-center);
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    font-size: clamp(13px, 1.6vw, 60px);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.norisk_card2 p {
    position: absolute;
    left: 39%;
    top: calc(var(--plate-center) + 16%);
    transform: translate(-50%, -50%);
    width: 80%;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(13px, 1.4vw, 60px);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

/* ------------------------
セクション４：シミュレーション
------------------------ */
.is-hidden {
    display: none !important;
}

.section4_simulation {
    background-image: linear-gradient(90deg, #eefaff, #06b7e7);
    padding: 1rem 0 3rem 0;
}

.sim_container {
    text-align: center;
}

.form_group {
    margin-bottom: 2.5vw;
    display: grid;
    grid-template-columns: 15vw 26vw 1fr 15vw;
    align-items: center;
    font-size: clamp(1rem, 1.5vw, 3rem);
}

.form_group label {
    background-color: #06B7E7;
    padding: 1vw;
    border-radius: 30rem;
    color: white;
}

select,
input {
    border: 1px solid black;
    border-radius: 10px;
    padding: 1.2vw;
    margin: 0 0 0 1.2vw;
    width: 46vw;
    text-align: left;
}

.sim_container {
    background-color: white;
    width: 70vw;
    margin: auto;
    padding: 4vw;
    border-radius: 1rem;
}

#price {
    width: 26vw;
}

#calc {
    background-image: linear-gradient(#06b7e7, #088ecb);
    color: white;
    padding: 1.2vw;
    border-radius: 10px;
    cursor: pointer;
}

.sim_container p {
    color: #737373;
    font-size: clamp(.9rem, 1.3vw, 2.8rem);
    margin-top: -1.1vw;
}

/* 結果 */
.result_container {
    background-color: white;
    width: 70vw;
    margin: -2vw auto 2vw;
    border-radius: 1rem;
    text-align: center;
}

.img_co_simulationarrow {
    width: 5vw;
}

.img_pc_simulationfukidasi {
    width: 30vw;
}

.img_koutaro_6 {
    width: 15vw;

}

/*  */
.result {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC44E;
    margin-top: -3vw;
}

/*  */
.balloon {
    background-color: #ffffff;
    border-radius: 1.3vw;
    filter: drop-shadow(0 0 .2rem rgba(0, 0, 0, .25)) !important;
    margin: 3vw 2vw 0 7vw;
    padding: 2.5vw;
    position: relative;
    text-align: center;
    width: 30vw;
}

.balloon::before {
    background-color: #ffffff;
    content: "";
    height: 30px;
    position: absolute;
    width: 30px;
}

/* 吹き出し右 */
.balloon-right::before {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    right: -20px;
    top: 22%;
}

/* 吹き出し下 */
.balloon-bottom::before {
    bottom: -20px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    left: 43%;
}

/* 結果 */
.result p {
    font-size: clamp(1rem, 2vw, 8rem);
}

.js-answer {
    font-size: clamp(2.2rem, 4vw, 12rem);
    font-weight: 600;
}

/* セレクト用のラッパー */
.select-wrap {
    position: relative;
    display: inline-block;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3.5vw;
}

/* 逆三角アイコン */
.select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18.5vw;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: .5vw solid transparent;
    border-right: .5vw solid transparent;
    border-top: .7vw solid #333;
    pointer-events: none;
}

/* ------------------------
セクション５：買取コウタロー取扱ブランド一覧　NEW
------------------------ */
.title {
    position: relative;
    background: white;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    z-index: 0;
    width: 19vw;
    height: 4vw;
    padding: .5vw 1vw;
    transform: translateY(2vw);
    font-size: clamp(.7rem, 1.5vw, 4rem);
    display: flex;
    align-items: center;
    gap: .5vw;
    justify-content: center;
}

.title::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    padding: .3vw;
    background: linear-gradient(#06b7e7, #088ecb);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.title2 {
    position: relative;
    background: white;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    z-index: 0;
    width: 19vw;
    height: 4vw;
    padding: .5vw 1vw;
    transform: translateY(2vw);
    font-size: clamp(.7rem, 1.5vw, 4rem);
    display: flex;
    align-items: center;
    gap: .5vw;
    justify-content: center;
}

.title2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    padding: .3vw;
    background: linear-gradient(#50D5F9, #1AA8E9);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.title_bold {
    height: 5vw;
    width: 20vw;
    margin: 0 0 -1vw 0;
    padding: .5vw 0vw;
    transform: translateY(1.2vw);
}

.new {
    margin-top: 7%;
    margin-bottom: 4%;
}

.new,
.repeat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    color: white;
}

.new_rate,
.repeat_rate {
    font-size: clamp(2.2rem, 5.5vw, 15rem);
}

.brand_container_blue {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(#06b7e7, #088ecb);
    width: 21vw;
    height: 22vw;
    border-radius: 2vw;
}

.brand_container_lightblue {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(#50D5F9, #1AA8E9);
    width: 21vw;
    height: 22vw;
    border-radius: 2vw;
}

.unit {
    font-size: clamp(2.2rem, 4vw, 15rem);
}

.up,
.down {
    display: flex;
}

.slider_track {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 6vw;
    box-sizing: border-box;
}

/* ------------------------
セクション５：買取コウタロー取扱ブランド一覧
------------------------ */
.img_brand {
    width: 20vw;
}

.img_icon {
    width: 3vw;
}

.title_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text_bold {
    font-weight: 600;
}

.brand_card {
    display: grid;
    grid-template-columns: 10vw 9vw;
    align-items: end;
    font-size: clamp(1rem, 1.5vw, 3rem);
    justify-content: center;
    color: white;
    padding-bottom: 1.2vw;
}

/* 濃い青グラデーション */
.brand_container {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(#06b7e7, #088ecb);
    width: 21vw;
    height: 17vw;
    border-radius: 2vw;
}

.title {
    position: relative;
    background: white;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    z-index: 0;
    width: 19vw;
    height: 4vw;
    padding: .5vw 1vw;
    transform: translateY(2vw);
    font-size: clamp(.7rem, 1.5vw, 4rem);
    display: flex;
    align-items: center;
    gap: .5vw;
    justify-content: center;
}

.title::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    padding: .3vw;
    background: linear-gradient(#06b7e7, #088ecb);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.gradation {
    background: linear-gradient(180deg, #06B7E7, #088ECB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #088ECB;
    font-weight: 600;
}


/* 薄い青グラデーション */
.brand_container2 {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(#50D5F9, #1AA8E9);
    width: 21vw;
    height: 17vw;
    border-radius: 2vw;
}

.title2 {
    position: relative;
    background: white;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    z-index: 0;
    width: 19vw;
    height: 4vw;
    padding: .5vw 1vw;
    transform: translateY(2vw);
    font-size: clamp(.7rem, 1.5vw, 4rem);
    display: flex;
    align-items: center;
    gap: .5vw;
    justify-content: center;
}

.title2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: clamp(2rem, 2.2vw, 4rem);
    padding: .3vw;
    background: linear-gradient(#50D5F9, #1AA8E9);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.title_bold {
    height: 5vw;
    width: 20vw;
    margin: 0 0 -1vw 0;
    padding: .5vw 0vw;
    transform: translateY(1.2vw);
}

.max_rate {
    font-size: clamp(2.2rem, 4vw, 15rem);
    margin-top: clamp(0rem, .4vw, 1rem);
    font-weight: 500;
}

.max_price {
    font-size: clamp(0.4rem, 1.3vw, 4rem);
}

.min_rate {
    font-size: clamp(1.7rem, 2.2vw, 8rem);
    margin-top: clamp(0rem, .3vw, 1rem);
    font-weight: 500;
}

.min_price {
    font-size: clamp(0.6rem, 1.3vw, 4rem);
}

/* 申込金額のプレースホルダーを左寄せにする */
#price::placeholder {
    text-align: right;
}

/* WebKit系（Chrome / Safari）対策 */
#price::-webkit-input-placeholder {
    text-align: right;
}

/* Firefox対策 */
#price::-moz-placeholder {
    text-align: right;
}

/* IE/Edge旧系対策（必要なら） */
#price:-ms-input-placeholder {
    text-align: right;
}

.flat {
    text-align: center;
    color: white;
    font-size: clamp(1.2rem, 2vw, 8rem);
    font-weight: 500;
    margin-top: clamp(0rem, .3vw, 1rem);
    margin-bottom: clamp(0rem, 2vw, 6rem);
}

.flat_rate {
    font-size: clamp(2.2rem, 5vw, 15rem);
    margin-top: clamp(0rem, .4vw, 1rem);
    font-weight: 500;
}

.other {
    text-align: center;
    color: white;
    font-size: clamp(2rem, 4.2vw, 8rem);
    font-weight: 500;
    margin-top: clamp(0rem, .3vw, 1rem);
    margin-bottom: clamp(0rem, 2vw, 6rem);
}

.other .flat_rate {
    font-size: clamp(2.2rem, 4.5vw, 15rem);
}

.other .rate {
    font-size: clamp(2rem, 3.5vw, 10rem);
}

.rate {
    font-size: clamp(2.2rem, 4vw, 15rem);
}

.gradation-container {
    background-color: white;
    padding: .4vw;
    font-size: clamp(1rem, 2vw, 8rem);
    font-weight: 600;
}



.orange {
    color: #F2754F;
    font-size: clamp(1.2rem, 2.2vw, 8.5rem);
    font-weight: 600;
}


.speed {
    background: linear-gradient(180deg, #06B7E7, #088ECB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speed .orange {
    color: #F2754F;
    -webkit-text-fill-color: currentColor;
    background: none;
    -webkit-background-clip: border-box;
}

.speed .yellow {
    color: #FFC44E;
    -webkit-text-fill-color: currentColor;
    background: none;
    -webkit-background-clip: border-box;
}

.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 21vw;
}

.under_line {
    border-bottom: 1px solid white;
    display: inline;
    margin-bottom: 1vw;
}



/* .slider_container {
    display: flex;
    gap: 2vw;
    overflow: hidden;
    width: 90vw;
    margin: auto;
} */


.section5_brand h2 {
    color: #146C94;
    font-weight: 600;
    text-align: center;
    font-size: clamp(1rem, 1.7vw, 3rem);
    margin-top: 4vw;
}

.coment {
    width: 80vw;
    margin: auto;
    margin-bottom: 3vw;
    margin-top: clamp(-4vw, 12vw, 0);
    font-size: clamp(.8rem, 1.3vw, 2vw);
}

.section5_brand {
    position: relative;
}

.all_brand {
    position: absolute;
    top: 1vw;
    left: 5vw;
}

/* ------------------------
セクション６：買取の流れ
------------------------ */
.section6_step {
    text-align: center;
    padding: 3vw 0 6vw 0;
}

.img_steptitle {
    width: 12vw;
    margin: 3vw;
}

.img_step {
    width: 20vw;
}

.img_arrow {
    width: 2vw;
}

.step_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    position: relative;
}

.step_card_text h2 {
    font-size: clamp(13px, 1.6vw, 60px);
}

.step_card_text p {
    text-align: left;
    font-size: clamp(10px, 1.2vw, 50px);
}

.step_holder {
    position: relative;
}

.step_card_text {
    display: flex;
    flex-direction: column;
    gap: 15vw;
    width: 17vw;
    position: absolute;
    top: 8vw;
    left: 1.5vw;
    line-height: 1.8vw;
}

.img_koutaro_3 {
    position: absolute;
    transform: rotate(10deg);
    width: 17vw;
    top: 31vw;
    left: 81vw;
}



/* ------------------------
セクション７：買取コウタロー取扱ブランド一覧
------------------------ */
.section7_notice {
    text-align: center;
    /* background-color: #EEFAFF; */
    /* background-image: linear-gradient(#eefaffcc, #eefaff 20% 50% 80%, #eefaffcc); */
    background-image: linear-gradient(to bottom,
            #eefaff00 0%,
            #eefaff35 3%,
            #EEFAFF 24%,
            #EEFAFF 76%,
            #eefaff35 97%,
            #eefaff00 100%);
    padding: 3vw;
}

.img_noticetitle {
    width: 10vw;
}

.news {
    max-width: 980px;
    margin: 0 auto;
    padding: 16px;
}

.news_title {
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 28px);
    margin: 0 0 12px;
}

.news_scroller {
    max-height: clamp(15rem, 65vh, 60rem);
    overflow-y: auto;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
    width: 70vw;
    margin: 3vw auto;
}

.news_scroller::-webkit-scrollbar {
    width: 10px;
}

.news_scroller::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}

.news_scroller::-webkit-scrollbar-track {
    background: transparent;
}

.news_scroller {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}


.news_item {
    padding: 1vw 0;
    text-align: left;
}

.news_item:last-child {
    border-bottom: 0;
}

.news_date {
    display: block;
    font-weight: 700;
    color: #222222;
    margin-bottom: 6px;
    font-size: clamp(13px, 1.6vw, 60px);
}

.news_head {
    font-size: clamp(16px, 1.8vw, 24px);
    color: #146C94;
    line-height: 1.35;
    font-size: clamp(13px, 1.6vw, 60px);
    font-weight: 700;
}

.news_body {
    margin: 0;
    line-height: 1.9;
    font-size: clamp(13px, 1.5vw, 60px);
}

.dashed {
    background-size: 24px 4px;
    background-image: linear-gradient(to right, #D9D9D9 11px, transparent 6px);
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 5px;
    margin: 1vw 0;
}

/* ------------------------
セクション８：よくある質問（完全置換版）
------------------------ */
.section8_faq {
    width: min(95vw, 75vw);
    margin: 0 auto;
}

.img_faqtitle {
    display: block;
    width: 13vw;
    margin: 3vw auto;
}

.faq_item {
    margin: 2vw 0;
    font-size: clamp(13px, 1.6vw, 60px);
}

/* 質問ヘッダ（閉） */
.question {
    display: grid;
    grid-template-columns: clamp(20px, 3vw, 70px) 1fr clamp(20px, 1.8vw, 50px);
    align-items: center;
    gap: 1vw;
    width: 100%;
    padding: 1.4vw 1.8vw;
    background: #fff;
    color: #0b7fb7;
    border: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    text-align: left;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

/* Qアイコン画像 */
.qbadge {
    display: grid;
    place-items: center;
    width: clamp(20px, 3vw, 70px);
    height: clamp(20px, 3vw, 70px);
}

.qbadge img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右端の＋記号（CSSで描画） */
.toggle {
    position: relative;
    width: clamp(20px, 1.8vw, 50px);
    height: clamp(20px, 1.8vw, 50px);
}

.toggle::before,
.toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background: #0aa6dc;
    transition: transform .25s ease, background .25s ease;
}

.toggle::after {
    transform: rotate(90deg);
}

/* 開いた状態（背景反転＋×） */
.question[aria-expanded="true"] {
    background: linear-gradient(180deg, #06B7E7, #088ECB);
    color: #fff;
}

.question[aria-expanded="true"] .toggle {
    transform: rotate(45deg);
}

.question[aria-expanded="true"] .toggle::before,
.question[aria-expanded="true"] .toggle::after {
    background: #fff;
}

/* 答え本体（アニメで開閉） */
.answer {
    display: grid;
    grid-template-columns: clamp(20px, 3vw, 70px) 1fr;
    align-items: start;
    /* ← 中央(center)から上寄せ(start)へ変更 */
    gap: 1vw;
    overflow: hidden;
    max-height: 0;
    padding: 0 1.8vw;
    background: #fff;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    transition: max-height .28s ease, padding .28s ease;
    font-size: clamp(13px, 1.6vw, 60px);
}

.answer.open {
    padding: 1.4vw 1.8vw;
}

/* Aアイコン画像 */
.abadge {
    display: grid;
    place-items: center;
    width: clamp(20px, 3vw, 70px);
    height: clamp(20px, 3vw, 70px);
    margin: 1vw 1vw 0 0;
}

.abadge img {
    width: 100%;
    height: auto;
    display: block;
}

.answer p {
    line-height: 1.9;
    color: #333;
    font-size: clamp(13px, 1.6vw, 60px);
}

/* ------------------------
セクション９：会社概要
------------------------ */
.section9_company {
    text-align: center;
    padding: 3vw;
}

.section9_company img {
    width: 10vw;
}

.company_info {
    width: 90%;
    margin: 3vw auto;
}

.company_table {
    width: 80vw;
    margin: auto;
    border-collapse: collapse;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 1.6vw, 60px);
}

.company_table th,
.company_table td {
    border: 1px solid #fff;
    padding: 1vw 1.5vw 1vw 4vw;
    text-align: left;
}

.company_table th {
    background-color: #146C94;
    color: #fff;
    text-align: left;
    width: 25%;
    font-weight: 600;
}

.company_table td {
    background-color: #D3F1FF;
    color: #333;
    line-height: 1.6;
}

.company_table a {
    color: #333;
    text-decoration: none;
}

.company_table a:hover {
    text-decoration: underline;
}


/* ------------------------
フッター
------------------------ */
footer {
    background-color: #146C94;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 2vw;
    font-size: clamp(.8rem, 1.2vw, 2rem);
}

footer img {
    width: 18vw;
}

.link {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.link a {
    border-bottom: 1px solid white;
    /* margin: 0 2vw; */
}

/* ========== レスポンシブ ========== */





/* ------------------------
スマホ設定
------------------------ */
@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    main {
        margin: 0 auto;
        margin-top: clamp(7vw, 15vw, 20vw);
        margin-bottom: clamp(-3rem, 0vw, -5rem);
    }

    .cta {
        position: fixed;
        right: .5rem;
        bottom: .5rem;
        width: clamp(8rem, 10vw, 10rem);
        z-index: 999;
        cursor: pointer;
    }

    /* ------------------------
    ヘッダー
    ------------------------ */


    /* 会社ロゴ */
    .ham_footer .link a {
        font-size: clamp(.8rem, 1.5vw, 3rem);
    }

    .img_co_logo {
        width: 40vw;
    }

    :root {
        --overlay-w-pc: 100vw;
    }

    .header-logo .img_co_logo {
        width: clamp(140px, 40vw, 280px);
    }

    .hamburger_overlay {
        width: 48px;
        height: 44px;
    }

    .ham_footer .img_co_logo {
        width: clamp(30vw, 55vw, 75vw);
    }

    .nav-overlay__link {
        font-size: clamp(4vw, 4.5vw, 5vw);
    }

    #section6 {
        scroll-margin-top: -20vh;
    }

    /* ------------------------
    セクション１：ファーストビュー
    ------------------------ */

    /* ------------------------
    セクション２：お金や現金化の悩み
    ------------------------ */
    .sp_imgback {
        width: 100vw;
    }


    .h2_title {
        width: 72vw;
    }

    .troble {
        top: 140vw;
    }

    .trouble_card {
        flex: 0 2 50%;
        max-width: 520px;
    }

    .trouble_card p {
        width: 100%;
        font-size: clamp(.8rem, 2.7vw, 2rem);
    }

    .trouble_card .img_troble {
        width: 95%;
    }

    /* ------------------------
    セクション３：そんな時には「買取コウタロー」
    ------------------------ */
    .sp_title {
        display: block;
        margin: 3rem auto;
        width: 72vw;
    }

    .img_solution {
        width: 80vw;
    }

    .solution_container {
        flex-direction: column;
        gap: 2vw;
        align-items: center;
    }

    .solution {
        position: absolute;
        top: 303.5vw;
        left: 12vw;
    }

    .solution_card {
        max-width: 100vw;
    }

    .solution_card p:not(.note) {
        font-size: clamp(1rem, 4.5vw, 5rem);
    }

    .solution_card p.note {
        font-size: clamp(.7rem, 3.5vw, 5rem);
    }

    /* ------------------------
    セクション３：コウタローならリスクなし
    ------------------------ */
    .img_norisk {
        width: 91vw;
        margin-bottom: 2rem;
    }

    .risk_text h2 {
        font-size: clamp(1rem, 1.5vw, 3.5rem);
        margin-bottom: .5rem;
    }

    .risk_text p {
        font-size: clamp(.8rem, 1.3vw, 3.2rem);
    }



    .norisk_card {
        max-width: 85vw;
        --plate-center: 12%;
        align-items: center;
    }

    .norisk_card h2 {
        left: 51%;
        width: 80%;
        font-weight: 500;
        font-size: clamp(1.2rem, 4vw, 2.5rem);
    }

    .norisk_card p {
        left: 52%;
        top: calc(var(--plate-center) + 15%);
        width: 80%;
        font-weight: 300;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    .norisk_card2 {
        max-width: 85vw;
        --plate-center: 13%;
        align-items: center;
    }

    .norisk_card2 h2 {
        left: 53%;
        width: 80%;
        font-weight: 500;
        font-size: clamp(1.2rem, 4vw, 2.5rem);
    }

    .norisk_card2 p {
        left: 53%;
        top: calc(var(--plate-center) + 10%);
        width: 80%;
        font-weight: 300;
        font-size: clamp(.6rem, 3.2vw, 5rem);
    }

    .img_koutaro_4 {
        width: 21vw;
        top: 75vw;
        left: 75vw;
    }

    .img_koutaro_5 {
        width: 34vw;
        top: 67vw;
        left: -3vw;
    }

    /* ------------------------
    セクション４：シミュレーション
    ------------------------ */
    .section4_simulation {
        padding: 3vw 0 17vw 0;
    }

    .sim_container {
        width: 90vw;
    }

    .card {
        width: 80vw;
        padding: 3.5vw 2vw;
        margin: 2vw 0;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    #price {
        width: 73vw;
        padding: 3.5vw 2vw;
        margin: 2vw 0;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }


    .form_group label {
        padding: 2vw;
        margin-top: 3vw;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    .form_group2 .attention {
        margin-left: -3vw;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    #calc {
        background-image: linear-gradient(#06b7e7, #088ecb);
        color: white;
        padding: 3vw;
        border-radius: 3vw;
        cursor: pointer;
        width: 40vw;
        margin: 5vw 2vw;
        font-size: clamp(1.2rem, 4.6vw, 2.5rem);
    }

    /* カードの種類 */
    .form_group1 {
        display: grid;
        grid-template-columns: 32vw;
        grid-template-rows: 1fr;
        grid-template-areas: "type"
            "card"
    }

    /* 申込金額 */
    .form_group2 .amount {
        grid-area: amount;
        width: 32vw;
    }

    .form_group2 .price {
        grid-area: price;
    }

    .form_group2 .yen {
        grid-area: yen;
        align-self: end;
        padding-right: .5rem;
        font-size: clamp(1rem, 4.4vw, 7rem);
        padding-right: clamp(.5rem, 1.5vw, 1rem);
        padding-bottom: clamp(.5rem, 1.5vw, 1rem);
    }

    .form_group2 .attention {
        grid-area: attention;
        color: #737373;
    }

    .form_group2 .calc {
        grid-area: calc;
        justify-self: center;
    }

    .form_group2 {
        display: grid;
        grid-template-areas:
            "amount amount"
            "price  yen"
            "attention attention"
            "calc   calc";
        grid-template-rows: auto auto auto auto;
        grid-template-columns: 1fr auto;
    }

    /* 結果 */
    .result_container {
        width: 90vw;
        margin: -7vw auto 2vw;

    }

    .img_co_simulationarrow {
        width: 7vw;
    }

    .img_koutaro_6 {
        width: 40vw;
        margin-bottom: 3vw;
    }


    /* 結果 */
    .result p {
        font-size: clamp(1.1rem, 3vw, 8rem);
    }

    .js-answer {
        font-size: clamp(2rem, 8vw, 10rem);
        font-weight: 600;
    }

    /*  */
    .result {
        flex-direction: column;
        margin-top: -3vw;
    }

    /*  */
    .balloon {
        border-radius: 2vw;
        margin: 7vw 0 2vw 0;
        padding: 4vw;
        width: 69vw;
    }

    .balloon::before {
        background-color: #ffffff;
        content: "";
        height: 30px;
        position: absolute;
        width: 30px;
    }

    /* 吹き出し右 */
    .balloon-right::before {
        clip-path: polygon(0 0, 0 100%, 100% 50%);
        right: -20px;
        top: 22%;
    }

    /* 吹き出し下 */
    .balloon-bottom::before {
        bottom: -20px;
        clip-path: polygon(0 0, 50% 75%, 100% 0);
        left: 43%;
    }

    /* 結果非表示 */
    .is-hidden {
        display: none;
    }

    /* ------------------------
        ブランド
        ------------------------ */
    .img_brand {
        width: 20vw;
    }

    .img_icon {
        width: 8vw;
        margin-left: 1vw;
    }

    .title_container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .all_brand {
        width: 90vw;
    }

    .brand {
        width: 80vw;
    }

    .brand_card {
        grid-template-columns: 38vw 35vw;
        font-size: clamp(1rem, 1.5vw, 3rem);
        padding-bottom: 6.2vw;
    }

    /* 濃い青グラデーション */
    .brand_container {
        width: 80vw;
        height: 65vw;
        border-radius: 10vw;
    }

    .title {
        border-radius: clamp(2rem, 7vw, 8rem);
        width: 65vw;
        height: 12vw;
        padding: 2.5vw 1vw;
        transform: translateY(7vw);
        font-size: clamp(1.2rem, 4vw, 2.5rem);
        gap: 2vw;
    }

    .title::before {
        border-radius: clamp(2rem, 7vw, 8rem);
        padding: 1vw;
        z-index: -1;
    }

    .gradation {
        background: linear-gradient(180deg, #06B7E7, #088ECB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #088ECB;
        font-weight: 600;
    }


    /* 薄い青グラデーション */
    .brand_container2 {
        width: 80vw;
        height: 65vw;
        border-radius: 10vw;
    }

    .title2 {
        border-radius: clamp(2rem, 2.2vw, 4rem);
        width: 65vw;
        height: 12vw;
        padding: 2.5vw 1vw;
        transform: translateY(7vw);
        font-size: clamp(1.2rem, 1.5vw, 4rem);
        gap: 2vw;
    }

    .title2::before {
        border-radius: clamp(2rem, 2.2vw, 4rem);
        padding: 1vw;
        z-index: -1;
    }

    .title_bold {
        width: 70vw;
        height: 15vw;
        margin: 0 0 -3vw 0;
        padding: .5vw 0vw;
        transform: translateY(4.5vw);
    }


    .max_rate {
        font-size: clamp(3.8rem, 15vw, 12rem);
        margin-top: clamp(0rem, .4vw, 1rem);
        font-weight: 500;
    }

    .max_price {
        font-size: clamp(1.3rem, 4vw, 3.3rem);
    }

    .min_rate {
        font-size: clamp(2.7rem, 10vw, 11rem);
        margin-top: clamp(0rem, .3vw, 1rem);
        font-weight: 500;
    }

    .min_price {
        font-size: clamp(1.3rem, 3vw, 3.3rem);
    }

    .flat,
    .other {
        font-size: clamp(2.2rem, 9vw, 4.5rem);
        font-weight: 500;
        margin-top: clamp(0rem, .3vw, 1rem);
        margin-bottom: clamp(0rem, 2vw, 6rem);
        position: relative;
        top: -3vw;
    }

    .flat_rate,
    .other_rate {
        font-size: clamp(4rem, 20vw, 13rem);
        margin-top: clamp(0rem, .4vw, 1rem);
        font-weight: 500;
    }

    .other_rate {
        font-size: clamp(4rem, 18vw, 13rem);
    }

    .other {
        text-align: center;
        color: white;
        /* font-size: clamp(1.2rem, 2vw, 8rem); */
        font-size: clamp(2.2rem, 15vw, 11rem);
        font-weight: 500;
        margin-top: clamp(0rem, .3vw, 1rem);
        margin-bottom: clamp(0rem, 2vw, 6rem);
    }

    .other .flat_rate {
        font-size: clamp(2.2rem, 4.5vw, 15rem);
    }

    .other .rate {
        /* font-size: clamp(2rem, 3.5vw, 10rem); */
        font-size: clamp(2.2rem, 13vw, 11rem);
    }

    .gradation-container {
        padding: 1vw;
        font-size: clamp(1.8rem, 6vw, 6rem);
    }



    .orange {
        color: #F2754F;
        font-size: clamp(2rem, 6.2vw, 6.2rem);
        font-weight: 600;
    }


    .speed .orange {
        color: #F2754F;
        -webkit-text-fill-color: currentColor;
        background: none;
        -webkit-background-clip: border-box;
    }



    .slider_container {
        justify-content: space-around;
        gap: 12vw;
        padding: 0 4vw;
        width: 90vw;
    }


    .section5_brand h2 {
        color: #146C94;
        font-weight: 600;
        text-align: center;
        font-size: clamp(1.2rem, 6vw, 3rem);
        margin-top: 10vw;
    }

    .coment {
        font-size: clamp(.8rem, 3.5vw, 5rem);
        font-weight: 300;
        margin-top: -4vw;
        line-height: 6vw;
    }

    .rate {
        font-size: clamp(2.2rem, 13vw, 11rem);
    }

    /* ------------------------
    セクション６：買取の流れ
    ------------------------ */
    .section6_step {
        padding: 50vw 0 6vw 0;
    }

    .img_steptitle {
        width: 38vw;
        margin: 10vw;
    }

    .img_step {
        width: 80vw;
    }

    .img_arrow {
        width: 10vw;
        margin: 4vw;
    }

    .step_container {

        flex-direction: column;
    }

    .step_card_text h2 {
        font-size: clamp(1.2rem, 6vw, 3rem);
        font-weight: 600;
    }

    .step_card_text p {
        text-align: left;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    .step_card_text {
        flex-direction: column;
        gap: 58vw;
        width: 67vw;
        top: 34vw;
        left: 6.5vw;
        line-height: 6.8vw;
    }

    .img_koutaro_3 {
        width: 43vw;
        top: 624vw;
        left: 41vw;
    }

    .select-wrap::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -43.5vw;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 1.5vw solid transparent;
        border-right: 1.5vw solid transparent;
        border-top: 1.7vw solid #333;
        pointer-events: none;
    }

    /* ------------------------
    セクション７：お知らせ
    ------------------------ */

    .section7_notice {
        text-align: center;
        background-image: linear-gradient(to bottom,
                #eefaff00 0%,
                #eefaff35 3%,
                #EEFAFF 24%,
                #EEFAFF 80%,
                #eefaff35 97%,
                #eefaff00 100%);
        padding: 10vw 0;
    }

    .img_noticetitle {
        width: 30vw;
        margin: 5vw 0;
    }

    .news {
        max-width: 980px;
        margin: 0 auto;
        padding: 16px;
    }

    .news_title {
        font-weight: 700;
        font-size: clamp(18px, 2.2vw, 28px);
        margin: 0 0 12px;
    }

    .news_scroller {
        max-height: clamp(45rem, 40vh, 35rem);
        overflow-y: auto;
        padding: 24px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-gutter: stable both-edges;
        width: 90vw;
        margin: 3vw auto;
    }

    .news_scroller::-webkit-scrollbar {
        width: 10px;
    }

    .news_scroller::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 8px;
    }

    .news_scroller::-webkit-scrollbar-track {
        background: transparent;
    }

    .news_scroller {
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 transparent;
    }


    .news_item {
        padding: 1vw 0;
        text-align: left;
    }

    .news_item:last-child {
        border-bottom: 0;
    }

    .news_date {
        font-weight: 400;
        color: #222222;
        font-size: clamp(.5rem, 3vw, 4.5rem);
    }

    .news_head {
        font-weight: 500;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    .news_body {
        line-height: 1.5;
        font-weight: 300;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    /* ------------------------
    セクション８：よくある質問
    ------------------------ */
    .section8_faq {
        width: min(100vw, 87vw);
    }

    .img_faqtitle {
        width: 47vw;
        margin: 6vw auto;
    }

    .faq_item img {
        width: 8vw;
    }

    .faq_item {
        margin: 10vw 0;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    /* 質問ヘッダ（閉） */
    .question {
        grid-template-columns: 11.5vw 1fr 6.8vw;
        padding: 5.4vw 1.8vw;
    }

    /* Q丸バッジ（閉：青地に白文字） */
    .qbadge {
        width: clamp(35px, 3vw, 70px);
        height: clamp(35px, 3vw, 70px);
        font-weight: 400;
        font-size: clamp(1.3rem, 2vw, 6rem);
    }


    .toggle::after {
        transform: rotate(90deg);
    }


    /* 答え本体（アニメで開閉） */
    .answer {
        grid-template-columns: 11.5vw 1fr 6.8vw;
        font-size: clamp(1.3rem, 2vw, 6rem);
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    .answer.open {
        padding: 4.4vw 1.8vw;
    }

    /* Aバッジ と テキスト */
    .abadge {
        width: clamp(35px, 3vw, 70px);
        height: clamp(35px, 3vw, 70px);
        font-weight: 400;
        font-size: clamp(1.3rem, 2vw, 6rem);
    }

    .answer p {
        line-height: 1.9;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    /* ------------------------
    セクション９：会社概要
    ------------------------ */
    .section9_company {
        padding: 0;
    }

    .section9_company img {
        width: 31vw;
        margin: 5vw 0;
    }

    .company_info {
        width: 95%;
        margin: 3vw auto;
    }

    .company_table {
        width: 95vw;
        margin: auto;
        border-collapse: collapse;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: clamp(.8rem, 3.5vw, 5rem);
    }

    .company_table th,
    .company_table td {
        border: 1px solid #fff;
        padding: 4.5vw 0vw 4.5vw 1vw;
        text-align: left;
    }

    .company_table th {
        background-color: #146C94;
        color: #fff;
        text-align: left;
        width: 32%;
        font-weight: 400;
    }

    .company_table td {
        background-color: #D3F1FF;
        color: #333;
        line-height: 1.6;
    }

    .company_table a {
        color: #333;
        text-decoration: none;
    }

    .company_table a:hover {
        text-decoration: underline;
    }


    /* ------------------------
    フッター
    ------------------------ */
    .pc_footer {
        display: none !important;
    }

    .sp_footer {
        text-align: center;
        padding: 4vw 0;
    }

    footer {
        background-color: #146C94;
        color: white;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 2vw;
        font-size: clamp(.8rem, 3.2vw, 4.8rem);
    }

    footer img {
        width: 45vw;
        margin: 2vw;
    }

    .link {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 4vw;
        margin: 2vw;
    }

    .link a {
        border-bottom: 1px solid white;
        margin: .8vw 0;
    }

    .sp_footer p {
        margin: 2vw;
    }
}






/* ------------------------
PC用：スライダー矢印
------------------------ */
/* =========================
   スライダー（PC）
   ========================= */
.slider_container {
    position: relative;
    overflow: visible;
    width: 85vw;
    margin: 0 auto;
}

/* 実際にスクロールする行 */
.slider_track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 6vw;
    box-sizing: border-box;
}

/* カードを「見た目だけ」小さくする */
.slider_track .card {
    flex: 0 0 20vw;
    max-width: 20vw;
    transform: scale(0.88);
    transform-origin: top left;
    margin-bottom: calc(2vw * (1 - 0.88));
}

/* 矢印ボタン（固定） */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    height: 4vw;
    border: .2vw solid #06B7E7;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10;
    color: #06B7E7;
    font-size: clamp(.7rem, 1.5vw, 4rem);
    font-weight: 600;
    line-height: 1;
}

.slider-arrow.prev {
    left: -1.5vw;
}

.slider-arrow.next {
    right: -6.5vw;
}

/* スクロールバーいらなければ */
.slider_track::-webkit-scrollbar {
    height: 0;
}

/* =========================
   スマホは従来通り
   ========================= */
@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }

    .slider_container {
        width: 100%;
        display: flex;
    }

    .slider_track {
        padding: 0;
        gap: 4vw;
    }

    .slider_track .card {
        transform: none;
        flex: 0 0 auto;
        max-width: none;
    }

    .cta {
        right: .5rem;
        bottom: .5rem;
        width: clamp(8rem, 10vw, 10rem);
        /* ここでは position とかサイズだけ変える */
    }

    /* SPでも隠せるようにしておく */
    .cta.is-hidden-cta {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}