:root {
--navy: #061a46;
--blue: #0658df;
--blue2: #1e78ff;
--green: #12b849;
--orange: #ff7a1a;
--light: #f5f9ff;
--line: #e5edf8;
--text: #0c1b3f;
--muted: #52627d;
--white: #fff;
--shadow: 0 18px 45px rgba(11, 45, 105, .09);
}
* {
box-sizing: border-box
}
html {
scroll-behavior: smooth
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
color: var(--text);
line-height: 1.7;
background: #fff
}
a {
color: inherit;
text-decoration: none
}
img {
max-width: 100%;
height: auto;
display: block
}
.container {
width: min(1120px, calc(100% - 48px));
margin-inline: auto
}
.narrow {
width: min(940px, calc(100% - 48px))
}
.site-header {
position: sticky;
top: 0;
z-index: 20;
background: rgba(255, 255, 255, .9);
backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(229, 237, 248, .9)
}
.header-inner {
height: 76px;
display: flex;
align-items: center;
gap: 28px
}
.brand {
display: flex;
align-items: center;
overflow: hidden;
width: 250px;
}
.brand-logo {
width: 250px;
height: 60px;
object-fit: contain;
object-position: left center
}
.global-nav {
margin-left: auto;
display: flex;
gap: 28px;
font-weight: 700;
font-size: 14px
}
.global-nav a:hover {
color: var(--blue)
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
border-radius: 10px;
font-weight: 800;
transition: .2s;
border: 1px solid transparent;
white-space: nowrap
}
.btn:hover {
transform: translateY(-3px);
filter: brightness(1.1)
}
.btn-small {
height: 44px;
padding: 0 18px;
font-size: 14px
}
.btn-large {
min-height: 74px;
padding: 14px 22px;
font-size: 22px
}
.btn-line {
background: linear-gradient(135deg, #16c956, #069d35);
color: #fff;
box-shadow: 0 14px 28px rgba(18, 184, 73, .22);
}
.btn-outline {
height: 56px;
padding: 0 28px;
border-color: #b9c9e7;
color: var(--blue);
background: #fff
}
.btn-outline:hover {
background-color: #D4E3F3;
border-color: #341AEF;
}
.line-badge,
.line-circle {
display: inline-flex;
align-items: center;
justify-content: center;
background: #fff;
color: var(--green);
font-weight: 900
}
.line-badge {
border-radius: 999px;
padding: 3px 8px;
font-size: 12px
}
.line-circle {
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 14px
}
.free-label {
background: #ffe54b;
color: #09304b;
border-radius: 8px;
padding: 4px 8px;
font-size: 15px;
margin-left: auto
}
.section-soft {
background: linear-gradient(180deg, #fff 0%, #f3f8ff 100%)
}
.hero {
padding: 72px 0 84px;
position: relative;
overflow: hidden;
}
.hero::before{
content:"";
position:absolute;
inset:0;
background-image: url("../img/hero_bg.jpg");
background-size:cover;
background-position:center;
opacity:.30; /* ←ここで透明度調整 */
z-index:0;
}
.hero > *{
position:relative;
z-index:1;
}
.hero-grid {
display: grid;
grid-template-columns: 1fr 1.05fr;
gap: 70px;
align-items: center
}
.eyebrow {
display: inline-flex;
background: var(--blue);
color: #FFF;
font-weight: 700;
border-radius: 999px;
padding: 8px 18px;
margin: 0 0 24px
}
.hero h1 {
font-size: 52px;
line-height: 1.22;
letter-spacing: -.04em;
margin: 0 0 24px;
color: #071a44
}
.lead {
font-size: 18px;
font-weight: 700;
margin: 0 0 24px
}
.mini-points {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin: 28px 0
}
.mini-point {
display: flex;
flex-direction: column;
align-items: center;
gap: 7px;
text-align: center;
font-size: 15px;
font-weight: 700;
color: #16356c
}
.mini-point img {
width: 60px;
height: 60px;
border-radius: 50%;
background: #FFF;
padding: 9px
}
.hero-actions {
display: grid;
gap: 14px;
max-width: 520px
}
.trust-list {
display: flex;
flex-wrap: wrap;
gap: 5px 10px;
list-style: none;
padding: 0;
margin: 15px 0 0;
color: #31537e;
font-size: 18px;
font-weight: 700
}
.trust-list li::before {
content: "✓";
color: var(--blue);
margin-right: 6px
}
.hero-panel {
display: grid;
gap: 18px
}
.score-image-card {
background: #fff;
border: 1px solid var(--line);
border-radius: 18px;
padding: 8px;
box-shadow: var(--shadow)
}
.score-image-card img {
width: 100%;
border-bottom: 1px solid var(--line)
}
.ai-targets {
background: #fff;
border: 1px solid var(--line);
border-radius: 18px;
padding: 22px;
box-shadow: var(--shadow)
}
.ai-targets p {
margin: 0 0 14px;
font-weight: 700
}
.target-list {
display: flex;
gap: 24px;
}
.target-list span {
width: 31%;
display: inline-flex;
align-items: center;
gap: 10px;
border: 1px solid var(--line);
border-radius: 10px;
font-weight: 900;
background: #fff;
padding: 0.5em;
}
.target-list span::before {
content: "";
width: 28px;
height: 28px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
/* ChatGPT */
.target-list span:nth-child(1)::before {
background-image: url("../img/ai_icon1.png");
}
/* Gemini */
.target-list span:nth-child(2)::before {
background-image: url("../img/ai_icon2.png");
}
/* Claude */
.target-list span:nth-child(3)::before {
background-image: url("../img/ai_icon3.png");
}
.ai-targets small {
display: block;
margin-top: 12px;
color: var(--muted)
}

section h2 {
font-size: 32px;
line-height: 1.35;
text-align: center;
margin: 0 0 36px;
letter-spacing: -.02em
}
.reason {
padding: 76px 0
}
.reason-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px
}
.reason-card {
text-align: center;
padding: 24px 16px
}
.reason-card img {
width: 60px;
height: 60px;
margin: 0 auto 16px;
border-radius: 50%;
background: #eef5ff;
padding: 10px
}
.reason-card h3 {
font-size: 17px;
margin: 0 0 8px
}
.reason-card p {
font-size: 14px;
color: var(--muted);
margin: 0
}
.flow {
padding: 76px 0 120px 0;
}
.flow-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px
}
.flow-card {
position: relative;
background: #fff;
border: 1px solid var(--line);
border-radius: 18px;
padding: 26px 18px;
text-align: center;
box-shadow: var(--shadow)
}
.flow-card:not(:last-child)::after {
content: "›";
position: absolute;
right: -11px;
top: 50%;
transform: translateY(-50%);
font-size: 40px;
color: #a9b8ce;
font-weight: 700
}
.step {
position: absolute;
top: 12px;
left: 12px;
width: 26px;
height: 26px;
border-radius: 50%;
display: grid;
place-items: center;
background: var(--blue);
color: #fff;
font-weight: 900;
font-size: 13px
}
.flow-card img {
width: 70px;
height: 70px;
margin: 8px auto 18px;
border-radius: 50%;
background: #edf9f1;
padding: 10px
}
.flow-card h3 {
margin: 0 0 6px;
font-size: 16px
}
.flow-card p {
margin: 0;
font-size: 13px;
color: var(--muted)
}

.report {
margin: 80px auto 0 auto;
padding: 80px 0
}
.report-grid {
display: grid;
grid-template-columns: 260px 1fr;
gap: 38px;
align-items: center
}
.report-copy h2 {
font-size: 26px;
text-align: left;
margin-bottom: 12px
}
.report-copy p {
color: var(--muted);
font-weight: 700
}
.sample-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px
}
.sample-card {
min-height: 190px;
background: #fff;
border: 1px solid var(--line);
border-radius: 14px;
padding: 18px;
box-shadow: var(--shadow)
}
.sample-card h3 {
margin: 0 0 12px;
font-size: 15px
}
.sample-card img {
max-height: 130px;
object-fit: contain;
margin: auto
}
.bar-row {
display: grid;
grid-template-columns: 94px 1fr 32px;
gap: 10px;
align-items: center;
font-size: 12px;
font-weight: 800;
margin: 12px 0
}
.bar-row i {
height: 9px;
border-radius: 999px;
background: linear-gradient(90deg, var(--orange), #91b7ff);
width: var(--w)
}
.priority-card ol {
margin: 0;
padding-left: 0;
list-style: none;
display: grid;
gap: 12px
}
.priority-card li {
font-weight: 800;
font-size: 14px
}
.priority-card li::before {
content: counter(list-item);
display: inline-grid;
place-items: center;
width: 26px;
height: 26px;
border-radius: 7px;
background: #eaf3ff;
color: var(--blue);
margin-right: 9px
}

/* ==============================
AI Native Company Section
============================== */
.native-company {
position: relative;
overflow: hidden;
padding: 150px 0;
margin: 100px auto 0 auto;
min-height: 620px;
background:
url("../img/native-bg.jpg")
right center / cover no-repeat;
}
/* 左側テキストを読みやすくする白グラデーション */
.native-company::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(
90deg,
rgba(255, 255, 255, .96) 0%,
rgba(255, 255, 255, .92) 35%,
rgba(255, 255, 255, .55) 58%,
rgba(255, 255, 255, .12) 78%,
rgba(255, 255, 255, 0) 100%
);
pointer-events: none;
}
.native-company .container {
position: relative;
z-index: 1;
}
.native-label {
display: inline-flex;
align-items: center;
justify-content: center;
margin: 0 0 28px;
padding: 10px 24px;
border-radius: 999px;
background: linear-gradient(135deg, #1267f1, #8a4df5);
color: #fff;
font-size: 16px;
font-weight: 800;
letter-spacing: .04em;
}
.native-company h2 {
margin: 0 0 28px;
text-align: left;
color: #112c5c;
font-size: 48px;
line-height: 1.35;
font-weight: 700;
letter-spacing: 0.05em;
}
.native-company h2 b,
.native-company h2 i{
color: var(--blue);
font-style: normal;
font-weight: 700;
font-size: 60px;
}
.native-company h2 i {
color: #000;
}
.native-text {
max-width: 560px;
margin: 0;
color: #17325d;
font-size: 18px;
line-height: 2;
font-weight: 700;
}
.native-text b {
color: var(--blue);
}

/* Tablet */
@media (max-width: 900px) {
.native-company {
padding: 88px 0;
min-height: 560px;
background-position: right bottom;
background:url("../img/native-bg_sp.jpg");
}
.native-company::before {
background:
linear-gradient(
180deg,
rgba(255, 255, 255, .98) 0%,
rgba(255, 255, 255, .92) 45%,
rgba(255, 255, 255, .35) 100%
);
}
.native-company h2 {
font-size: 36px;
}
.native-company h2 b,
.native-company h2 i{
font-size: 46px;
}
.native-text {
max-width: 640px;
}
}

/* Mobile */
@media (max-width: 560px) {
.native-company {
padding: 0px 0 100px;
margin: 80px auto 0 auto;
min-height: auto;
background:
url("../img/native-bg_sp.jpg")
right bottom / cover no-repeat;
}
.native-company::before {
background:
linear-gradient(
180deg,
rgba(255, 255, 255, .98) 0%,
rgba(255, 255, 255, .70) 10%,
rgba(255, 255, 255, .35) 100%
);
}
.native-label {
margin-bottom: 22px;
padding: 8px 18px;
font-size: 13px;
}
.native-company h2 {
font-size: 26px;
line-height: 1.3;
}
.native-text {
font-size: 15px;
line-height: 1.9;
}
}

.faq {
padding: 150px 0
}
@media (max-width: 640px) {
.faq {
padding: 50px 0
}
}
.faq-list {
background: #fff;
border: 1px solid var(--line);
border-radius: 16px;
overflow: hidden
}
.faq-list details {
border-bottom: 1px solid var(--line)
}
.faq-list details:last-child {
border-bottom: 0
}
.faq-list summary {
cursor: pointer;
padding: 18px 22px;
font-weight: 800;
list-style: none;
display: flex;
align-items: center;
justify-content: space-between
}
.faq-list summary::before {
content: "Q";
color: var(--blue);
font-size: 24px;
margin-right: 12px
}
.faq-list summary::after {
content: "⌄";
margin-left: auto;
color: var(--navy)
}
.faq-list p {
padding: 0 22px 20px 58px;
margin: 0;
color: var(--muted);
font-weight: 700
}

.final-cta{
padding: 50px 0 40px;
background: linear-gradient(
135deg,
#08215b 0%,
#00419d 100%
);
color:#fff;
}
.final-grid{
text-align: center;
align-items:center;
margin-bottom:48px;
}
.final-cta h2{
margin:0 0 1em 0;
font-size:38px;
line-height:1.35;
font-weight:800;
}
.final-cta p{
margin:0;
color:#d9e7ff;
font-size:18px;
line-height:1.8;
}
.final-action{
margin: 20px 0 0 0;
}
p.operator{
text-align:center;
margin:5em 0 12px;
color:#d9e7ff;
font-size:14px;
}
p.operator a{
color:#fff;
text-decoration:none;
font-weight:500;
border-bottom:1px solid rgba(255,255,255,.25);
}
.operator a:hover{
border-color:#fff;
}
p.copyright{
text-align:center;
margin:3em 0 12px;
color:#d9e7ff;
font-size:14px;
}
.final-cta > p:last-child{
  text-align:center;
  color:#b7c8ea;
  font-size:13px;
  margin:0;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.15);
}

@media (max-width:768px){
.final-grid{
grid-template-columns:1fr;
gap:32px;
text-align:center;
}
.final-cta h2{
font-size:30px;
}
.operator{
margin-top:24px;
}
}

.trust-light{
color:#d9e7ff;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px 24px;
padding:0;
margin:20px 0 0;
}
.trust-light li::before {
color: #6ee78b
}
.sp-only {
display: none
}
/* placeholder icons */
[src$=".svg"] {
object-fit: contain
}
@media (max-width: 900px) {
.global-nav {
display: none
}
.header-inner {
height: 68px
}
.brand {
width: 210px
}
.brand-logo {
width: 210px
}
.hero {
padding: 46px 0 64px
}
.hero-grid, .report-grid, .final-grid {
grid-template-columns: 1fr;
gap: 36px
}
.hero h1 {
font-size: 42px
}
.reason-grid, .flow-grid, .sample-cards {
grid-template-columns: 1fr 1fr
}
.flow-card:not(:last-child)::after {
display: none
}
.report-copy h2 {
text-align: center
}
.report-copy {
text-align: center
}
.final-cta h2 {
text-align: center
}
.final-cta p {
text-align: center
}
.btn-large {
font-size: 18px
}
.sp-only {
display: block
}
}
@media (max-width: 560px) {
.container, .narrow {
width: calc(100% - 12px);
}
.site-header .btn-small {
display: none
}
.hero h1 {
font-size: 32px
}
.lead {
font-size: 16px
}
.mini-points, .reason-grid, .flow-grid, .sample-cards, .target-list {
grid-template-columns: 1fr
}
.score-image-card {
padding: 0;
}
.btn-large {
width: 100%;
font-size: 16px
}
.btn-large {
padding: 10px;
font-size: 18px;
line-height: 1.2em;
}
.line-circle {
display: none;
}
.free-label {
font-size: 13px
}
.trust-list {
font-size: 14px
}
.final-cta h2 {
font-size: 26px
}
section h2 {
font-size: 25px
}
.report {
padding: 0px 0
}
}
.visual-section {
padding: 70px 0
}
.section-heading {
text-align: center;
margin: 0 auto 28px;
}
.section-heading h2 {
margin-bottom: 10px
}
.section-heading p {
margin: 0;
color: var(--muted);
font-weight: 700
}
.wide-visual {
margin: 0;
background: #fff;
border: 1px solid var(--line);
border-radius: 18px;
padding: 22px;
box-shadow: var(--shadow);
overflow: hidden
}
.wide-visual img {
width: 100%;
height: auto;
border-radius: 12px
}
.compact-visual {
padding: 16px
}
.reason {
padding-top: 58px
}
@media (max-width:560px) {
.visual-section {
padding: 48px 0
}
.wide-visual {
padding: 10px;
border-radius: 14px
}
.wide-visual img {
border-radius: 10px
}
.section-heading p {
font-size: 14px
}
}
/* coded infographic sections: icons are img assets, layout/text is HTML/CSS */
.search-shift {
padding: 70px 0
}
.score-features {
padding: 70px 0;
background: #fff
}
.section-heading {
text-align: center;
margin: 0 auto 28px;
}
.section-heading h2 {
margin-bottom: 10px
}
.section-heading p {
margin: 0;
color: var(--muted);
font-weight: 700
}
.shift-flow {
display: grid;
grid-template-columns: 1fr 56px 1fr;
align-items: center;
gap: 18px
}
.flow-box {
background: #fff;
border: 1px solid var(--line);
border-radius: 18px;
padding: 24px 22px;
box-shadow: var(--shadow)
}
.flow-box.is-ai {
border-color: #cfe0ff;
background: linear-gradient(180deg, #fff, #f8fbff)
}
.flow-label {
display: flex;
align-items: center;
gap: 8px;
margin: 0 0 18px;
color: var(--navy);
font-size: 20px;
font-weight: 800
}
.flow-label::before {
content: "";
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--blue);
display: inline-block
}
.flow-label span {
font-size: 20px;
color: #24456f
}
.flow-steps {
display: grid;
grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
align-items: center;
gap: 12px
}
.flow-step {
text-align: center;
min-width: 0
}
.flow-step img {
width: 58px;
height: 58px;
margin: 0 auto 10px;
object-fit: contain
}
.flow-step span {
display: block;
font-size: 14px;
font-weight: 700;
color: var(--navy);
line-height: 1.35
}
.flow-arrow, .flow-center-arrow {
color: #9aabc4;
font-weight: 900
}
.flow-arrow {
font-size: 25px
}
.flow-center-arrow {
display: grid;
place-items: center;
width: 54px;
height: 54px;
border-radius: 50%;
background: #eef5ff;
color: var(--blue);
font-size: 34px;
box-shadow: 0 10px 22px rgba(6, 88, 223, .12)
}
.feature-strip {
background: #fff;
border: 1px solid var(--line);
border-radius: 18px;
box-shadow: var(--shadow);
display: grid;
grid-template-columns: repeat(5, 1fr);
overflow: hidden
}
.feature-item {
padding: 30px 20px;
text-align: center;
position: relative
}
.feature-item:not(:last-child)::after {
content: "";
position: absolute;
right: 0;
top: 28px;
bottom: 28px;
width: 1px;
background: var(--line)
}
.feature-item img {
width: 60px;
height: 60px;
margin: 0 auto 14px;
object-fit: contain
}
.feature-item h3 {
font-size: 17px;
line-height: 1.35;
margin: 0 0 8px;
color: var(--navy)
}
.feature-item p {
margin: 0;
color: var(--muted);
font-size: 13px;
font-weight: 700;
line-height: 1.75
}

@media (max-width:640px) {
.flow-step span {
font-size: 12px;
}
.flow-label {
font-size: 18px;
}
.flow-label span {
font-size: 18px;
color: #24456f
}
}

@media (max-width: 900px) {
.shift-flow {
grid-template-columns: 1fr;
gap: 16px
}
.flow-center-arrow {
transform: rotate(90deg);
margin: auto
}
.feature-strip {
grid-template-columns: repeat(2, 1fr)
}
.feature-item:nth-child(2n)::after {
display: none
}
.feature-item:not(:last-child) {
border-bottom: 1px solid var(--line)
}
.feature-item:nth-child(4) {
border-bottom: 0
}
.feature-item:last-child {
grid-column: 1/-1
}
}
@media (max-width: 560px) {
.search-shift, .score-features {
padding: 48px 0
}
.flow-box {
padding: 18px 14px
}
.flow-steps {
gap:0;
}
.flow-arrow{
height:20px;
margin:0;
display:flex;
justify-content:center;
align-items:center;
}
.flow-step img {
width: 52px;
height: 52px
}
.feature-strip {
grid-template-columns: 1fr
}
.feature-item {
padding: 24px 18px
}
.feature-item::after {
display: none !important
}
.feature-item:nth-child(4) {
border-bottom: 1px solid var(--line)
}
}

/* === ChatGPT responsive fix: hero no overflow priority === */
@media (max-width: 560px) {
html,
body {
width: 100%;
max-width: 100%;
overflow-x: hidden;
}
.site-header,
.hero,
.hero::before,
.hero-grid,
.hero-copy,
.hero-panel,
.hero-actions,
.container,
.narrow {
max-width: 100%;
min-width: 0;
}
.hero {
width: 100%;
overflow: hidden;
background-image: url("../img/hero_bg_sp.jpg");
background-size:cover;
background-position:center;
}
.hero-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) !important;
overflow: hidden;
}
.hero-copy,
.hero-copy *,
.hero-actions,
.hero-actions *,
.mini-points,
.mini-point,
.mini-point * {
min-width: 0;
max-width: 100%;
}
.hero h1,
.lead,
.eyebrow,
.trust-list,
.trust-list li,
.btn,
.btn-large,
.btn-small,
.free-label {
overflow-wrap: anywhere;
word-break: break-word;
}
.eyebrow {
display: inline-flex;
white-space: normal;
}
.lead {
overflow: hidden;
}
.mini-points {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
width: 100%;
overflow: hidden;
}
.mini-point {
width: 100%;
overflow: hidden;
text-align: center;
font-size: 16px;
line-height: 1.2em;
}
.mini-point img {
max-width: 100%;
margin-inline: auto;
flex-shrink: 1;
}
.btn-large {
width: 100%;
white-space: normal;
}
.btn-large .free-label {
margin-left: 0;
flex-shrink: 0;
}
}

@media (max-width: 380px) {
.container,
.narrow {
width: calc(100% - 24px);
}
.mini-points {
gap: 2px;
}
}

/* === Hero panel overflow fix: CSS only === */
@media (max-width: 560px) {
html,
body {
width: 100%;
max-width: 100%;
overflow-x: hidden;
}
.hero .container {
width: calc(100% - 12px);
max-width: 100%;
min-width: 0;
}
.hero {
overflow: hidden;
}

.hero-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) !important;
width: 100%;
max-width: 100%;
min-width: 0;
overflow: hidden;
}
.hero-copy,
.hero-panel,
.score-image-card,
.ai-targets,
.target-list {
width: 96%;
max-width: 100%;
min-width: 0;
}
.hero-copy {
width: 90%;
margin: 0px auto 0 auto;
}

.hero-panel {
gap: 12px;
overflow: hidden;
margin: 0px auto 0 auto;
}
.score-image-card {
padding: 0;
border-radius: 12px;
overflow: hidden;
margin: 0px auto 0 auto;
}

.score-image-card img {
display: block;
width: 100%;
max-width: 100%;
height: auto;
border-bottom: none;
object-fit: contain;
object-position: center;
}
.ai-targets {
padding: 16px 12px;
overflow: hidden;
margin: 0px auto 0 auto;
}

.target-list {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 6px;
overflow: hidden;
}
.target-list span {
width: auto;
min-width: 0;
max-width: 100%;
padding: 8px 4px;
gap: 4px;
justify-content: center;
overflow: hidden;
white-space: normal;
text-align: center;
line-height: 1.25;
}
.target-list span::before {
width: 22px;
height: 22px;
flex: 0 0 22px;
}
.ai-targets p,
.ai-targets small,
.target-list span {
overflow-wrap: anywhere;
word-break: break-word;
font-size: 14px;
}
}

@media (max-width: 380px) {
.hero .container {
width: calc(100% - 8px);
}
.target-list {
gap: 4px;
}
.target-list span {
padding: 7px 3px;
gap: 3px;
}
}

.fixed-mobile-cta {
display: none;
}

@media (max-width: 560px) {
.fixed-mobile-cta {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 100;
display: block;
padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
background: rgba(255, 255, 255, .92);
backdrop-filter: blur(12px);
border-top: 1px solid var(--line);
transform: translateY(120%);
opacity: 0;
pointer-events: none;
transition:
transform .28s ease,
opacity .28s ease;
}

.fixed-mobile-cta.is-show {
transform: translateY(0);
opacity: 1;
pointer-events: auto;
}

.fixed-mobile-cta__btn {
width: 100%;
min-height: 58px;
padding: 10px 14px;
font-size: 16px;
border-radius: 14px;
}

body.has-fixed-cta {
padding-bottom: 88px;
}
}

