/* =========================================
   Reset 基本リセット
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF9EB;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 0;
}

@media (max-width: 768px) {
.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 0;
}
}

.inner-all {
  width: 100%;
  margin: 0 auto;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* =====================
   全体スケール制御（ここだけ触ればOK）
===================== */
html {
  font-size: 16px;
}

body {
font-size: clamp(0.95rem, 0.95rem + 0.2vw, 1.2rem);
}

/* =====================
   見出し（サイズ比率は元CSS踏襲）
===================== */
h1 {
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.4rem);
}

h2 {
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
}

h3 {
  font-size: clamp(1.2rem, 1.1rem + 0.6vw, 1.6rem);
}

h4 {
  font-size: 1.4rem;
  display: inline;
}

@media (max-width: 1200px) {
h4 {
  font-size: 1.2rem;
  display: inline;
}
}


/* =========================================
   Header
========================================= */
.site-header {
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

@media (max-width: 1200px) {
.site-header {
  padding: 0.4rem 0.4rem 0.2rem;
}
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
@media (max-width: 1200px) {
.header-flex {
  padding: 0.5rem 0.5rem;
}
}

.logo-area {
  display: flex;
}

@media (max-width: 1200px) {
.logo-area {
    flex-direction: column;
}
}

.logo-area .logo {
  max-width: 160px;
  margin-right: 2rem;
}
@media (max-width: 1200px) {
.logo-area .logo {
  max-width: 7rem;
  margin-right: 2rem;
}
}
.logo-area p {
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
.logo-area p {
    font-size: 0.7rem;
    margin-top: 0.2rem;
}
}



.header-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

@media (max-width: 1200px) {
.header-nav ul {
  gap: 0.4rem;
}
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  border-right: #333 1px solid;
  padding-right: 1rem;
}

.header-nav ul li:nth-child(4) a {
  border-right: none; 
  padding-right: 0; /* 線のスペースを完全に無くす場合 */
}

@media (max-width: 1200px) {
.header-nav a {
  font-size: 12px;
  padding-right: 0.4rem;
}
}

.header-nav .btn-contact {
  padding: 8px 18px;
  background: #ff8f00;
  color: #fff;
  border-radius: 999px;
}

.header-nav .btn-contact::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_feather-mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 6px;
  vertical-align: middle;
}

/* =========================================
   Hero
========================================= */
.hero {
  position: relative;
  height: 30vw;
  display: flex;
}
@media (max-width: 768px) {
.hero {
  height: 70vw;
}
}

.hero-img-left {
  flex: 1;
  background: url("../img/hero.png") center/cover no-repeat;
}

.hero-copy {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-copy .label {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255, 143, 0, 1);
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero-copy {
    width: 100%;
  }

  .hero-copy .label {
    font-size: 0.8rem;
    font-weight: bold;
  }
}

.hero-copy h1 {
  font-size: 2.4rem;
  margin: 16px 0;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
.hero-copy h1 {
  font-size: 1.8rem;
  margin: 16px 0;
}
}

.hero-copy p {
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
.hero-copy p {
  font-size: 0.9rem;
}
}

/* =========================================
   Section Title
========================================= */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.h2_tit {
  background-color: #FFC62C;
  padding: 4rem 0;
  color: #fff;
}

.h2_tit span {
  display: block;
  font-size: 1.2rem;
  opacity: 70%;
}

@media (max-width: 768px) {
.h2_tit {
  padding: 1rem 0;
}

.h2_tit span {
  font-size: 1rem;
}
}

/* =========================================
   お悩みセクション
========================================= */
.trouble {
  background: #FFF9EB;
  padding: 0 0;
}

.trouble-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .trouble-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    flex-direction: column;
  }
}

.trouble-cards .card {
  width: 32%;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .trouble-cards .card {
    width: 100%;
  }
}

.trouble-cards .card p {
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

.trouble-cards .card img {
  max-width: 50%;
  margin: auto;
}

.trouble .lead-p {
  text-align: center;
  padding-bottom: 2rem;
}
@media (max-width: 840px) {
.trouble .lead-p {
  text-align: justify;
  padding-bottom: 2rem;
}
}

.trouble .lead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: auto;
}

@media (max-width: 840px) {
.trouble .lead {
  font-size: 1.4rem;
  display: inline;
}
}

/* =========================================
   任意売却・リースバック
========================================= */
.solution {
  padding: 1rem 0;
  background: #FFF9EB;
}

.solution .inner {
  max-width: 90%;
  background-color: #fff;
  padding: 2rem;
  max-width: 1100px;
}

@media (max-width: 1000px) {
.solution {
  padding: 1rem 0;
  background: #FFF9EB;
}
.solution .inner {
  padding: 1rem;
  max-width: 1100px;
  width: 100%;
}
}

.solution .inner h2 {
  font-size: 1.4rem;
}

.solution .inner h2 span {
  font-size: 1.8rem;
}

@media (max-width: 1000px) {
.solution .inner h2 {
  font-size: 1.2rem;
}

.solution .inner h2 span {
  font-size: 1.4rem;
}
}


.solution .inner .lead {
  text-align: center;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
.solution .inner .lead {
  text-align: justify;
}
}

.solution-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
.solution-box {
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}
.solution-item {
  width: 100%;
}
}

.solution-item {
  width: 100%;
}

@media (max-width: 768px) {
.solution-item {
  width: 100%;
}
}



.solution-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  background-color: #C4B07A;
  padding: 1rem;
  color: #fff;
  border-radius: 1rem 1rem 0 0;
}

.solution-item h3 span {
  display: block;
  font-size: 1rem;
}

.solution-item p {
  margin-top: 1rem;
}

/* =========================================
   ABOUT
========================================= */
.about {
  background: #FFF9EB;
  padding: 0 0;
  margin: 2rem auto;
}

@media (max-width: 860px) {
.about {
  margin: 1rem auto;
}
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: auto;
  max-width: 800px;
}

@media (max-width: 860px) {
.about-flex {
  gap: 1rem;
  flex-direction: column;
}
}


.about-flex-onayami {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

@media (max-width: 860px) {
.about-flex-onayami {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto;
  max-width: 800px;
  padding: 1rem;
  flex-direction: column;
  width: 100%;
}
}


.about-flex-onayami p {
  flex-grow: 1;
  /* これで親要素の余ったスペースを均等に分け合う */
  padding: 3rem 5rem;
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
}

@media (max-width: 860px) {
.about-flex-onayami p {
  flex-grow: 1;
  /* これで親要素の余ったスペースを均等に分け合う */
  padding: 1rem 1rem;
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
  width: 100%;
}
}

.about .photo {
  max-width: 164px;
  max-width: 20%;
}

.about .text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about .about-lead {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

@media (max-width: 860px) {
.about .photo {
  max-width: 40%;
}

.about .text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about .about-lead {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
}

/* =========================================
   CTA
========================================= */
.cta {
  background: #FFECCC;
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

.cta h2 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #F29619;
}

@media (max-width: 1100px) {
.cta h2 {
    font-size: 1.2rem;
}
}

.cta .inner {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 2rem;
}

@media (max-width: 1100px) {
.cta .inner {
  padding: 1rem;
  gap: 1rem;
  flex-direction: column;
}
}

.cta .block01 {
  max-width: 20%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 1100px) {
.cta .block01 {
  max-width: 100%;
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
}
}

.cta .block01 p {
  display: block;
  background-color: #FFE6BC;
  padding: 2rem 2rem;
  border-radius: 1rem;
  color: #F29619;
}

@media (max-width: 1100px) {
.cta .block01 p {
  display: block;
  width: 50%;
}
}

.cta .block02 {
  max-width: 80%;
  text-align: justify;
}

@media (max-width: 1100px) {
.cta .block02 {
  max-width: 100%;
  text-align: justify;
}
}

.cta .block03 {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

@media (max-width: 1100px) {
.cta .block03 {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-direction: column;
}
}

.cta .block03 h3 {
  font-size: 1rem;
}

@media (max-width: 1100px) {
.cta .block03 h3 {
    text-align: center;
    margin-bottom: 0.4rem;
}
}

.cta .block03 p {
  font-size: 3.5rem;
  font-weight: bold;
  color: #F29619;
  line-height: 5rem;
}

@media (max-width: 1100px) {
.cta .block03 p {
  font-size: 2rem;
  line-height: 2rem;
  text-align: center;
}
}



.cta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.cta .tel {
  font-size: 32px;
  font-weight: 700;
  color: #c33700;
}

.cta .btn-contact {
  padding: 1rem 2rem;
  background: #ff8f00;
  color: #fff;
  border-radius: 999px;
  line-height: 5rem;
  text-decoration: none;
}

.cta .btn-contact::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icon_feather-mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 6px;
  vertical-align: middle;
}

@media (max-width: 1100px) {
.cta .btn-contact::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("../img/icon_feather-mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto;
  vertical-align: middle;
}
}
@media (max-width: 1100px) {
.cta .btn-contact {
  line-height: 1.6rem;
  text-decoration: none;
  display: block;
  margin: auto;
  text-align: center;
  max-width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
}
}

/* =========================================
   Footer
========================================= */
.site-footer {
  background: #fff;
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
}

.site-footer .logo {
  font-size: 1.8rem;
  text-align: center;
  display: block;
  margin: 0 auto 0.5rem;
  width: 100%;
  max-width: 100%;
  font-weight: bold;
}
@media (max-width: 1100px) {
.site-footer .logo {
  font-size: 1.2rem;
}
}

.site-footer p {
  margin-bottom: 0.5rem;
}


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

.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: .3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* 開いた時のアニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* SPメニュー */
.sp-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: .4s;
  padding-top: 80px;
  z-index: 1500;
}

.sp-nav .btn-contact::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/icon_feather-mail.svg") no-repeat center / contain;
  margin-right: 8px;
  vertical-align: middle;
}

.sp-nav.active {
  left: 0;
}

.sp-nav ul {
  list-style: none;
  text-align: center;
}

.sp-nav li {
  margin-bottom: 25px;
}

.sp-nav a {
  font-size: 18px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.sp-nav .btn-contact {
  display: inline-block;
  padding: 12px 28px;
  background: #ff8f00;
  color: #fff;
  border-radius: 999px;
}

/* SP表示 */
@media (max-width: 768px) {
  .pc-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.linemarker {
  background: linear-gradient(transparent 60%, #ff6 60%);
  width: fit-content;
}



/* =====================================================
   下層ページ 共通
===================================================== */
.page-visual {
  background: #FFC62C;
  padding: 0 0;
  text-align: center;
}

.page-visual h1 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

@media (max-width: 768px) {
.page-visual h1 {
  color: #fff;
  font-size: 1.42rem;
  font-weight: 700;
}
}

.breadcrumb {
  background: #fff8e8;
  padding: 10px 0;
  font-size: 14px;
}

.breadcrumb a {

  text-decoration: none;
}

.breadcrumb span {

}


/* =====================================================
   リード文
===================================================== */
.lead-block {
  padding: 2rem 0;
  text-align: center;
}

.lead-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
.lead-block h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.8;
}
}

.lead-block p {
  line-height: 1.8;
}

@media (max-width: 768px) {
.lead-block p {
  text-align: justify;
}
}


/* =====================================================
   ３つの想い
===================================================== */
.minds {
  padding: 2rem 0;
}
@media (max-width: 768px) {
.minds {
  padding: 1rem 0;
}
.minds .inner{
  width: 100%;
}
}

.section-title-small {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff8f00;
  padding-top: 2rem;
}
@media (max-width: 768px) {
.section-title-small {
    font-size: 1.4rem;
}
}

.minds-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2rem;
}

@media (max-width: 870px) {
.minds-box {
  gap: 1rem;
  padding: 0 1rem 3rem;
  flex-direction: column;
}
}

.section-wide .minds-box {
  background-color: #fff;
  border-radius: 1rem;
}

.mind-item {
  width: 32%;
  padding: 0 2rem;
  text-align: center;
  border-right: #333 1px solid;
  margin: 2rem 0;
}

@media (max-width: 870px) {
.mind-item {
  width: 100%;
  padding: 0 0rem;
  text-align: center;
  border-right: none;
  margin: 0 0 0;
}
}

.mind-item:last-child {
  border-right: none;
}

.mind-item .num {
  display: block;
  color: #ff8f00;
  font-weight: bold;
  padding: 5px 0px;
  border-radius: 20px;
  font-size: 1.6rem;
}

.mind-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}


.mind-item p {
  color: #555;
  text-align: justify;
}

.minds .inner {
  background-color: #fff;
  border-radius: 1rem;
}

/* =====================================================
   代表メッセージ
===================================================== */
.message {
  padding: 2rem 0;
}

@media (max-width: 870px) {
.message {
  padding: 1rem 0;
  margin-top: 1rem;
}
}

.message .inner {
  max-width: 1100px;
  background: #fffdf8;
  padding: 2rem;
}

@media (max-width: 870px) {
.message .inner {
  max-width: 1100px;
  background: #fffdf8;
  padding: 1rem;
}
}

.message-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 870px) {
.message-flex {
  gap: 1rem;
  flex-direction: column;
}
}

.msg-photo {
  width: 30%;
  text-align: center;
  min-width: 200px;
}

@media (max-width: 870px) {
.msg-photo {
  width: 40%;
}
}

.msg-photo img {
  width: 150px;
  margin: auto;
}

@media (max-width: 870px) {
.msg-photo img {
  width: 100%;
  margin-bottom: 1rem;
}
}

.msg-photo p {
  text-align: center;
  font-weight: bold;
}

.msg-photo p span {
  font-size: 1rem;
}

.msg-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  border-bottom: #ffcc66 3px dotted;
  padding-bottom: 1rem;
}

.msg-text p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #555;

}



/* =====================================================
   会社情報
===================================================== */

.section-tit2 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.section-tit2::after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.4rem;
  background: #f5c441;
  margin: 1rem auto 0;
}

.company-info {
  padding: 2rem 0;
}

@media (max-width: 870px) {
.company-info {
  padding: 1rem 0;
}
}

.info-table {
  width: 100%;
  border-collapse: separate;
  background: #FFF9EB;
}

.info-table th,
.info-table td {
  padding: 1rem;
  vertical-align: top;
}

@media (max-width: 870px) {
.info-table th,
.info-table td {
    display: block;
}
}

.info-table th {
  width: 20%;
  background: #F2E6C5;
  font-weight: 700;
  text-align: left;
}

.info-table td {
  line-height: 1.7;
  background-color: #fff;
}

@media (max-width: 870px) {
.info-table th {
  width: 100%;
  background: #F2E6C5;
  font-weight: 700;
  text-align: left;
}
}



/* =====================================================
   共通下層ページスタイル
===================================================== */

.eyecatch img {
  width: 100%;
  height: auto;
  margin: 0 0;
}

.section-wide {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #FFECCC;
}

@media (max-width: 768px) {
.section-wide {
  padding: 2rem 0rem;
}
}

.section-wide .inner {
  max-width: 1100px;
}

.section-wide p {
  color: #555;
  line-height: 1.8;
  max-width: 1100px;
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
.section-wide p {
  text-align: justify;
}
}

.mini-profile {
  margin: 3rem auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #F39E2B;
  max-width: 800px;
  text-align: justify !important;
}

@media (max-width: 870px) {
.mini-profile {
  margin: 1rem auto;
  gap: 0.5rem;
  padding: 1rem 1rem;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #F39E2B;
  max-width: 800px;
  text-align: justify !important;
  flex-direction: column;
}
}

.mini-profile img {
  border-radius: 100px;
}

.mini-profile p.profile {
    font-size: 1.2rem;
    margin: 0;
}

@media (max-width: 870px) {
.mini-profile p.profile {
    font-size: 1rem;
    margin: 0;
}
}

.mini-profile p span {
  font-weight: bold;
  color: #ff8f00;
}


/* =====================================================
   競売との違い
===================================================== */

.compare-section {
  padding: 60px 0;
}

p.h3tit_read {
  text-align: center;
}

@media (max-width: 768px) {
p.h3tit_read {
  text-align: justify;
}
}

.compare-lead {
  text-align: center;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 1rem;
}

@media (max-width: 768px) {
.compare-lead {
  text-align: justify;
}
}
.compare-section .table-scroll {
    overflow-x: visible;
}


@media (max-width: 768px) {
.compare-section .table-scroll {
    overflow-x: auto;
        -webkit-overflow-scrolling: touch;
}
}

.compare-table {
  width: 768px;
  margin: 2rem auto 0;
  max-width: 1100px;
  background: #FFF9EB;
  font-size: 1rem;
}

.compare-table th,
.compare-table td {
  padding: 14px;
  text-align: center;
  background-color: #fff;
}

.compare-table th {
  background: #FFECCC;
  font-weight: bold;
  border-radius: 1rem 1rem 0 0;
}

.compare-table th:first-child {
  background: none;

}

.compare-table td:first-child {
  background: #FFF3D6;
  font-weight: bold;
}

.compare-support {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.compare-support img {
  border-radius: 100px;
}


/* =====================================================
   任意売却の流れ
===================================================== */

.flow-section {
  padding: 0px 0;
}

.flow-section .inner {
  max-width: 1100px;
}

.flow-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto 0;
}

.flow-item {
  background: #fffdf5;
  border-radius: 10px;
  display: flex;
}

@media (max-width: 768px) {
.flow-item {
    flex-direction: column;
}
}



.flow-step {
  background: #FFF0CC;
  padding: 1rem;
  border-radius: 1rem 0 0 1rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
.flow-step {
  border-radius: 1rem 1rem 0 0;

}
}

.flow-item:nth-child(even) .flow-step {
  background: #FFE9C2;
}

.flow-step span {
  color: #ff8f00 !important;
  display: block;
  font-size: 1.2rem !important;
  line-height: 1.0;
}

.flow-item p {
  font-size: 1.0rem;
  padding: 1rem;
}

.flow-item p span {
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 0.4rem;
  display: block;
}


/* =====================================================
   任意売却がおすすめの方
===================================================== */

.recommend-section {
  padding: 70px 0;
}

.recommend-section .inner {
  max-width: 1100px;
}

.recommend-box {
  max-width: 740px;
  margin: 0 auto;
  padding: 1rem 1rem;
  border: 2px solid #ffcc66;
  border-radius: 12px;
  background: #fff;
}

.recommend-box ul {
  list-style: none;
  padding-left: 0;
}

.recommend-box li {
  padding-left: 0;
  position: relative;
  margin-bottom: 14px;
}

.recommend-box li::before {
  content: "✓";
  color: #ff9900;
  font-weight: bold;
  border: #333 1px solid;
  width: 1.4rem;
  text-align: center;
  display: inline-block;
  margin-right: 1rem;
}

.recommend-box p {
  text-align: center;
  font-weight: bold;
  color: #F29619;
}



/* =====================================================
   リースバックとはページ専用
===================================================== */

/* -------------------------
  メリットセクション
------------------------- */

.benefit-section {
  background: #fff8e8;
  padding: 70px 0;
}

.benefit-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  width: 32%;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #f3e4c6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.benefit-item .num {
  display: inline-block;
  background: #ffcc66;
  color: #333;
  font-weight: bold;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 15px;
  color: #555;
}







/* =====================================================
   よくあるご質問（基本レイアウト）
===================================================== */

.faq-section {
  padding: 70px 0;
}

.faq-section .faq-item {
  max-width: 800px;
  margin: 0 auto 25px;
}

.faq-section .faq-q {
  font-weight: bold;
  margin-bottom: 1rem;
}

.faq-section .faq-a {
  color: #555;
  line-height: 1.8;
}

.faq-wrapper .faq-q-text {
  font-weight: bold;
  margin-bottom: 1rem;
}




/* =====================================================
   お問い合わせページ専用 CSS
===================================================== */

/* ------------------------------
   注意事項セクション
------------------------------ */

.contact-notes {
  background: #FFECCC;
  padding: 60px 0;
}

.contact-notes .section-title-small {
  text-align: center;
  margin-bottom: 30px;
}

.notes-box {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px 30px;
  border: 1px solid #f3d9b8;
}

.notes-box ul {
  list-style: none;
  padding: 0;
}

.notes-box li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 15px;
  color: #555;
}

/* 黄色丸アイコン */
.notes-box li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #ff9900;
  font-size: 10px;
}

/* =====================================================
   フォームセクション
===================================================== */

.contact-form-section {
  padding: 70px 0;
  background: #fff8e8;
}

.contact-form-section .section-title-small {
  text-align: center;
}

.form-desc {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.7;
}

/* ----------- フォーム本体 -------------- */

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 700;
  color: #444;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  margin-top: 8px;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.contact-form textarea {
  height: 160px;
  resize: vertical;
}

/* 「必須」マーク */
.req {
  color: #e60000;
  margin-left: 4px;
  font-size: 13px;
}

/* ----------- ラジオボタン -------------- */

.radio-block {
  margin-top: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f1e4c8;
}

.radio-block p {
  font-weight: 700;
  margin-bottom: 10px;
}

.radio-block label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
  font-weight: normal;
}


/* ----------- 送信ボタン -------------- */

.btn-submit {
  margin: 30px auto 0;
  padding: 14px 24px;
  background: #ff9900;
  border-radius: 30px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: opacity .3s;
}

.btn-submit:hover {
  opacity: .85;
}



/* 外枠 */
.faq-wrapper {
  display: flex;
  justify-content: center;
}

/* カード */
.faq-wrapper .faq-card {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  padding: 32px 28px;
}

/* 各Q&Aブロック */
.faq-wrapper .faq-item+.faq-item {
  margin-top: 28px;
}

/* Q / A 共通 */
.faq-wrapper .faq-q,
.faq-wrapper .faq-a {
  display: flex;
  align-items: flex-start;
  line-height: 1.8;
  margin: 0;
}

/* ラベル共通 */
.faq-wrapper .label {
  width: 2.2em;
  /* ← ここで開始位置が揃う */
  flex-shrink: 0;
  font-weight: 700;
}

/* Q */
.faq-wrapper .label.q {
  color: #f39800;
}

/* A */
.faq-wrapper .label.a {
  color: #f39800;
}

/* 本文 */
.faq-wrapper .faq-q-text {
  display: block;
  color: #F39E2B;
}

.faq-wrapper .faq-a-text {
  display: block;
  color: #444;
}

.arrow-down {
  width: 0;
  height: 0;
  margin: auto;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid #b9a46a;
  /* 三角の色 */
  background-color: #FFF9EB;
  margin: 2rem auto 0;
}

.form__contents {
  max-width: 1100px;
  margin: 0 auto;
}

.form__contents .marginB10 {
  margin-bottom: 0.3rem;
}

.part__table03 {
  margin: 0 auto;
  font-size: 16px;
  border-spacing: 3rem 1rem;
}

.form__title-inner {
  max-width: 300px;
  height: 3rem;
  border: none;
  padding: 1rem;
  text-align: right;

}

.form__text {
  width: 100%;
  height: 3rem;
  border: none;
  padding: 1rem;
}

.form__texarea {
  width: 100%;
  border: none;
  padding: 1rem;
}

.part__btn01 a {
  display: block;
  margin: 2rem auto;
  padding: 0;
  background: #ff8f00;
  color: #fff;
  border-radius: 999px;
  line-height: 5rem;
  text-decoration: none;
  text-align: center;
  max-width: 20rem;
}

#form-fields dd {
  background-color: #fff !important;
}


.form-preview-dl input[type="text"] {
    background-color: #fff !important;

}

.show-page-btn .btn {
    border: none !important;
    background-color: #c33700 !important;

}



/* =====================================================
   REM + CLAMP 差分パッチCSS
   目的：見た目を一切変えず、文字と余白のみスケール対応
   使い方：既存CSSの「後」に読み込む
===================================================== */



/* =====================
   テキスト共通（px指定を上書き）
===================== */
/* p,
li,
dt,
dd,
label,
input,
textarea,
select,
button {
  font-size: 1rem;
  line-height: 1.8;
} */

/* =====================
   セクション余白（安全な範囲のみ）
===================== */
/* .section-title,
.section-title-small,
.lead-block,
.section-wide,
.solution,
.about,
.cta,
.faq-section,
.contact-form-section,
.company-info,
.compare-section,
.flow-section,
.recommend-section,
.benefit-section {
  padding-top: 2rem;
  padding-bottom: 1rem;
} */

/* =====================
   カード・ブロック系余白
===================== */
/* .card,
.trouble-cards .card,
.solution-item,
.benefit-item,
.recommend-box,
.faq-card,
.notes-box,
.mini-profile {
  padding: 0rem;
} */

/* =====================
   ボタン文字サイズのみ調整
===================== */
/* .btn-contact,
.btn-submit {
  font-size: 1rem;
} */

/* =====================
   フォーム入力文字サイズ
===================== */
/* .contact-form input,
.contact-form textarea {
  font-size: 1rem;
} */

/* =====================
   テーブル文字
===================== */
/* table,
th,
td {
  font-size: 0.95rem;
  line-height: 1.6;
} */
