/* ══════════════════════════════════════════
HERO
══════════════════════════════════════════ */
.hero {
position: relative;
height: 634px;
overflow: hidden;
background: #000;
}
.hero-bg {
position: absolute; inset: 0;
background: url('../movie/hero.mp4');
}
.hero-bg::after {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-bg .hero__video {
opacity: .5;
}
.hero-content {
position: relative; z-index: 1;
max-width: var(--container);
margin: 0 auto;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 40px;
gap: 0;
}
.hero-heading {
color: var(--white);
line-height: 1.4;
margin-bottom: 24px;
font-size: 40px;
    font-weight: 500;
text-shadow: 2px 2px 18px #7c7c7c;
}
.hero-heading span {
display: block;
}
.hero-sub {
color: #f3f4f6;
font-size: 18px;
line-height: 1.8;
margin-bottom: 36px;
text-shadow: 2px 2px 18px #7c7c7c;
}
.hero-btns {
display: flex; gap: 24px; justify-content: center;
margin-bottom: 60px;
}
.hero-btn-phone {
display: flex; align-items: center; gap: 10px;
background: rgba(175,144,40,0.8);
color: var(--white);
padding: 16px 32px;
border-radius: 6px;
font-size: 20px;
height: 60px; width: 240px; justify-content: center;
}
.hero-btn-phone img { width: 20px; height: 20px; }
.hero-btn-line {
display: flex; align-items: center; gap: 10px;
background: rgba(0,96,69,0.8);
color: var(--white);
padding: 16px 32px;
border-radius: 6px;
font-size: 20px;
height: 60px; width: 240px; justify-content: center;
}
.hero-btn-line img { width: 30px; height: 30px; }
.hero-badges {
display: flex; gap: 24px; justify-content: center;
}
.hero-badge {
display: flex; align-items: center; gap: 8px;
color: var(--white); font-size: 20px;
text-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.hero-badge img.badge-icon {
width: 24px; height: 24px; flex-shrink: 0;
}
/* ══════════════════════════════════════════
SLIDER SECTION
══════════════════════════════════════════ */
.slider-section {
background: var(--white);
padding: 28px 0 0;
}
.slider-outer {
position: relative;
max-width: 1322px;
margin: 0 auto;
padding: 0 46px;
}
.slider-track-wrapper {
/* 幅はJSで VISIBLE枚ぴったりにセット。CSSはフォールバック */
width: calc(3 * 382px + 2 * 24px); /* = 1194px */
max-width: 100%;
margin: 0 auto;
overflow: hidden;
}
.slider-track {
display: flex;
gap: 24px;
/* transitionはJS側で制御 */
}
.slider-btn {
position: absolute;
top: calc(50% - 14px);
transform: translateY(-50%);
width: 36px; height: 36px;
background: rgba(255,255,255,0.9);
border: none;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0,0,0,0.18);
cursor: pointer;
display: flex; align-items: center; justify-content: center;
z-index: 2;
padding: 0;
transition: opacity 0.2s;
}
.slider-btn:disabled { opacity: 0.35; cursor: default; }
.slider-btn img { width: 8px; height: 16px; }
.slider-btn-prev { left: 0; }
.slider-btn-next { right: 0; }
.slider-dots {
display: flex; justify-content: center; gap: 10px;
margin-top: 16px;
}
.slider-dot {
width: 14px; height: 14px;
background: #007a55;
border-radius: 50%;
border: none;
cursor: pointer;
padding: 0;
opacity: 0.35;
transition: opacity 0.2s;
}
.slider-dot.active { opacity: 1; }
.slider-card {
position: relative;
width: 382px; height: 128px;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
box-shadow: 0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.10);
}
.slider-card a {
display: block;
position: absolute; inset: 0;
text-decoration: none;
color: inherit;
}
.slider-card img.slider-bg {
position: absolute; inset: 0;
width: 100%; height: 100%; object-fit: cover;
transition: transform 0.4s ease;
}
.slider-card:hover img.slider-bg {
transform: scale(1.07);
}
.slider-card-overlay {
position: absolute; inset: 0;
background: linear-gradient(to right, rgba(0,0,0,.7), rgba(0,0,0,.5) 50%, rgba(0,0,0,.3));
transition: opacity 0.4s ease;
}
.slider-card:hover .slider-card-overlay {
opacity: 0.6;
}
.slider-card-text {
position: absolute; inset: 0;
display: flex; flex-direction: column; justify-content: center;
gap: 4px; padding-left: 24px;
}
.slider-card-title {
font-size: 20px; font-weight: 600;
color: var(--white); line-height: 28px;
}
.slider-card-sub {
font-size: 14px; color: rgba(255,255,255,.9); line-height: 20px;
}
/* ══════════════════════════════════════════
REASONS SECTION
══════════════════════════════════════════ */
.reasons-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
}
.reason-card {
background: var(--bg-gray);
border-radius: 8px;
padding: 24px 24px 32px;
text-align: center;
position: relative;
}
.reason-icon-wrap {
width: 64px; height: 64px;
background: var(--green-mid);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 24px;
}
.reason-icon-wrap img { width: 32px; height: 32px; }
.reason-title {
font-size: 20px; font-weight: 600;
line-height: 28px; color: var(--text-dark);
margin-bottom: 12px;
}
.reason-desc {
font-size: 16px; color: var(--text-mid);
line-height: 26px;
}
/* ══════════════════════════════════════════
CITY REQUEST SECTION
══════════════════════════════════════════ */
.city-section {
background: var(--white);
}
.city-section .container {
padding-top: 0;
}
.city-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}
.city-left {
background: #242624;
border-radius: 8px;
overflow: hidden;
height: 241px;
position: relative;
}
.city-left img { 
width: 100%;
  padding: 0 12px;
  height: 100%;
  object-fit: contain;
 }
.city-right {
background: var(--white);
border-radius: 9px;
overflow: hidden;
height: 241px;
position: relative;
}
.city-right-bg {
position: absolute; inset: 0;
}
.city-right-bg img { width: 100%; height: 100%; object-fit: cover; }
.city-right-content {
position: absolute; inset: 0;
padding: 33px 32px;
}
.city-right-content h3 {
font-size: 30px; font-weight: 700;
line-height: 1.2; color: #000;
margin-bottom: 16px;
}
.city-right-content p {
font-size: 16px; color: #000; line-height: 26px;
}
.city-right-content dl dt {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 12px;
}
.city-corner-img {
position: absolute;
right: 32px; top: 32px;
width: 160px;
object-fit: contain;
    width: 160px;
    height: auto;
}
/* ══════════════════════════════════════════
RESULTS SECTION
══════════════════════════════════════════ */
.results-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
margin-bottom: 32px;
}
.result-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
}
.result-card-img {
height: 200px; overflow: hidden;
}
.result-card-img img { width: 100%; height: 100%; object-fit: cover; }
.result-card-body { padding: 12px; }
.result-tag {
display: inline-block;
background: var(--green-light);
color: var(--white);
font-size: 12px; font-weight: 500;
padding: 4px 12px;
border-radius: 999px;
margin-bottom: 10px;
}
.result-card-title {
font-size: 18px; font-weight: 600;
color: var(--text-dark); margin-bottom: 6px;
}
.result-price {
font-size: 24px; font-weight: 700;
color: var(--gold); line-height: 32px; margin-bottom: 8px;
}
.result-desc {
font-size: 14px; color: var(--text-mid);
line-height: 20px; margin-bottom: 8px;
}
.result-location { font-size: 12px; color: var(--text-light); }
.link-more {
text-align: center;
}
.link-more a {
display: flex; align-items: center; justify-content: center; gap: 6px;
font-size: 18px; font-weight: 500; color: var(--gold);
cursor: pointer;
}
.link-more img { width: 20px; height: 20px; }
.link-more:hover { opacity: .8; }
/* ══════════════════════════════════════════
VIDEO SECTION
══════════════════════════════════════════ */
.video-section {
background: var(--white);
}
.video-main {
position: relative;
    width: 636px;
    height: 358px;
border-radius: 8px;
overflow: hidden;
margin: 0 auto 0;
box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
background: #000;
}
.video-main iframe {
position: absolute; inset: 0;
width: 100%; height: 100%;
border: none;
}
.video-main-info {
width: 635px;
margin: 0 auto 32px;
padding: 14px 0 0;
text-align: left;
}
.video-main-info h3 {
font-size: 20px; font-weight: 600;
color: var(--text-dark); margin-bottom: 4px;
transition: color .2s;
}
.video-main-info p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.video-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
padding: 40px 0;
}
.video-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
cursor: pointer;
transition: box-shadow .2s, transform .15s;
}
.video-card:hover {
box-shadow: 0 16px 24px -4px rgba(0,0,0,.15), 0 4px 8px -4px rgba(0,0,0,.12);
transform: translateY(-2px);
opacity: 0.6;
}
.video-card.featured {
box-shadow: 0 0 0 2px var(--gold), 0 10px 15px -3px rgba(0,0,0,.10);
}
.video-card-thumb {
position: relative;
height: 160px;
overflow: hidden;
background: #000;
}
.video-card-thumb img.vid-bg {
width: 100%; height: 100%; object-fit: cover; opacity: .9;
}
.video-card-play {
position: absolute; inset: 0;
display: flex; align-items: center; justify-content: center;
}
.video-card-play span {
width: 48px; height: 48px;
background: rgba(255,255,255,.8);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
}
.video-card-play span img { width: 24px; height: 24px; }
.video-card-body { padding: 16px; background: var(--white); }
.video-card-body dt {
font-size: 16px; font-weight: 600; color: var(--text-dark);
margin-bottom: 4px; line-height: 24px;
}
.video-card-body dd { font-size: 14px; color: var(--text-mid); line-height: 20px; }
/* ══════════════════════════════════════════
SERVICES SECTION
══════════════════════════════════════════ */
.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.service-card a {
display: block;
background: var(--white);
border-radius: 8px;
padding: 32px 24px 52px;
box-shadow: 0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
text-align: center;
position: relative;
height: 100%;
}
.service-icon {
width: 64px; height: 64px;
background: var(--green-dark);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 16px;
}
.service-icon svg { width: 32px; height: 32px; stroke: var(--white); }
.service-card dl dt {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
text-align: center;
}
.service-card dl dd { font-size: 14px; color: var(--text-mid); line-height: 22px; margin-bottom: 12px; }
.service-link {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: clamp(0.75rem, 0.69rem + 0.25vw, 0.875rem);
font-weight: 500;
color: var(--gold);
position: absolute;
bottom: 32px;
left: 50%;
transform: translateX(-50%);
}
.service-link img {
width: clamp(0.813rem, 0.722rem + 0.37vw, 1rem);
height: clamp(0.813rem, 0.722rem + 0.37vw, 1rem);
}
/* ══════════════════════════════════════════
ITEMS SECTION (買取品目)
══════════════════════════════════════════ */
.items-section {
background: var(--green-dark);
}
.items-section .section-title { color: var(--white); }
.items-section .section-subtitle { color: var(--white); }
.items-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-bottom: 40px;
}
.item-card {
background: var(--white);
border-radius: 8px;
box-shadow: 0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.10);
transition: transform 0.2s, box-shadow 0.2s;
}
.item-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 24px rgba(0,0,0,.14), 0 6px 10px rgba(0,0,0,.12);
}
.item-card a {
display: block;
padding: 24px;
height: 100%;
text-decoration: none;
}
.item-card dl dt {
font-size: 18px; font-weight: 600;
color: var(--text-dark); margin-bottom: 8px;
transition: color 0.2s;
}
.item-card:hover dl dt { color: var(--green-dark); }
.item-card dl dd { font-size: 14px; color: var(--text-mid); line-height: 20px; }
.items-footer {
text-align: center;
}
.items-footer p { color: var(--white); margin-bottom: 20px; }
.btn-contact-white {
display: inline-flex; align-items: center; justify-content: center;
background: var(--white);
color: var(--green-dark);
border: 2px solid var(--white);
border-radius: 6px;
padding: 0 34px;
height: 60px; width: 280px;
font-size: 16px; font-weight: 500;
box-shadow: 0 10px 15px rgba(0,0,0,.10);
}
/* ══════════════════════════════════════════
TESTIMONIALS SECTION
══════════════════════════════════════════ */
.testimonials-section {
background: var(--white);
}
.testimonials-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}
.testimonial-card {
background: var(--bg-gray);
border-radius: 8px;
padding: 32px;
}
.testimonial-stars {
display: flex; gap: 4px; margin-bottom: 12px;
}
.testimonial-stars span {
color: var(--gold); font-size: 20px;
}
.testimonial-card blockquote {
font-size: 16px; color: var(--text-dark);
line-height: 26px; margin-bottom: 16px;
}
.testimonial-author {
display: flex; align-items: center; gap: 12px;
}
.author-avatar {
width: 48px; height: 48px;
background: var(--green-mid);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: var(--white); font-size: 18px; font-weight: 600;
}
.author-info p { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.author-info span { font-size: 12px; color: var(--text-light); }
.ar-lead {
    max-width: 800px;
    text-align: center;
    margin: auto;
}
.ar-lead p:not(:last-child) {
    margin-bottom: 16px;
}
.ar-lead p span {
display: inline-block;
}
.faq-container { max-width: 824px; margin: 0 auto; padding: 60px 12px; }
.faq-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px 32px;
background: var(--white);
border-radius: 8px;
padding: 12px;
margin-bottom: 32px;
box-shadow: 0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.10);
}
.faq-grid.bg-gray {
background: var(--bg-gray);
}
.faq-item {
border-radius: 8px;
}
.faq-item dl { padding: 0; }
.faq-item dt {
font-size: 14px; font-weight: 600;
color: var(--text-dark); line-height: 20px;
display: flex; justify-content: space-between; align-items: center; gap: 8px;
padding: 20px 12px;
cursor: pointer;
user-select: none;
}
.faq-icon {
position: relative;
display: inline-block;
width: 16px; height: 16px;
flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
content: '';
position: absolute;
background: var(--text-light);
border-radius: 2px;
transition: transform 0.25s, opacity 0.25s;
}
/* 横棒 */
.faq-icon::before { width: 12px; height: 2px; top: 7px; left: 2px; }
/* 縦棒 */
.faq-icon::after  { width: 2px; height: 12px; top: 2px; left: 7px; }
/* 開いたとき縦棒を消して − に */
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-item:hover dt { color: var(--green-dark); }
.faq-item:hover .faq-icon::before,
.faq-item:hover .faq-icon::after { background: var(--green-dark); }
.faq-item dd {
display: none;
font-size: 14px; color: var(--text-mid); line-height: 1.7;
padding: 0 12px 16px;
margin: 0;
}
.faq-item.open dd { display: block; }
.faq-footer { 
text-align: center;
}
.faq-footer p { 
    font-size: clamp(0.875rem, 0.815rem + 0.25vw, 1rem); 
    margin-bottom: 20px; 
}
.btn-gold {
display: inline-flex; align-items: center; justify-content: center;
background: var(--gold);
color: var(--white);
border-radius: 6px;
height: 60px; width: 280px;
font-size: 16px; font-weight: 500;
box-shadow: 0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
}
/* ══════════════════════════════════════════
RESPONSIVE: MOBILE (≤768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
/* ─ Hero ─ */
.hero { height: 500px; }
.hero-heading { margin-bottom: 16px; }
.hero-heading .line1 { font-size: 24px; line-height: 1.6; }
.hero-heading .line2 { font-size: 24px; line-height: 1.6; }
.hero-sub { font-size: 12px; line-height: 1.8; margin-bottom: 20px; }
.hero-btns {
flex-direction: column; align-items: center;
gap: 16px; margin-bottom: 36px;
}
.hero-btn-phone, .hero-btn-line {
width: 300px; height: 52px; font-size: 16px; padding: 0 16px;
}
.hero-badges { gap: 20px; flex-wrap: wrap; justify-content: center; }
.hero-badge { font-size: 14px; }
.hero-badge img.badge-icon { width: 18px; height: 18px; }
/* ─ Slider ─ */
.slider-section {padding: 28px 0 0;}
.slider-btn { display: none; }                          /* SPはボタン非表示 */
.slider-outer { padding: 0 16px; }                      /* ボタン用スペース不要 */
.slider-card { width: calc(100vw - 32px); height: 110px; } /* 全幅カード */
.slider-card-title { font-size: 16px; }
.slider-card-sub { font-size: 12px; }
.slider-dot { width: 12px; height: 12px; }
/* ─ Reasons ─ */
.reasons-grid { grid-template-columns: 1fr; gap: 16px; }
.reason-card {
display: flex; align-items: flex-start;
text-align: left; padding: 12px; gap: 16px;
}
.reason-icon-wrap { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
.reason-icon-wrap img { width: 24px; height: 24px; }
.reason-title { font-size: 16px; margin-bottom: 4px; }
.reason-desc { font-size: 12px; line-height: 1.65; }
/* ─ City ─ */
.city-grid { grid-template-columns: 1fr; gap: 16px; }
.city-left, .city-right { height: 180px; }
.city-right-content { padding: 12px; }
.city-right-content dl dt { font-size: 24px;margin-bottom: 8px; }
.city-corner-img { width: 120px; right: 12px; top: 12px; }
/* ─ Results ─ */
.results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.result-card-img { height: 120px; }
.result-card-body { padding: 10px; }
.result-card-title { font-size: 14px; }
.result-price { font-size: 16px; line-height: 24px; }
.result-desc { font-size: 12px; }
/* ─ Video ─ */
.video-main { width: 100%; height: 200px; margin-bottom: 0; }
.video-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.video-card-thumb { height: 90px; }
.video-card-body { padding: 10px; }
.video-card-body dt { font-size: 16px; line-height: 1.4; font-weight: 700; }
.video-card-body dd { font-size: 12px; }
/* ─ Services ─ */
.services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.service-card a { padding: 20px 12px 40px; }
.service-card dl dt { font-size: 15px; }
.service-card dl dd { font-size: 12px; }
.service-link { bottom: 20px; }
/* ─ Items ─ */
.items-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.item-card a {
padding: 12px;
}
.item-card dl dt { font-size: 15px; }
.item-card dl dd { font-size: 12px; }
.btn-contact-white { width: 100%; }
/* ─ Testimonials ─ */
.testimonials-grid { grid-template-columns: 1fr; }
.testimonial-card { padding: 20px; }
.testimonial-card blockquote { font-size: 14px; line-height: 22px; }
/* ─ FAQ ─ */
.faq-container { max-width: 100%; padding: 40px 12px; }
.faq-grid {
grid-template-columns: 1fr; gap: 0;
padding: 0; box-shadow: none;
background: transparent;
margin-bottom: 12px;
}
.faq-item {
background: var(--white);
border-radius: 0;
border-bottom: 1px solid var(--border);
box-shadow: none;
margin-bottom: 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); border-radius: 8px 8px 0 0; }
.faq-item:last-child { border-radius: 0 0 8px 8px; }
.faq-item dt { font-size: 13px; line-height: 1.5; padding: 16px 12px; }
.btn-gold { width: 100%; }
}
