@charset "UTF-8";
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Meiryo','MS PGothic',sans-serif;
  color: #333;
  background: #f0f0f0;
  font-size: 14px;
  line-height: 1.6;
}
a { text-decoration:none; color:inherit; }

/* ===== CSS VARS ===== */
:root {
  --orange:     #F5A400;
  --orange-dk:  #E08C00;
  --orange-lt:  #FFD040;
  --yellow-bg:  #FFF6D0;
  --blue-sky:   #87CEEB;
  --blue-lt:    #C8E9F8;
  --blue-bg:    #D6F0FB;
  --white:      #FFFFFF;
  --gray-lt:    #F5F5F5;
  --gray-bd:    #DDDDDD;
  --text:       #333333;
  --text-md:    #555555;
  --text-lt:    #888888;
  --green-btn:  #4DB85C;
  --teal-btn:   #3CA8C8;
  --shadow:     0 2px 8px rgba(0,0,0,.12);
  --max-w:      960px;
}

/* ===== HEADER ===== */
#header {
  background: #fff4e1;
  border-bottom: 2px solid var(--orange);
  position: sticky; top:0; z-index:200;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.hd-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  gap: 12px;
}
.hd-logo { display:flex; align-items:center; gap:10px; margin: 10px; }
.hd-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-lt) 100%);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  box-shadow: 0 2px 6px rgba(245,164,0,.4);
}
.hd-logo-text strong {
  display:block; font-size:18px; font-weight:900; color: var(--orange);
  letter-spacing: -0.3px; white-space:nowrap;
}
.hd-logo-text span {
  display:block; font-size:10px; color: var(--text-md); white-space:nowrap;
}
.hd-btns { display:flex; align-items:center; gap:8px; }
.btn-apply {
  background-image: linear-gradient(90deg, rgba(255, 162, 0, 1), rgb(247 188 68));
  color: #fff;
  font-size: 1.2em; font-weight:700;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity .2s;
  text-align: center;
}
.btn-apply:hover { opacity:.85; }
.btn-mypage {
  background: linear-gradient(90deg, rgba(43, 170, 212, 1), rgb(141 228 255));
  color: #fff;
  font-size: 1.2em; font-weight:700;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity .2s;
  text-align: center;
}
.btn-mypage:hover { opacity:.85; }

/* ===== HERO ===== */
#hero {
  position: relative;
  overflow: hidden;
  background: #fcdea8;
  background-image: url(../img/PC_main.webp);
  background-size: contain;
  background-repeat: no-repeat;
  max-height: 450px;
  background-position-x: center;
}
#hero::before {
  content:'';
  position:absolute; inset:0;
  background-size: 24px 24px;
  pointer-events:none;
}
.hero-inner {
  margin: 0 auto;
  padding: 24px 20px 20px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index:1;
  height: 37vw;
  max-height: 450px;
}
.hero-left { flex: 1; }
.hero-top-label {
  display: inline-block;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-size: 12px; font-weight:700;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
  letter-spacing: .5px;
}
.hero-title-main {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  text-shadow:
    3px  3px  0 rgba(180,80,0,.3),
   -1px -1px  0 rgba(0,0,0,.08);
  margin-bottom: 2px;
}
.hero-title-sub {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow:
    3px 3px 0 rgba(180,80,0,.3),
   -1px -1px 0 rgba(0,0,0,.08);
  margin-bottom: 18px;
}
.hero-rate-label {
  font-size: 12px; font-weight:700; color:#2BAAD4;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-rate-label::before, .hero-rate-label::after {
  content:'';
  flex:1;
  height:1px;
  background: rgba(255,255,255,.5);
  max-width: 40px;
}
.hero-badges-wap { border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.18); background: #fff; padding: 5px 10px 0; max-width: 30vw; text-align: center; position: relative; left: 20%; }
.hero-badges-wap b { font-size: 20px; }
.hero-badges { display:flex; gap:14px; border-radius: 12px; padding: 5px 0 18px; max-width: 30vw; }
.rate-badgebox {
  text-align:center;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 18px 8px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  position: relative;
}
.rate-badge {
  text-align:center;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 18px 8px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  position: relative;
  width: 44vw;
}
.rate-badge .rb-tag {
  font-size:11px; font-weight:700; color:#fff;
  padding: 2px 10px;
  border-radius: 20px;
  white-space:nowrap;
}
.rate-badge.first { background: linear-gradient(90deg, rgba(255, 162, 0, 1), rgb(247 188 68)); }
.rate-badge.second { background: linear-gradient(90deg, rgba(43, 170, 212, 1), rgb(141 228 255)); }
.rate-badge.first .rb-tag  { color: var(--orange); font-size: 14px; }
.rate-badge.second .rb-tag  { color: #2BAAD4; font-size: 14px; }
.rate-badge .rb-tag { background: #fff; }
.rate-badge .rb-num {
  font-size: 44px; font-weight:900; line-height:1;
  display:block; margin-top:6px; color: #fff;
}
.rate-badge .rb-pct { font-size:34px; font-weight:900; }
.hero-notice {
  background: rgba(255,255,255,.88);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11.5px;
  color: var(--text-md);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 14px;
}
.hero-notice strong { color: var(--orange-dk); }
.btn-cta-hero {
  display: inline-block;
  background: var(--green-btn);
  color: #fff;
  font-size: 14px; font-weight:900;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  transition: opacity .2s, transform .2s;
  letter-spacing: .5px;
}
.btn-cta-hero:hover { opacity:.9; transform:translateY(-1px); }

.hero-right {
  width: 150px;
  position:fixed;
  right: 5px;
  background: #fff;
  height: 200px;
  border-radius: 20px;
  padding: 10px;
}
.hero-badge-float {
  background: var(--white);
  border-radius: 10px;
  padding: 8px 12px;
  text-align:center;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  min-width: 80px;
}
.hero-badge-float .hbf-tag {
  font-size:10px; font-weight:700; display:block; margin-bottom:2px;
}

.hero-badge-float.f1 { background: linear-gradient(90deg, rgba(255, 162, 0, 1), rgb(247 188 68)); }
.hero-badge-float.f1 .hbf-tag { color: var(--orange); background: #fff; border-radius: 10px; }
.hero-badge-float.f1 .hbf-num { font-size:28px; font-weight:900; color:#fff; line-height:1; }
.hero-badge-float.f2 { background: linear-gradient(90deg, rgba(43, 170, 212, 1), rgb(141 228 255)); }
.hero-badge-float.f2 .hbf-tag { color: #2BAAD4; background: #fff; border-radius: 10px; }
.hero-badge-float.f2 .hbf-num { font-size:28px; font-weight:900; color:#fff; line-height:1; }
.hbf-pct { font-size:13px; font-weight:700; }

/* ===== SECTION COMMON ===== */
.sec-wrap { width:100%; }
.sec-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 20px;
  position: relative;
}
.sec-title {
  font-size: 2em; font-weight:900;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  margin-bottom: 20px;
  display: inline-block;
}
.sec-title-back {
  background-image: url(../img/short.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  right: 400px;
  height: 90px;
  width: 70vw;
}
.sec-title-center {
  display:block;
  text-align:center;
  border-bottom: none;
  position:relative;
  margin-bottom: 24px;
}

.sec-title-back p {
  position: absolute;
  right: 100px;
  font-size: 30px;
  font-weight: bold;
  margin: 20px;
}

#fsecond-sec {
  background: var(--white);
  border-top: 1px solid var(--gray-bd);
  text-align: center;
  padding: 30px 0;
  width: 100vw;
}

#fsecond-sec p {
  font-weight: 900;
  margin: 15px;
}


/* ===== お知らせ ===== */
.notice-title {
  font-size: 18px;
  font-weight: 900;
  color: #3ca8c8;
  text-align: center;
}
#notice-sec { background: var(--white); border-top: 1px solid var(--gray-bd); }
.notice-box {
  border: 2px solid #2BAAD4;
  border-radius: 6px;
  background: var(--white);
  font-size:13px;
  font-weight: bold;
  line-height:1.8;
  color: var(--text-md);
  min-height: 70px;
}

/* ===== 速さへのこだわり ===== */
#kodawari-sec {
  width: 100vw;
  background-image: linear-gradient(0deg, rgb(255 230 188), rgb(255 255 255));
}
.kodawari-layout {
  display:flex;
  align-items:center;
  gap: 20px;
}
.kodawari-text {
  flex:1;
  font-size:13.5px;
  line-height:1.9;
  color: var(--text-md);
}
.kodawari-text p { margin-bottom:10px; font-weight: bold; }
.kodawari-right {
  width: 20vw;
  flex-shrink:0;
  text-align:center;
  font-size: 64px;
  line-height:1;
  z-index: 2;
}
.kodawari-right img {
  width: 300px;
}
/* ===== 新サービスの流れ ===== */
#flow-sec {
  background-color: #ffe7bd;
  background-image: radial-gradient(circle, rgba(245,164,0,.3) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  border-top: 1px solid #FFD880;
  border-bottom: 1px solid #FFD880;
}
.flow-steps {
  display:flex;
  align-items:flex-start;
  justify-content:center;
  flex-wrap:nowrap;
  margin: 150px 0 30px;
}
.flow-card {
  flex:1;
  text-align:center;
}
.flow-step-label {
  display:inline-block;
  font-size:26px; font-weight:700; color:#fff;
  padding: 3px 14px;
  border-radius:10px;
  margin-bottom:10px;
  position: relative; top: 35px;
}
.step-lbl-1 { background: var(--orange); }
.flow-icon-box {
  height: 300px;
  background: var(--white);
  border: 2px solid var(--orange-dk);
  border-radius: 14px;
  margin: 0 3px 12px;
  align-items:center; justify-content:center;
  font-size:36px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  align-content: center;
  padding: 20px;
}
.flow-card-title {
  font-size:16px; font-weight:700;
  color: var(--text);
  margin-bottom:6px;
  line-height:1.4;
}
.flow-card-desc {
  font-size:14px;
  line-height:1.6;
}
.flow-arrow-first {
  position: absolute;
  top: 350px;
  left: 300px;
}
.flow-arrow-second {
  position: absolute;
  top: 350px;
  left: 605px;
}
.flow-arrow-first img, .flow-arrow-second img { width: 20%; }
.flow-note {
  text-align:center;
  font-size:14px;
  margin-top:16px;
}

/* CTA Button */
.cta-wrap { text-align:center; margin-top:28px; }
.btn-cta-orange {
  display:inline-block;
  background: linear-gradient(90deg, rgba(255, 162, 0, 1), rgb(247 188 68));
  color:#fff;
  font-size:2em; font-weight:900;
  padding: 17px 70px;
  border: 3px solid #f7bb42;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(200,100,0,.35), inset 0 1px 0 rgba(255,255,255,.3);
  letter-spacing:1px;
  transition: transform .2s, box-shadow .2s;
  white-space:nowrap;
}
.btn-cta-orange:hover { transform:translateY(-2px); box-shadow:0 8px 22px rgba(200,100,0,.5); }
.arrow_img { position: absolute; right: 300px; bottom: 30px; height: 70px; }
.arrow_img2 { position: absolute; right: 300px; bottom: 83px; height: 70px; }
/* ===== 2回目からは ===== */
#second-sec {
  background-color: #C8E9F8;
  background-image: radial-gradient(circle, rgba(255,255,255,.5) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  border-top: 1px solid #A0D4EE;
}
#second-sec .sec-title-center, #calc-sec .sec-title-center { color: #1A7DB0; }
#second-sec .sec-title-center::after { background: #1A7DB0; }
.second-layout {
  display:flex;
  align-items:center;
  gap: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  padding: 50px;
}
.second-content { flex:1; }
.second-lead {
  text-align:center;
  font-size:13px;
  color: var(--text-md);
  margin-bottom:6px;
  line-height:1.8;
}
.second-strong {
  text-align:center;
  font-size:14px; font-weight:700;
  color: #1A7DB0;
  margin-bottom:20px;
}
.second-strong em {
  font-style:normal;
  font-size:16px;
  background: #bcedff;
}
.payment-icons {
  display:flex;
  justify-content:center;
  gap: 28px;
  flex-wrap:wrap;
}
.pay-item { text-align:center; }
.pay-circle {
  width: 240px; height: 240px;
  border-radius:50%;
  background: linear-gradient(135deg, #5BBDE4, #2BAAD4);
  margin: 0 auto 10px;
  align-content:center; justify-content:center;
  font-size:38px; font-weight:900;
  box-shadow: 0 4px 14px rgba(43,170,212,.4);
  color:#fff;
}
.pay-circle img { width: 10vw; max-width: 120px; }
.pay-name { font-size:16px; font-weight:700; color: #fff; }
.second-right { width:120px; flex-shrink:0; text-align:center; font-size:60px; }

/* ===== 買取もり計算 ===== */
#calc-sec { background: #C8E9F8; }
.calc-outer {
  margin: 0 auto;
}
.calc-box {
  background: #fff;
  border: 2px solid #B0D9F0;
  border-radius: 14px;
  padding: 50px 100px;
}
.calc-box h3 {
  text-align:center;
  font-size:17px; font-weight:900;
  color: var(--text);
  margin-bottom:18px;
}
.calc-amount-display {
  text-align:center;
  font-size:26px; font-weight:900;
  color: var(--text);
  margin-bottom: 4px;
}
.calc-amount-display span { font-size:15px; }
.calc-input {
  width: 100%;
  border-radius:3px;
  border:3px solid #2BAAD4;
  font-size: 3em;
}
.calc-slider {
  width: 100%;
  -webkit-appearance:none;
  height:6px;
  border-radius:3px;
  background: linear-gradient(to right, var(--orange) 0%, var(--gray-bd) 0%);
  outline:none;
  margin-bottom:14px;
  cursor:pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance:none;
  width:20px; height:20px;
  border-radius:50%;
  background: var(--orange);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  cursor:pointer;
}
.calc-sub-text {
  text-align:right;
  font-size:1.4em;
  color: var(--text-lt);
  margin-bottom:16px;
}
.calc-results {
  display:flex;
  gap:12px;
  margin-bottom:18px;
}
.calc-result-box {
  flex:1;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 12px 12px;
  text-align:center;
  position:relative;
  height: 250px;
  align-content: center;
}
.calc-result-box.r-first { border: 2px solid var(--orange); }
.calc-result-box.r-second { border: 2px solid #2BAAD4; }
.crb-tag {
  position:absolute; top:20px; left:50%; transform:translateX(-50%);
  font-size:1.6em; font-weight:700; color:#fff;
  padding: 2px 14px;
  border-radius:20px;
  white-space:nowrap;
}
.r-first .crb-tag { background: var(--orange); }
.r-second .crb-tag { background: #2BAAD4; }
.crb-amount {
  font-size:4em; font-weight:900;
  line-height:1;
  margin-top:8px;
  display:block;
}
.r-first .crb-amount { color: var(--orange); }
.r-second .crb-amount { color: #2BAAD4; }
.crb-unit { font-size:14px; font-weight:700; }
.crb-rate {
  display:block;
  font-size:1.4em;
  color: var(--text-lt);
  margin-top:4px;
}

/* ===== よくある質問 ===== */
#faq-sec { background: #C8E9F8;; border-top:1px solid var(--gray-bd); }
.faq-list { margin: 0 auto; }
.faq-item {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  display:flex;
  align-items:center;
  gap:10px;
  padding: 14px 16px;
  cursor:pointer;
  user-select:none;
  transition: background .15s;
}
.faq-q:hover { background: #FFFBF0; }
.faq-q-icon {
  width: 26px; height: 26px;
  background: #2BAAD4;
  color:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:900;
  flex-shrink:0;
}
.faq-q-text {
  flex:1;
  font-size:13.5px; font-weight:700;
  color: var(--text);
  line-height:1.5;
}
.faq-q-toggle {
  color: #2BAAD4;
  font-size:22px; font-weight:700;
  flex-shrink:0;
  transition: transform .25s;
  line-height:1;
}
.faq-item.open .faq-q-toggle { transform:rotate(45deg); }
.faq-a {
  max-height:0;
  overflow:hidden;
  transition: max-height .32s ease, padding .28s;
  padding: 0 16px 0 50px;
  font-size:13px;
  line-height:1.85;
  color: var(--text-md);
  background: #FFFDF5;
  border-top: 1px solid transparent;
}
.faq-item.open .faq-a { max-height: 400px; padding: 14px 16px 14px 50px; border-top-color: #FFE082; }
.faq-a .a-mark { font-weight:900; color: var(--orange-dk); margin-right:6px; }

/* ===== 会社概要 ===== */
#company-sec { background: var(--gray-lt); border-top:1px solid var(--gray-bd); }
.company-tbl {
  width:100%;
  max-width: 620px;
  margin: 0 auto;
  border-collapse:collapse;
  font-size:13px;
  background: var(--white);
  border-radius:8px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.company-tbl tr { border-bottom:1px solid var(--gray-bd); }
.company-tbl tr:last-child { border-bottom:none; }
.company-tbl th {
  background: #F8F8F8;
  padding: 12px 16px;
  text-align:left;
  font-weight:700;
  width: 28%;
  color: var(--text);
  vertical-align:top;
}
.company-tbl td { padding: 12px 16px; color: var(--text-md); line-height:1.7; }
.map-box {
  max-width: 620px;
  margin: 20px auto 0;
  height: 180px;
  background: linear-gradient(135deg,#e8e8e8,#d0d0d0);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:#999; font-size:13px;
  border: 1px solid #ccc;
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
footer {
  background: var(--orange);
  color:#000;
  text-align:center;
  padding: 14px 20px;
  font-size:11px;
  letter-spacing:.3px;
}
.potision_img_1 {
  position: absolute;
  top: 300px;
  left: 800px;
  width: 250px;
}
.potision_img_2 {
  position: absolute;
  top: 300px;
  left: 800px;
  width: 250px;
}

.pc { display: block; }
.sp { display: none; }

:root {
  --bg-white: #ffffff;
  --line-yellow: #ffb833;
  --height: 60px;
}

.banner-container {
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  height: var(--height);
  width: 70vw;
  background: transparent;
  position: absolute;
  left: 0;
}

.main-bar {
  flex-grow: 1;
  height: 100%;
  background-color: var(--bg-white);
  border-bottom: 4px solid var(--line-yellow);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 50%, 100% 100%, 0 100%);
  margin-right: -28px;
}

.arrow {
  width: 60px;
  height: 100%;
  background-color: var(--bg-white);
  border-bottom: 4px solid var(--line-yellow);
  clip-path: polygon(0 0, 40px 0, 100% 50%, 40px 100%, 0 100%, calc(100% - 40px) 50%);
  margin-left: -15px;
}

.arrow-1 { z-index: 3; }
.arrow-2 { z-index: 2; }
.arrow-3 { z-index: 1; }

.acute-chevron {
  --size: 250px;
  --color: rgba(255, 255, 255, 0.5);
  --sharpness: 50%;
  --thickness: 200px;
  --gap: -10px;
  display: inline-flex;
  height: var(--size);
  gap: var(--gap);
  position: absolute;
  top: 170px;
  right: 0px;
  z-index: 1;
}

.acute-chevron span {
  display: block;
  height: 100%;
  width: var(--thickness);
  background-color: var(--color);
  clip-path: polygon(
    0% 0%, 
    calc(100% - var(--sharpness)) 0%, 
    100% 50%, 
    calc(100% - var(--sharpness)) 100%, 
    0% 100%, 
    var(--sharpness) 50%
  );
}

.acute-chevron2 {
  --size: 250px;
  --color: rgba(255, 255, 255, 0.5);
  --sharpness: 50%;
  --thickness: 200px;
  --gap: -10px;
  display: inline-flex;
  height: var(--size);
  gap: var(--gap);
  position: absolute;
  top: 0px;
  left: -300px;
  z-index: 1;
}

.acute-chevron2 span {
  display: block;
  height: 100%;
  width: var(--thickness);
  background-color: rgb(160 225 255 / 50%);
  clip-path: polygon(
    0% 0%, 
    calc(100% - var(--sharpness)) 0%, 
    100% 50%, 
    calc(100% - var(--sharpness)) 100%, 
    0% 100%, 
    var(--sharpness) 50%
  );
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:640px) {
  #hero { background: #fab942; background-image: url(../img/SP_main.webp); background-repeat: no-repeat; background-size: cover; min-height: 600px; }
  .hero-inner { min-height: 600px; padding: 24px 20px 0; }
  .hd-inner { display: table; padding: 8px 0; }
  .hd-logo-text strong { font-size:15px; }
  .hd-logo-text span { display:none; }

  .btn-apply { font-size:11px; padding:7px 10px; width: 47vw; }
  .btn-mypage { font-size:11px; padding:7px 10px; width: 47vw; }

  .hero-right { display:none; }
  .hero-title-main { font-size: 36px; }
  .hero-title-sub  { font-size: 24px; }
  .hero-badges-wap { max-width: initial; position: initial; }
  .hero-badges { gap:10px; }

  .rate-badge { min-width: 160px; }
  .rate-badge .rb-num { font-size: 38px; }

  .hero-notice { font-size:11px; }
  .btn-cta-hero { font-size:13px; padding:10px 22px; }

  .arrow_img { position: absolute; right: 85px; bottom: 25px; height: 50px; width: 50px; }
  .arrow_img2 { position: absolute; right: 85px; bottom: 35px; height: 50px; width: 50px; }

  .sec-inner { padding:24px 14px; }
  .sec-title { font-size:2em; }
  .sec-title-back { position: initial; width: initial; }

  .kodawari-layout { flex-direction:column; }
  .kodawari-right { width: initial; }

  .flow-steps { flex-direction:column; align-items:center; gap:6px; margin: initial; }
  .flow-card { max-width:initial; }
  .flow-arrow { transform:rotate(90deg); margin-top:0; }
  .flow-arrow-first,.flow-arrow-second { display: none; }

  .btn-cta-orange { font-size:15px; padding:15px 40px; }

  .second-layout { flex-direction:column; padding: 20px; }
  .second-right { display:none; }
  .pay-circle { width:155px; height:155px; font-size:30px; }
  .pay-circle img { width: 20vw; }
  .payment-icons { gap:10px; }

  .calc-results { gap:8px; }
  .calc-box { padding: 10px; }
  .crb-amount { font-size:28px; }

  .faq-item.open .faq-a { padding: 12px 12px 12px 44px; }
  .acute-chevron { position: absolute; top: 370px; }
  .acute-chevron2 { position: absolute; top: 15px; }

  .pc { display: none; }
  .sp { display: block; }
}

@media (min-width:641px) and (max-width:960px) {
  .hero-title-main { font-size:44px; }
  .hero-title-sub  { font-size:30px; }
  .hero-right { width:160px; }
  .flow-card { max-width:200px; }

  .potision_img, potision_img_1, potision_img_2 { display: none; }
  .flow-arrow-first,.flow-arrow-second { display: none; }

}
