@charset "utf-8";

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* =================================================
   root
================================================= */
:root{
  --main: #0f4c81;
  --main-dark: #08375d;
  --main-light: #eef5fb;
  --accent: #f08a24;
  --accent-dark: #d96d06;
  --danger: #c8332d;
  --danger-dark: #a91f1a;
  --line: #06c755;
  --mail: #1976d2;
  --text: #333;
  --subtext: #555;
  --border: #d8e1ea;
  --soft-border: #e5d6ae;
  --soft-bg: #fffdf7;
  --box-bg: #f9fbfd;
  --shadow: 0 4px 14px rgba(0,0,0,0.08);
  --radius: 12px;
  --content: min(94%, 1100px);
  --narrow: min(94%, 900px);
}

/* =================================================
   reset / base
================================================= */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  font-size: 16px;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  background: #fff;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}

figure,
dd{
  margin: 0;
}

nav ul,
ul,
ol{
  margin: 0;
  padding: 0;
}

table{
  border-collapse: collapse;
}

iframe,
video{
  max-width: 100%;
}

a{
  color: inherit;
  text-decoration: none;
  transition: .25s ease;
}

a:hover{
  filter: brightness(1.05);
}

p{
  margin: 0 0 1.15em;
}

section{
  padding: 52px 0;
}

@media (max-width: 767px){
  body{
    font-size: 19px;
  }

  section{
    padding: 38px 10px;
  }
}

/* PC 768px以上 PCでは電話リンク無効*/
/* +++++++++++++++++++++++++++++++++++++++ */
@media (min-width:768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/* =================================================
   layout
================================================= */
#container{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#contents{
  flex: 1;
}

main > section > *{
  margin-left: auto;
  margin-right: auto;
}

/* =================================================
   header
================================================= */
header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px;
  color: #fff;
  z-index: 20;
}

header h1{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


#logo a{
  display: inline-block;
}

#logo img{
  display: block;
  width: 240px;
}


/* PC 768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media (min-width:768px){
  header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
  }

  h1{
    font-size: 13px;
    left: 28px;
    top: 6px;
  }

  #logo img{
    width: 360px;
  }
}



/* =================================================
   header buttons
================================================= */
#header-box{
  display: none;
}

#header-box .btn{
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
}

#header-box .btn li{
  list-style: none;
}

#header-box .btn a{
  display: block;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
}

#header-box .btn i{
  margin-right: 8px;
}

@media (min-width:1100px){
  #header-box{
    display: block;
    margin-right: 90px;
  }
}

/* =================================================
   hamburger menu
================================================= */
.menu-wrapper{
  position: relative;
}

.menu-icon{
  width: 58px;
  height: 58px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 40;
  cursor: pointer;
  background: #000;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.menu-icon span{
  width: 30px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: .35s ease;
}

#menu-toggle:checked + .menu-icon span:nth-child(1){
  transform: translateY(12px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2){
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3){
  transform: translateY(-12px) rotate(-45deg);
}

.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
  z-index: 25;
}

#menu-toggle:checked ~ .overlay{
  opacity: 1;
  pointer-events: auto;
}

.menu{
  position: fixed;
  top: 0;
  right: -340px;
  width: min(340px, 86vw);
  height: 100vh;
  background: #111;
  color: #fff;
  overflow-y: auto;
  box-shadow: -6px 0 18px rgba(0,0,0,0.18);
  transition: right .35s ease;
  z-index: 30;
}

#menu-toggle:checked ~ .menu{
  right: 0;
}

.menu ul{
  list-style: none;
  padding: 88px 22px 28px;
}

.menu li + li{
  margin-top: 12px;
}

.menu a{
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 10px;
}

.menu a:hover{
  background: rgba(255,255,255,0.08);
  color: #7fc6ff;
}

@media (max-width: 767px){
  .menu-icon{
    width: 54px;
    height: 54px;
    top: 12px;
    right: 12px;
  }
}




/* =================================================
   main visual
================================================= */
#mainimg{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

#mainimg img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 黒グラデーション */
#mainimg::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
  z-index: 1;
}

/* PCでは左寄せ */
.top-title{
  position: absolute;
  top: 60%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(90%, 1100px);
  text-align: left;
}

.top-title h2{
  margin: 0;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.28;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.top-sub{
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 700;
  color: #ffff00;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}


/* スマホ用768px以下 */
@media (max-width: 767px) {
  #mainimg{
    height: 78vh;
    min-height: 420px;
  }

  #mainimg::after{
    height: 55%;
  }

  .top-title{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }

  .top-title h2{
    font-size: 28px;
    line-height: 1.4;
  }

  .top-sub{
    margin-top: 14px;
    font-size: 16px;
  }

}



/* =================================================
   floating CTA
================================================= */

#btn-special{
  position: fixed;
  right: 14px;
  top: 20vh;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* PC */

#btn-special a{
  display: block;
  color: #fff;
  padding: 1.2rem 0.8rem;
  font-weight: 700;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}

.btn-tel{
  background: #e53935;
}

.btn-line{
  background: #06c755;
}

#btn-special i{
  padding-bottom: .6rem;
  font-size: 18px;
}


/* ==============================
   スマホ
============================== */

@media (max-width: 767px){
  #btn-special{
    display: none;
  }
}

/* =================================================
   スマホ下固定CTA
================================================= */
.sp-cta{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.18);
}

.sp-cta a{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 58px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.25s ease;
}

.sp-cta a:hover{
  opacity: 0.92;
}

.sp-cta a i{
  font-size: 18px;
}

.sp-cta-tel{
  background: #d63b3b;
}

.sp-cta-line{
  background: #06c755;
}

@media screen and (min-width: 768px){
  .sp-cta{
    display: none;
  }
}

@media screen and (max-width: 767px){
  body{
    padding-bottom: 58px;
  }
}

/* =================================================
   section titles
================================================= */
.h2_waku{
  width: min(94%, 900px);
  color: var(--main);
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.5;
  padding: .75em 1em;
  border: 3px solid var(--main);
  position: relative;
  text-align: center;
  margin: 0 auto 24px;
  background: #fff;
  border-radius: 10px;
}

.h2_waku::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-width: 24px 24px 0 0;
  border-style: solid;
  border-color: var(--main) #fff var(--main);
  border-top-left-radius: 6px;
}

.heading03{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.5;
  text-align: center;
  margin: 0 0 18px;  /*上 左右 下*/
  padding: 20px 0 0;
  color: var(--text);
}

.heading03::before,
.heading03::after{
  content: "";
  width: 60px;
  height: 3px;
  background-color: #ff6a00;
  border-radius: 999px;
}

.midashi{
  width: min(94%, 900px);
  background: #192f60;
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 800;
  text-align: center;
  margin: 0 auto 26px;
}

@media (max-width: 767px){
  .h2_waku{
    width: 100%;
    font-size: 1.3rem;
    padding: .8em .75em;
  }

  .heading03{
    gap: 10px;
  }

  .heading03::before,
  .heading03::after{
    width: 28px;
  }
}

/* =================================================
   common box
================================================= */
.waku_box{
  width: var(--narrow);
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  background: var(--box-bg);
  box-shadow: var(--shadow);
}

.waku_box p{
  margin: 0 0 1em;
}

.waku_box p:last-child{
  margin-bottom: 0;
}

.waku_box img{
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px){
  .waku_box{
    width: 100%;
    padding: 18px 14px;
  }
}


/* =========================
   CTA 全体
========================= */
.contact-cta{
  width:min(92%, 920px);
  margin:40px auto;
  padding:38px 24px;
  background:#eef5fb;
  border:1px solid #cfe0ef;
  border-radius:24px;
  text-align:center;
  box-sizing:border-box;
}

/* ラベル */
.contact-cta-label{
  display:inline-block;
  margin:0 0 18px;
  padding:9px 18px;
  background:#c79311;
  color:#fff;
  font-size:14px;
  font-weight:700;
  border-radius:999px;
  line-height:1.4;
}

/* タイトル */
.contact-cta-title{
  margin:0 0 16px;
  font-size:clamp(22px, 3vw, 36px);
  font-weight:700;
  line-height:1.4;
  color:#0f4c81;
}

/* 説明 */
.contact-cta-text{
  margin:0 0 26px;
  font-size:15px;
  line-height:1.9;
  color:#444;
}

.cta-text-red{
  color:#d94a1e;
  font-weight:700;
}

.cta-text-blue{
  color:#1d3fb8;
  font-weight:700;
}

/* =========================
   電話ボタン
========================= */
.cta-tel-strong{
  display:block;
  width:min(100%, 520px);
  margin:0 auto 18px;
  text-decoration:none;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(135deg,#ff3b30,#c40000);
  box-shadow:0 10px 24px rgba(196,0,0,0.22);
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.cta-tel-strong:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(196,0,0,0.30);
  opacity:0.98;
}

.cta-tel-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:18px 20px;
  color:#fff;
}

.cta-tel-inner i{
  flex:0 0 auto;
  font-size:24px;
}

.cta-tel-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
}

.cta-tel-main{
  display:block;
  font-size:15px;
  font-weight:700;
  line-height:1.4;
}

.cta-tel-number{
  display:block;
  font-size:20px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:1px;
}

/* =========================
   下段ボタン共通
========================= */
.contact-cta-sub{
  width:100%;
}

.contact-cta-btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:min(100%, 520px);
  min-height:116px;
  margin:0 auto 14px;
  padding:18px 16px;
  border-radius:16px;
  color:#fff;
  text-decoration:none;
  box-sizing:border-box;
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.contact-cta-btn:hover{
  transform:translateY(-2px);
  opacity:0.97;
}

.contact-cta-btn i{
  font-size:22px;
  margin-bottom:8px;
}

.contact-cta-btn span{
  display:block;
  font-size:17px;
  font-weight:700;
  line-height:1.5;
}

.contact-cta-btn small{
  display:block;
  margin-top:6px;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.contact-cta-btn em{
  display:none;
  margin-top:6px;
  font-style:normal;
  font-size:11px;
  line-height:1.5;
  color:rgba(255,255,255,0.92);
}

/* LINE */
.contact-cta-btn-line{
  background:linear-gradient(135deg,#06c755,#00a63f);
  box-shadow:0 8px 18px rgba(6,199,85,0.18);
}

/* フォーム */
.contact-cta-btn-form{
  background:linear-gradient(135deg,#a6783a,#7b5426);
  box-shadow:0 8px 18px rgba(123,84,38,0.18);
}

/* =========================
   PCだけコンパクト化
========================= */
@media (min-width:769px){

  .contact-cta{
    padding:28px 24px;
  }

  .contact-cta-title{
    margin-bottom:12px;
  }

  .contact-cta-text{
    margin-bottom:20px;
    font-size:14px;
    line-height:1.8;
  }

  .cta-tel-strong{
    width:min(100%, 500px);
    margin-bottom:14px;
  }

  .cta-tel-inner{
    padding:15px 18px;
  }

  .cta-tel-inner i{
    font-size:22px;
  }

  .cta-tel-main{
    font-size:14px;
  }

  .cta-tel-number{
    font-size:19px;
  }

  .contact-cta-sub{
    width:min(100%, 700px);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    align-items:stretch;
  }

  .contact-cta-btn{
    width:100%;
    min-height:92px;
    margin:0;
    padding:14px 14px;
    border-radius:14px;
  }

  .contact-cta-btn i{
    font-size:20px;
    margin-bottom:6px;
  }

  .contact-cta-btn span{
    font-size:15px;
    line-height:1.4;
  }

  .contact-cta-btn small{
    margin-top:4px;
    font-size:12px;
    line-height:1.4;
  }

  .contact-cta-btn em{
    display:block;
  }
}

/* =========================
   スマホ対応
========================= */
@media (max-width:768px){

  .contact-cta{
    width:94%;
    margin:28px auto;
    padding:28px 16px;
    border-radius:20px;
  }

  .contact-cta-label{
    margin-bottom:16px;
    font-size:13px;
    padding:8px 15px;
  }

  .contact-cta-title{
    font-size:clamp(24px, 7vw, 34px);
    margin-bottom:14px;
  }

  .contact-cta-text{
    margin-bottom:22px;
    font-size:14px;
    line-height:1.8;
  }

  .cta-tel-strong{
    width:100%;
    margin-bottom:14px;
    position:relative;
  }

  .cta-tel-inner{
    padding:16px 14px;
    gap:12px;
  }

  .cta-tel-inner i{
    font-size:22px;
  }

  .cta-tel-main{
    font-size:14px;
  }

  .cta-tel-number{
    font-size:19px;
  }

  .contact-cta-sub{
    display:block;
  }

  .contact-cta-btn{
    width:100%;
    min-height:104px;
    margin-bottom:14px;
    padding:16px 14px;
  }

  .contact-cta-btn span{
    font-size:16px;
  }

  .contact-cta-btn small{
    font-size:12px;
  }

  .cta-tel-strong::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:16px;
    box-shadow:0 0 0 0 rgba(255,59,48,0.55);
    animation:ctaPulse 2s infinite;
    pointer-events:none;
  }

  @keyframes ctaPulse{
    0%{ box-shadow:0 0 0 0 rgba(255,59,48,0.55); }
    70%{ box-shadow:0 0 0 12px rgba(255,59,48,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,59,48,0); }
  }
}



/* =================================================
   CTA contact-cta-mini
================================================= */
.contact-cta-mini{
  margin:36px auto;
  padding:22px 20px;
  background:#fff9f4;
  border:2px solid #8b0000;
  border-radius:14px;
  text-align:center;
  max-width:820px;
  box-sizing:border-box;
}

.cta-mini-text{
  font-weight:700;
  font-size:1.3rem;
  line-height:1.4;
  margin:0 0 16px;
  color:#0f4c81;
}

.cta-mini-btns{
  display:grid;
  grid-template-columns:repeat(3, minmax(150px, 1fr));
  gap:12px;
  max-width:720px;
  margin:0 auto 16px;
}

.cta-mini-btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-height:92px;
  padding:14px 12px;
  border-radius:10px;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
  text-align:center;
  transition:0.25s;
  box-sizing:border-box;
}

.cta-mini-btn:hover{
  transform:translateY(-2px);
  opacity:0.95;
}

.cta-mini-btn i{
  font-size:20px;
  margin-bottom:4px;
}

.cta-mini-btn span{
  display:block;
  font-size:16px;
  line-height:1.4;
}

.cta-mini-btn small{
  display:block;
  font-size:12px;
  line-height:1.4;
  margin-top:2px;
  font-weight:700;
}

.cta-mini-note{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#555;
}

.cta-mini-tel{
  background:#e53935;
}

.cta-mini-line{
  background:#06c755;
}

.cta-mini-form2{
  background:#8b6b3d;
}

/* 上段LINEを横幅いっぱいに */
.cta-mini-line-main{
  grid-column: 1 / -1;
  min-height: 100px;
}

/* 下段2つ */
.cta-mini-btns{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  max-width:520px;
  margin:0 auto 16px;
}

/* スマホ */
@media (max-width:767px){
  .cta-mini-line-main{
    min-height:90px;
  }

  .cta-mini-btns{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .contact-cta-mini{
    padding:18px 14px;
  }

  .cta-mini-text{
    font-size:1.1rem;
    margin-bottom:14px;
  }

  .cta-mini-btns{
    grid-template-columns:1fr;
    gap:10px;
    max-width:100%;
    margin:0 auto 14px;
  }

  .cta-mini-btn{
    min-height:78px;
    padding:12px 14px;
    font-size:14px;
  }

  .cta-mini-btn span{
    font-size:15px;
  }

  .cta-mini-btn small{
    font-size:12px;
  }

  .cta-mini-note{
    font-size:13px;
  }
}


/* =================================================
   antique
================================================= */
.partner-hero{
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
  url('pict/kottou-bg.jpg') center/cover;
  color:#fff;
  text-align:center;
  padding:80px 20px;
}
.partner-hero h1{
  font-size:28px;
  margin-bottom:15px;
}
.partner-hero p{
  font-size:16px;
  opacity:0.9;
}

.partner-section{
  max-width:1000px;
  margin:60px auto;
  padding:0 20px;
}

.partner-box{
  background:#f8fbff;
  border-left:6px solid #0f4c81;
  padding:20px;
  margin-bottom:20px;
  border-radius:8px;
}

.partner-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.partner-card{
  border:1px solid #ddd;
  border-radius:10px;
  padding:20px;
  background:#fff;
}

.partner-cta{
  text-align:center;
  background:#0f4c81;
  color:#fff;
  padding:40px 20px;
  border-radius:10px;
}

.partner-cta a{
  display:inline-block;
  background:#e53935;
  color:#fff;
  padding:15px 25px;
  margin-top:15px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* ▼カスタムリスト（骨董・サービス説明用） */
.list-style-box {
  padding: 0;
  position: relative;
}

.list-style-box li {
  color: #333;
  border-left: solid 6px #0f4c81;
  background: #f1f8ff;
  margin-bottom: 6px;
  line-height: 1.6;
  padding: 10px 12px;
  list-style: none;
}



/* =================================================
   提携メリット 4BOX
================================================= */
.partner-merit-grid{
  width: min(94%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.partner-merit-card{
  color: #fff;
  text-align: center;
  padding: 34px 28px 36px;
  min-height: 340px;
  box-sizing: border-box;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.partner-merit-icon{
  font-size: 78px;
  line-height: 1;
  margin-bottom: 22px;
}

.partner-merit-line{
  width: 82%;
  height: 2px;
  margin: 0 auto 22px;
  background: rgba(255,255,255,0.9);
}

.partner-merit-card h3{
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

.partner-merit-card p{
  margin: 0;
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 3px 0 rgba(0,0,0,0.14);
}

/* 色違い */
.merit-card-1{
  background: #123f8f;
}

.merit-card-2{
  background: #1159bd;
}

.merit-card-3{
  background: #1563c4;
}

.merit-card-4{
  background: #3f9cdd;
}

/* タブレット */
@media (max-width: 900px){
  .partner-merit-grid{
    gap: 20px;
  }

  .partner-merit-card{
    min-height: 290px;
    padding: 28px 20px 30px;
  }

  .partner-merit-icon{
    font-size: 62px;
    margin-bottom: 18px;
  }

  .partner-merit-line{
    margin-bottom: 18px;
  }
}

/* スマホ1列 */
@media (max-width: 768px){
  .partner-merit-grid{
    grid-template-columns: 1fr;
  }

  .partner-merit-card{
    min-height: auto;
    padding: 26px 18px 28px;
  }

  .partner-merit-icon{
    font-size: 54px;
  }

  .partner-merit-card h3{
    font-size: 2rem;
  }

  .partner-merit-card p{
    font-size: 1.15rem;
  }
}

/* =================================================
   現場写真 4枚グリッド
================================================= */
.partner-photo-section{
  width: min(94%, 1100px);
  margin: 0 auto 70px;
}

.partner-photo-lead{
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
  margin: 0 auto 32px;
}

.partner-photo-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.partner-photo-card{
  background: #fff;
  border: 1px solid #d8e3ef;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-photo-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
}

.partner-photo-card figure{
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f6fa;
}

.partner-photo-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-photo-text{
  padding: 18px 18px 20px;
}

.partner-photo-text h3{
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #0f4c81;
  line-height: 1.4;
}

.partner-photo-text p{
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #555;
}

/* スマホ1列 */
@media (max-width: 768px){
  .partner-photo-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-photo-lead{
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .partner-photo-text{
    padding: 16px;
  }

  .partner-photo-text h3{
    font-size: 1.08rem;
  }

  .partner-photo-text p{
    font-size: 0.93rem;
  }
}



/* =================================================
   worries list
================================================= */
.parent{
  width: 100%;
  display: flex;
  justify-content: center;
}

ul.nayami{
  width: min(94%, 900px);
  font-size: 1.15rem;
  font-weight: 700;
  border: 2px solid #9dc2ea;
  background: #f4f9ff;
  padding: 14px 18px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

ul.nayami li{
  position: relative;
  line-height: 1.7;
  padding: .75em 0 .75em 2em;
  list-style: none;
  border-bottom: 1px dashed #7ca9da;
}

ul.nayami li:last-child{
  border-bottom: none;
}

ul.nayami li::before{
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f1b0";
  color: #5e93d0;
  position: absolute;
  left: 0;
  top: .85em;
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px){
  .parent{
    display: block;
  }

  ul.nayami{
    width: 100%;
    font-size: 1.05rem;
    padding: 10px 12px;
  }
}

/* =================================================
   explanation box
================================================= */
.waku-4{
  width: var(--narrow);
  margin: 0 auto;
  border: 2px solid var(--main);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.waku-4 > div{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 14px;
  background-color: var(--main);
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.6;
}

.waku-4 p{
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  text-align: center;
  padding: 0 18px;
}

.waku-4 p:first-of-type{
  padding-top: 18px;
}

.waku-4 p:last-child{
  padding-bottom: 18px;
  margin-bottom: 0;
}

@media (max-width: 767px){
  .waku-4{
    width: 100%;
  }

  .waku-4 p{
    text-align: left;
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* =================================================
   numbered list
================================================= */
ol.gomi_ul{
  width: min(94%, 720px);
  counter-reset: list;
  list-style: none;
  padding: 0;
  margin: 18px auto;
}

ol.gomi_ul li{
  position: relative;
  line-height: 1.7;
  margin: 0 0 12px 40px;
  padding: 0 0 10px 12px;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid #8b0000;
}

ol.gomi_ul li::before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  background: #8b0000;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: .95rem;
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px){
  ol.gomi_ul{
    width: calc(100% - 10px);
  }

  ol.gomi_ul li{
    font-size: 1rem;
  }
}


/* =================================================
   top-review-points
================================================= */

.top-review-points{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.top-review-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.top-review-points i {
  color: #0f4c81; /* 紺色に統一 */
  font-size: 16px;
}



/* =================================================
   reasons
================================================= */
.reason-section{
  width: min(94%, 1000px);
  margin: 0 auto;
  padding-top: 10px;
}

.reason-section h2{
  text-align: center;
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: #0b3c72;
  margin: 0 0 28px;
  font-weight: 800;
  line-height: 1.5;
}

.reason-box{
  background: #fff;
  border-left: 8px solid #1565c0;
  border-radius: 10px;
  padding: 22px 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.reason-box h3{
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.5;
  color: #7f1d1d;
  font-weight: 800;
}

.reason-box p{
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.9;
}


/* スマホ用768px以下 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px){
  .reason-section{
    width: 100%;
  }

  .reason-box{
    padding: 18px 14px;
    border-left-width: 6px;
  }

  .reason-box h3{
    font-size: 1.1rem;
  }
}


/* =================================================
   service cards
================================================= */
.service-grid{
  width: min(94%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card figure img{
  width: 100%;
  display: block;
}

.service-text{
  padding: 18px 16px 8px;
  flex: 1;
}

.service-text h4{
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #8b0000;
  line-height: 1.5;
}

.service-text p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.service-btn{
  padding: 0 16px 18px;
  margin: 0;
}

.service-btn a{
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--main);
  color: #fff;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 10px;
}

.service-btn a:hover{
  background: var(--main-dark);
}

@media (max-width: 991px){
  .service-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .service-grid{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* =================================================
   flow
================================================= */
.flow-section{
  width: min(94%, 1000px);
  margin: 0 auto;
}

.flow-lead{
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
  margin: 0 auto 28px;
}

.flow-list{
  max-width: 980px;
  margin: 0 auto;
}

.flow-item{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fffdf7;
  border: 2px solid var(--soft-border);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.flow-number{
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #b8860b;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 78px;
  text-align: center;
}

.flow-content{
  flex: 1;
}

.flow-content h3{
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #333;
  line-height: 1.5;
}

.flow-content p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
}

.flow-arrow{
  text-align: center;
  font-size: 28px;
  color: #b8860b;
  margin: 10px 0;
}

@media (max-width: 767px){
  .flow-item{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px;
  }

  .flow-number{
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 20px;
  }

  .flow-content h3{
    font-size: 1.15rem;
  }

  .flow-content p{
    font-size: .95rem;
  }

  .flow-lead{
    font-size: .95rem;
  }
}

/* =================================================
   FAQ
================================================= */
.faq-section{
  width: min(94%, 1000px);
  margin: 0 auto;
}

.faq-lead{
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #444;
}

.faq-box{
  max-width: 900px;
  margin: 0 auto;
}

.faq-item{
  border: 2px solid var(--soft-border);
  border-radius: 12px;
  margin-bottom: 14px;
  background: var(--soft-bg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.faq-item summary{
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.65;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::after{
  content: "＋";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--main);
}

.faq-item[open] summary::after{
  content: "－";
}

.faq-item p{
  padding: 0 18px 18px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.9;
  color: #8b0000;
  margin: 0;
}

@media (max-width: 767px){
  .faq-item summary{
    font-size: 1rem;
    padding: 14px 42px 14px 14px;
  }

  .faq-item p{
    font-size: .95rem;
    padding: 0 14px 16px;
  }
}


/* =================================================
   review_style 口コミ要約
================================================= */

.review_style{
  background:#fff;
  padding:3rem 0;
}

.review_style h2{
  text-align:center;
  letter-spacing:0.2rem;
  margin-bottom:1.5rem;
}

.review_style ul{
  max-width:1000px;
  list-style:none;
  margin:2rem auto 0;
  padding:0 1rem;
}

.review_style li{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:1rem;
  align-items:start;
  border-top:1px solid #ddd;
  padding:1.2rem 0;
}

.review_style li:last-child{
  border-bottom:1px solid #ddd;
}

.review_style .user{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid #eee;
  display:block;
  margin:0 auto;
}

.review-area{
  display:flex;
  flex-direction:column;
  gap:0.4rem;
  min-width:0;
}

.review-area p{
  margin:0;
}

.review-area .name{
  font-size:1.05rem;
  font-weight:700;
  line-height:1.5;
  color:#222;
}

.review-area .star5:before{
  content:"★★★★★";
  font-size:1.1rem;
  background:#cda85a;
  color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
}

.review-area .star4-5:before{
  content:"★★★★★";
  font-size:1.1rem;
  background:linear-gradient(to right, #cda85a 90%, #d9d9d9 91%);
  color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
}

.review-area .star4:before{
  content:"★★★★★";
  font-size:1.1rem;
  background:linear-gradient(to right, #cda85a 80%, #d9d9d9 81%);
  color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
}

.review-area .star3-5:before{
  content:"★★★★★";
  font-size:1.1rem;
  background:linear-gradient(to right, #cda85a 70%, #d9d9d9 71%);
  color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
}

.review-area .star3:before{
  content:"★★★★★";
  font-size:1.1rem;
  background:linear-gradient(to right, #cda85a 60%, #d9d9d9 61%);
  color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
}

.review-area .comment{
  font-size:0.96rem;
  line-height:1.85;
  color:#444;
  text-align:justify;
  word-break:break-word;
}

.service-tag{
  display:inline-block;
  min-width:200px;
  max-width:100%;
  margin-top:0.4rem;
  padding:8px 14px;
  color:#fff;
  font-size:0.9rem;
  border-radius:999px;
  text-decoration:none;
  line-height:1.4;
  text-align:center;
  transition:0.2s;
  border:1px solid transparent;
  box-sizing:border-box;
}

/* 不用品回収 */
.tag-fuyohin{
  background:#0f4c81;
  color:#fff;
  font-weight:700;
}
.tag-fuyohin:hover{
  background:#fff;
  color:#0f4c81;
  border:1px solid #0f4c81;
}

/* 空き家 */
.tag-akiya{
  background:#2e7d32;
  font-weight:700;
}
.tag-akiya:hover{
  background:#fff;
  color:#2e7d32;
  border:1px solid #2e7d32;
}

/* 特殊清掃 */
.tag-tokusyu{
  background:#8e0000;
  color:#fff;
  font-weight:700;
}
.tag-tokusyu:hover{
  background:#fff;
  color:#8e0000;
  border:1px solid #8e0000;
}

/* 遺品整理 */
.tag-ihin{
  background:#6a1b9a;
  color:#fff;
  font-weight:700;
}
.tag-ihin:hover{
  background:#fff;
  color:#6a1b9a;
  border:1px solid #6a1b9a;
}

/* -----------------------------
   タブレット以上
----------------------------- */
@media (min-width: 768px){
  .review_style ul{
    padding:0 1.5rem;
  }

  .review_style li{
    grid-template-columns:90px 1fr;
    gap:1.4rem;
    padding:1.4rem 0;
  }

  .review_style .user{
    width:68px;
    height:68px;
  }

  .review-area .name{
    font-size:1.1rem;
  }

  .review-area .comment{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
}

/* -----------------------------
   スマホ
----------------------------- */
@media (max-width: 767px){
  .review_style{
    padding:2.2rem 0;
  }

  .review_style h2{
    letter-spacing:0.08rem;
    font-size:1.4rem;
  }

  .review_style ul{
    padding:0 0.9rem;
    margin-top:1.2rem;
  }

  .review_style li{
    grid-template-columns:56px 1fr;
    gap:0.8rem;
    padding:1rem 0;
  }

  .review_style .user{
    width:52px;
    height:52px;
  }

  .review-area .name{
    font-size:0.98rem;
    line-height:1.5;
  }

  .review-area .comment{
    font-size:0.92rem;
    line-height:1.75;
    text-align:left;
  }

  .service-tag{
    display:block;
    width:100%;
    min-width:0;
    padding:9px 12px;
    font-size:0.88rem;
    margin-top:0.5rem;
  }
}






.review-section{
  width: min(94%, 1000px);
  margin: 0 auto;
}

.modern-accordion{
  max-width: 960px;
  margin: 0 auto;
}

.accordion-item{
  background: #fff;
  border: 1px solid #dbe5ef;
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}

.accordion-header{
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.header-content{
  flex: 1;
}

.header-content img{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
}

.faq_name{
  font-weight: 800;
  margin-right: 8px;
}

.faq_stars{
  color: #f5a623;
  font-weight: 800;
  margin-right: 8px;
}

.review-text{
  margin: 10px 0 0;
  color: #444;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded{
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.icon-wrap{
  position: relative;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-top: 6px;
}

.icon-wrap .plus{
  position: absolute;
  background: var(--main);
  border-radius: 999px;
  transition: .3s ease;
}

.icon-wrap .plus:first-child{
  width: 24px;
  height: 3px;
  top: 10px;
  left: 0;
}

.icon-wrap .plus:last-child{
  width: 3px;
  height: 24px;
  left: 10px;
  top: 0;
}

.accordion-header.active .icon-wrap .plus:last-child{
  transform: scaleY(0);
}

.accordion-body{
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}

.body-content{
  padding: 0 18px 18px;
}

.label{
  display: inline-block;
  font-weight: 800;
  color: #8b0000;
  margin-bottom: 8px;
}

.btn_14{
  display: block;
  width: min(94%, 420px);
  margin: 26px auto 0;
  text-align: center;
  background: var(--main);
  color: #fff;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.btn_14:hover{
  background: var(--main-dark);
}

@media (max-width: 767px){
  .accordion-header{
    padding: 14px;
  }

  .body-content{
    padding: 0 14px 14px;
  }
}

/* =================================================
   review accordion
================================================= */
/* =========================================
   口コミ要約カード
========================================= */
.review-summary{
  width: min(94%, 1000px);
  margin: 0 auto 60px;
}

.review-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.review-card{
  background: #fff;
  border: 1px solid #d9e3ee;
  border-top: 5px solid #0f4c81;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.review-tag{
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  background: #eef5fb;
  color: #0f4c81;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 999px;
}

.review-text{
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.9;
  color: #333;
}

.review-card strong{
  color: #08375d;
  font-weight: 700;
}

/* =========================================
   タブレット
========================================= */
@media (max-width: 900px){
  .review-cards{
    gap: 16px;
  }

  .review-card{
    padding: 18px 16px;
  }
}

/* =========================================
   スマホ
========================================= */
@media (max-width: 768px){
  .review-summary{
    width: min(94%, 640px);
    margin: 0 auto 50px;
  }

  .review-cards{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .review-card{
    border-radius: 12px;
    padding: 16px 14px;
  }

  .review-tag{
    font-size: 0.78rem;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .review-text{
    font-size: 0.93rem;
    line-height: 1.8;
  }
}







/* =================================================
   swiper
================================================= */
.works-section{
  width: min(94%, 1100px);
  margin: 0 auto;
}

.mySwiper{
  width: 100%;
  padding: 10px 40px;
}

.swiper-slide{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.swiper-slide img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev{
  color: var(--main);
}

@media (max-width: 767px){
  .mySwiper{
    padding: 10px 26px;
  }

  .swiper-slide img{
    height: 220px;
  }
}

/* =================================================
   PR grid
================================================= */
.pr-grid{
  width: min(94%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pr-item{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pr-item img{
  display: block;
  width: 100%;
}

@media (max-width: 767px){
  .pr-grid{
    width: 100%;
    grid-template-columns: 1fr;
  }
}


/* =================================================
   case examples
================================================= */
.case-box{
  width: min(94%, 980px);
  margin: 0 auto 28px;
  padding: 22px;
  background: #fff;
  border: 1px solid #d9e3f0;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.case-layout{
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.case-left{
  width: 52%;
}

.case-right{
  width: 48%;
}

.case-image img{
  width: 100%;
  display: block;
  border-radius: 10px;
}

.case-text{
  margin-bottom: 16px;
}

.case-text h3{
  margin: 0 0 .8rem;
  font-size: 1.4rem;
  color: #0b3c72;
  line-height: 1.5;
}

.case-text p{
  margin: 0 0 1em;
  font-size: 1rem;
  line-height: 1.85;
}

.case-table{
  width: 100%;
  border-collapse: collapse;
  background: #f8fbff;
  border: 2px solid #2589d0;
  border-radius: 8px;
  overflow: hidden;
}

.case-table th,
.case-table td{
  padding: .5rem 1rem;
  border-bottom: 1px solid #cfe2f3;
  font-size: 1rem;
}

.case-table th{
  width: 40%;
  background: #e8f4fd;
  color: #004d99;
  text-align: left;
  font-weight: 800;
}

.case-table td{
  background: #fff;
  color: #333;
}

.case-table tr:last-child th,
.case-table tr:last-child td{
  border-bottom: none;
}

@media (max-width: 767px){
  .case-box{
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
  }

  .case-layout{
    flex-direction: column;
    gap: 14px;
  }

  .case-left,
  .case-right{
    width: 100%;
  }

  .case-text h3{
    font-size: 1.18rem;
  }

  .case-text p,
  .case-table th,
  .case-table td{
    font-size: .95rem;
  }

  .case-table th,
  .case-table td{
    padding: .75rem;
  }
}

/* =================================================
   generic 3-column cards
================================================= */
.grid3b{
  width: min(94%, 1100px);
  margin: 0 auto 28px;
}

.list_3b{
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 1rem;
  margin-bottom: 1.2rem;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}

.list_3b figure{
  margin: -1rem -1rem .8rem;
}

.list_3b figure img{
  display: block;
  width: 100%;
}

.list_3b h4{
  font-size: 1.2rem;
  color: #8b0000;
  margin: 0;
  line-height: 1.5;
}

@media (min-width:768px){
  .grid3b{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .list_3b{
    margin-bottom: 0;
  }
}

/* =================================================
   grid multi
================================================= */
.grid_multi{
  width: min(94%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.clmn-list{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-weight: 800;
  text-align: center;
  padding-bottom: 14px;
}

.clmn-list img{
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

@media (max-width: 991px){
  .grid_multi{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .grid_multi{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =================================================
   flex box content
================================================= */
.flex_box{
  width: min(94%, 1000px);
  margin: 0 auto;
}

.flex_box .case_pict{
  background: #fff;
  color: #333;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}

.flex_box figure{
  width: 100%;
  margin: 0;
}

.flex_box figure img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex_box .case_text{
  text-align: left;
  line-height: 1.8;
  font-size: 1rem;
  padding: 18px;
}

.flex_box .case_text h3,
.flex_box .case_text h4{
  font-size: 1.2rem;
  line-height: 1.55;
  margin: 0 0 12px;
  color: #8b0000;
  font-weight: 800;
}

.flex_box .case_text p{
  margin: 0 0 1em;
}

.flex_box .case_text p:last-child{
  margin-bottom: 0;
}

/* PC 768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media (min-width: 768px){
  .flex_box .case_pict{
    display: flex;
    gap: 0;
    align-items: flex-start;
  }

  .flex_box figure{
    width: 42%;
    flex: 0 0 42%;
  }

  .flex_box .case_text{
    width: 58%;
    padding: 24px;
  }

  .flex_box .case_text h3,
  .flex_box .case_text h4{
    font-size: 1.35rem;
  }
}


/* flex_l 画像左 文字右 */
/* ======================================= */
.flex_l  {
    width: 100%;
    margin: 0 auto;
}

.flex_l .list {
  padding: 0;
  border: none;
}

.flex_l .list figure {
  margin-bottom: 1rem;
  width: 100%;
  margin: 0 auto 1rem; /* 中央寄せ */

}

.flex_l .list figure img {
  width: 100%;
  height: auto;
  display: block;
}

.flex_l .list h4 {
  margin: 0 0 0.5em;
  padding: 0 10px;
  font-size: 26px;
  line-height: 1.5;
  color: #8b0000; /* darkred */
  font-weight: 600;
}

.flex_l .list p {
  color: #333;
  margin: 0;
  padding: 0 10px;
  line-height: 1.5;
}

.flex_l .list p,
.flex_l .list h4 {
    padding-left: 1rem;
    padding-right: 1rem;
}


/* PC 768px以上 */
/* +++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px) {
  .flex_l {
    width: min(94%, 1000px);
    margin: 0 auto;
  }

  .flex_l .list {
    display: flex;
    align-items: flex-start;
  box-shadow: var(--shadow);
  border-radius: 12px;
  }

  .flex_l .list figure {
    width: 40%;
    margin-right: 2rem;
    margin-bottom: 0;
  }

  .flex_l .list figure img {
    width: 100%;
    height: auto;
    display: block;
  }

  .flex_l .list div {
    flex: 1;
  }

  .flex_l .list h4 {
    font-size: 22px;
    padding: 0;
  }
}

/* =================================================
   qualification cards
================================================= */
.flex-container{
  width: min(94%, 1100px);
  margin: 0 auto;
}

.wrapper{
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  box-sizing: border-box;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.img-wrapper img{
  width: 100%;
  vertical-align: bottom;
  border-radius: 8px;
}

.content-wrapper{
  padding: 12px 4px 4px;
}

.content-wrapper .heading{
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #8b0000;
  font-weight: 800;
  line-height: 1.5;
}

.content-wrapper .text{
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

@media (min-width: 768px){
  .flex-container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .wrapper{
    width: calc(33.333% - 14px);
    margin: 0;
  }
}


/* =================================================
   会社概要　company
================================================= */
.company-section{
  width: min(94%, 1100px);
  margin: 0 auto;
  padding: 20px 0 10px;
}

.company-lead{
  background: linear-gradient(135deg, #f4f8fc 0%, #e8f0f8 100%);
  border: 1px solid #d7e3ef;
  border-radius: 16px;
  padding: 22px 20px;
  margin: 0 auto 28px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.company-lead-badge{
  display: inline-block;
  margin: 0 0 10px;
  padding: 8px 16px;
  background: #0f4c81;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.company-lead-text{
  margin: 0;
  color: #333;
  line-height: 1.9;
  font-size: 1rem;
}

.company-box{
  background: #fff;
  border: 1px solid #d9e4ef;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.company-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.company-item{
  display: flex;
  flex-direction: column;
  background: #f9fbfd;
  border: 1px solid #dbe5ee;
  border-radius: 14px;
  overflow: hidden;
  min-height: 100%;
}

.company-item-wide{
  grid-column: 1 / -1;
}

.company-label{
  background: linear-gradient(135deg, #0f4c81 0%, #08375d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 16px;
  letter-spacing: 0.03em;
}

.company-content{
  padding: 16px 18px;
  color: #333;
  line-height: 1.95;
  font-size: 0.98rem;
  word-break: break-word;
}

.company-content a{
  color: #0f4c81;
  font-weight: 700;
  text-decoration: none;
}

.company-content a:hover{
  text-decoration: underline;
}

.company-accent{
  color: #c8332d;
  font-weight: 700;
}

.company-map-wrap{
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #dbe5ee;
}

.company-map-title{
  margin: 0 0 16px;
  text-align: center;
  color: #0f4c81;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.company-map{
  position: relative;
  width: 100%;
  padding-top: 42%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border: 1px solid #dbe5ee;
  background: #f3f7fb;
}

.company-map iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =================================================
   responsive
================================================= */
@media (max-width: 900px){
  .company-grid{
    grid-template-columns: 1fr;
  }

  .company-item-wide{
    grid-column: auto;
  }

  .company-box{
    padding: 20px 16px;
  }

  .company-map{
    padding-top: 62%;
  }
}

@media (max-width: 600px){
  .company-section{
    width: min(94%, 100%);
  }

  .company-lead{
    padding: 18px 14px;
    margin-bottom: 22px;
  }

  .company-lead-badge{
    font-size: 0.88rem;
    padding: 7px 14px;
  }

  .company-lead-text{
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .company-grid{
    gap: 14px;
  }

  .company-label{
    font-size: 0.92rem;
    padding: 12px 14px;
  }

  .company-content{
    font-size: 0.94rem;
    line-height: 1.85;
    padding: 14px;
  }

  .company-map-title{
    font-size: 1.05rem;
  }

  .company-map{
    padding-top: 72%;
  }
}


/* =================================================
   table
================================================= */

/* 会社概要 */
/* ======================================= */
.f_table{
  table-layout: fixed;
  width: min(94%, 900px);
  margin: 0 auto;
  background: #fff;
  color: #333;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 12px;
}

.f_table th,
.f_table td{
  border: 1px solid #ccc;
  word-break: break-word;
  padding: 12px 10px;
  line-height: 1.7;
}

.f_table th{
  background: #f5f8fb;
  text-align: center;
  font-weight: 600;
  width: 30%;
}

.f_table td{
  text-align: left;
}

@media (max-width: 767px){
  .f_table{
    width: 100%;
    font-size: .95rem;
  }

  .f_table th,
  .f_table td{
    padding: 10px 8px;
  }
}


/* =================================================
   service area
================================================= */
.service-area-section{
  width: min(94%, 1100px);
  margin: 0 auto;
  padding: 20px 0 10px;
}

.service-area-lead{
  margin-bottom: 28px;
}

.service-area-catch{
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--main);
}

.service-area-map{
  width: min(100%, 920px);
  margin: 0 auto 30px;
}

.service-area-map img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.service-area-wrap{
  display: grid;
  gap: 22px;
}

.service-area-card{
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  border: 1px solid #cfdae8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.service-area-card-head{
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--main) 0%, var(--main-dark) 100%);
  color: #fff;
}

.service-area-card-head h3{
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.service-area-card-head p{
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}

.service-area-card-body{
  padding: 22px;
  background: #fff;
}

.service-area-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
}

.service-area-list li{
  position: relative;
  margin: 0;
  padding: 10px 12px 10px 28px;
  background: #f8fbff;
  border: 1px solid #dde6f0;
  border-radius: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--text);
  box-sizing: border-box;
}

.service-area-list li::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main);
  transform: translateY(-50%);
}

.service-area-list-tokyo{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-area-card-sub .service-area-card-head{
  background: linear-gradient(135deg, #234d78 0%, #163654 100%);
}

.service-area-note{
  margin-top: 18px;
  padding: 14px 16px;
  background: #f5f8fc;
  border-left: 4px solid var(--main);
  border-radius: 10px;
}

.service-area-note p{
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: #444;
}

/* ==============================
   tablet
============================== */
@media screen and (max-width: 900px){
  .service-area-list{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-area-list-tokyo{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-area-card-body{
    padding: 18px;
  }
}

/* ==============================
   smartphone
============================== */
@media screen and (max-width: 680px){
  .service-area-section{
    width: min(94%, 100%);
  }

  .service-area-map{
    margin-bottom: 22px;
  }

  .service-area-map img{
    border-radius: 12px;
  }

  .service-area-card{
    border-radius: 14px;
  }

  .service-area-card-head{
    padding: 16px;
  }

  .service-area-card-head h3{
    font-size: 1.05rem;
  }

  .service-area-card-head p{
    font-size: 0.86rem;
  }

  .service-area-card-body{
    padding: 16px;
  }

  .service-area-list{
    grid-template-columns: repeat(2, 1fr);
  }

  .service-area-list-tokyo{
    grid-template-columns: repeat(2, 1fr);
  }

  .service-area-list li{
    padding: 10px 12px 10px 26px;
    font-size: 0.94rem;
    text-align: left;
  }

  .service-area-note{
    margin-top: 16px;
    padding: 12px 14px;
  }

  .service-area-note p{
    font-size: 0.9rem;
    line-height: 1.75;
  }
}



/* =================================================
   underline / icon
================================================= */
.double-underline{
  border-bottom: 6px double #dc143c;
}

.icon-paw::before{
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f1b0";
  margin-right: 0.5em;
  display: inline-block;
  color: #e91e63;
}


/* =================================================
   formWrap メールフォーム
================================================= */
#formWrap{
  width: min(94%, 760px);
  margin: 0 auto;
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
}

#formWrap h3{
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}

#formWrap .form-lead{
  margin: 0 0 20px;
  text-align: center;
  color: #555;
}

table.formTable{
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: collapse;
  background: #fff;
}

table.formTable th,
table.formTable td{
  border: 1px solid #d8d8d8;
  padding: 14px;
  vertical-align: middle;
}

table.formTable th{
  width: 30%;
  font-weight: 700;
  background: #f5f5f5;
  text-align: left;
  color: #333;
}

table.formTable td{
  background: #fff;
}

table.formTable input[type="text"],
table.formTable input[type="tel"],
table.formTable input[type="email"],
table.formTable select,
table.formTable textarea{
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  background: #fff;
}

table.formTable textarea{
  resize: vertical;
  min-height: 140px;
}

table.formTable input:focus,
table.formTable select:focus,
table.formTable textarea:focus{
  outline: none;
  border-color: #0f4c81;
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.req{
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #c8332d;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.radio-group label{
  display: inline-flex;
  align-items: center;
  margin-right: 18px;
  gap: 6px;
}

.form-btns{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.form-submit,
.form-reset{
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
}

.form-submit{
  background: #c8332d;
  color: #fff;
}

.form-submit:hover{
  opacity: 0.9;
}

.form-reset{
  background: #666;
  color: #fff;
}

.form-reset:hover{
  opacity: 0.9;
}

.form-note{
  margin-top: 14px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.hp-field{
  display: none;
}

p.error_messe{
  margin: 5px 0 12px;
  color: red;
  font-weight: 700;
}

/* 応募フォーム用 微調整 */
#entry .form-lead{
  font-weight: 600;
  color: #0f4c81;
}

/* 応募ボタン少し強く */
#entry .form-submit{
  background: #c8332d;
  font-size: 1.05rem;
}

/* 応募フォームは少し余白広め */
#entry table.formTable th,
#entry table.formTable td{
  padding: 16px;
}

/* スマホ用 */
@media screen and (max-width: 768px){
  table.formTable,
  table.formTable tbody,
  table.formTable tr,
  table.formTable th,
  table.formTable td{
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  table.formTable tr{
    margin-bottom: 14px;
  }

  table.formTable th{
    border-bottom: 0;
    margin-top: 0;
    padding: 12px 14px 8px;
  }

  table.formTable td{
    border-top: 0;
    padding: 8px 14px 14px;
  }

  .form-btns{
    flex-direction: column;
    gap: 10px;
  }

  .form-submit,
  .form-reset{
    width: 100%;
    min-height: 48px;
  }
}


/* =================================================
   不用品回収　別途費用
================================================= */
/* =========================================
   別途費用セクション
========================================= */
.extra-fee-section{
  width: min(94%, 900px);
  margin: 0 auto;
}

/* 見出し */
.extra-fee-title{
  margin: 28px 0 10px;
  font-size: 1.1rem;
  color: var(--main);
  border-left: 6px solid var(--main);
  padding-left: 10px;
}

/* テーブル */
.table-extra-fee{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid #d8e1ea;
}

/* ヘッダー */
.table-extra-fee th{
  background: var(--main);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
}

/* セル */
.table-extra-fee td{
  padding: 16px;
  border-bottom: 1px solid #e3e7ec;
  font-size: 1rem;
}

/* 交互背景 */
.table-extra-fee tr:nth-child(even) td{
  background: #f9fbfd;
}

/* 左側 */
.table-extra-fee td:first-child{
  color: #333;
}

/* 右側（料金） */
.table-extra-fee td:last-child{
  text-align: right;
  font-weight: 700;
  color: #c8332d;
  white-space: nowrap;
  padding-right: 18px;
}

/* 注意書き */
.extra-fee-note{
  margin-top: 10px;
  font-size: 0.92rem;
  color: #666;
}

/* =========================================
   スマホ
========================================= */
@media (max-width: 768px){

  .table-extra-fee th,
  .table-extra-fee td{
    padding: 12px 10px;
    font-size: 0.95rem;
  }

  .table-extra-fee td:last-child{
    text-align: center;
    padding-right: 0;
  }
}



/* =========================================
   出張料金表
========================================= */
.delivery-fee-section{
  width: min(94%, 980px);
  margin: 0 auto;
}

.table-delivery-fee{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  border: 1px solid #d8e1ea;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.table-delivery-fee caption{
  caption-side: top;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}

/* 列幅 */
.table-delivery-fee .col-distance{
  width: 18%;
}

.table-delivery-fee .col-fee{
  width: 18%;
}

.table-delivery-fee .col-area{
  width: 64%;
}

/* ヘッダー */
.table-delivery-fee th{
  background: var(--main);
  color: #fff;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid var(--main);
  line-height: 1.5;
}

/* セル共通 */
.table-delivery-fee td{
  padding: 16px 16px;
  border-bottom: 1px solid #e3e7ec;
  vertical-align: top;
  line-height: 1.9;
  font-size: 1rem;
  color: #333;
  background: #fff;
}

/* 交互の背景 */
.table-delivery-fee tbody tr:nth-child(even) td{
  background: #f9fbfd;
}

/* 片道距離 */
.table-delivery-fee td:nth-child(1){
  text-align: center;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

/* 料金 */
.table-delivery-fee td:nth-child(2){
  text-align: center;
  font-weight: 700;
  color: #c8332d;
  white-space: nowrap;
}

/* 対応エリア */
.table-delivery-fee td:nth-child(3){
  text-align: left;
}

/* 注意書き */
.delivery-fee-note{
  margin-top: 12px;
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

/* =========================================
   タブレット
========================================= */
@media (max-width: 900px){
  .table-delivery-fee caption{
    font-size: 1.05rem;
  }

  .table-delivery-fee th,
  .table-delivery-fee td{
    padding: 14px 12px;
    font-size: 0.95rem;
  }

  .table-delivery-fee .col-distance{
    width: 20%;
  }

  .table-delivery-fee .col-fee{
    width: 22%;
  }

  .table-delivery-fee .col-area{
    width: 58%;
  }
}

/* =========================================
   スマホ
========================================= */
@media (max-width: 768px){
  .delivery-fee-section{
    width: min(94%, 100%);
  }

  .table-delivery-fee{
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .table-delivery-fee caption{
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .table-delivery-fee th,
  .table-delivery-fee td{
    padding: 12px 10px;
    font-size: 0.92rem;
  }

  .table-delivery-fee .col-distance{
    width: 110px;
  }

  .table-delivery-fee .col-fee{
    width: 130px;
  }

  .table-delivery-fee .col-area{
    width: auto;
  }

  .table-delivery-fee td:nth-child(1),
  .table-delivery-fee td:nth-child(2){
    white-space: nowrap;
  }
}

/* =================================================
   recruit page
================================================= */
.recruit-intro{
  max-width: 920px;
}

.recruit-catch{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.recruit-point-grid{
  width: min(94%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.recruit-point-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.recruit-point-card h3{
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--main);
  line-height: 1.5;
}

.recruit-point-card p{
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--subtext);
  text-align: left;
}

.point-icon{
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--main-light);
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.recruit-spec{
  width: min(94%, 980px);
  margin: 0 auto;
}

.recruit-dl{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recruit-dl > div{
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #e7edf4;
}

.recruit-dl > div:last-child{
  border-bottom: none;
}

.recruit-dl dt{
  margin: 0;
  padding: 18px 16px;
  background: #f4f8fc;
  color: var(--main);
  font-weight: 800;
  line-height: 1.7;
  border-right: 1px solid #e7edf4;
}

.recruit-dl dd{
  margin: 0;
  padding: 18px 18px;
  line-height: 1.9;
  background: #fff;
}

.recruit-fit-list{
  font-size: 1.05rem;
}

.recruit-flex-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recruit-soft-box{
  width: min(94%, 900px);
  margin: 0 auto;
  background: #f9fbfd;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
}

.recruit-soft-box p:last-child{
  margin-bottom: 0;
}

.recruit-merit-grid{
  width: min(94%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.recruit-merit-card{
  background: #fff;
  border-left: 6px solid var(--main);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: var(--shadow);
  font-weight: 800;
  line-height: 1.7;
}

.recruit-apply{
  width: min(94%, 940px);
  margin: 0 auto;
  text-align: center;
}

.recruit-apply-box{
  margin: 24px auto;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: left;
}

.recruit-apply-box h3{
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--main);
  text-align: center;
}

.recruit-check{
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-check li{
  position: relative;
  padding: .85em 0 .85em 2em;
  border-bottom: 1px dashed #d7c096;
  line-height: 1.7;
  font-weight: 700;
}

.recruit-check li:last-child{
  border-bottom: none;
}

.recruit-check li::before{
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: .95em;
}

.recruit-last-message{
  font-size: 1.08rem;
  font-weight: 800;
  color: #7f1d1d;
  line-height: 1.9;
}

@media (max-width: 991px){
  .recruit-point-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit-merit-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .recruit-catch{
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .recruit-point-grid{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruit-point-card{
    padding: 18px 14px;
  }

  .recruit-spec{
    width: 100%;
  }

  .recruit-dl > div{
    grid-template-columns: 1fr;
  }

  .recruit-dl dt{
    border-right: none;
    border-bottom: 1px solid #e7edf4;
    padding: 14px 12px;
  }

  .recruit-dl dd{
    padding: 14px 12px;
    font-size: 0.98rem;
  }

  .recruit-soft-box{
    width: 100%;
    padding: 18px 14px;
  }

  .recruit-merit-grid{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .recruit-merit-card{
    padding: 15px 13px;
  }

  .recruit-apply{
    width: 100%;
  }

  .recruit-apply-box{
    padding: 18px 14px;
  }

  .recruit-last-message{
    font-size: 1rem;
  }
}

/* =================================================
   関連ページリンク
================================================= */
.related-links{
  width: min(94%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-links .contact-cta-btn{
  width: 100%;
  min-height: 130px;
  justify-content: center;
  text-align: center;
}

/* スマホ */
@media (max-width: 767px){
  .related-links{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .related-links .contact-cta-btn{
    min-height: auto;
  }
}

/* =================================================
   recruit merit
================================================= */
.recruit-merit-section{
  width: min(94%, 1100px);
  margin: 0 auto;
}

.recruit-merit-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.recruit-merit-card{
  position: relative;
  background: #fffdf7;
  border: 1px solid #e9dcc5;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
  font-weight: 800;
  line-height: 1.7;
  transition: all .25s ease;
}

/* 左アクセントバー（変更ポイント） */
.recruit-merit-card::before{
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, #f08a24, #d96d06);
  border-radius: 0 6px 6px 0;
}

/* ホバーで少し浮かせる */
.recruit-merit-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.merit-icon{
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--main-light);
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 2px;
}

.recruit-merit-card p{
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
}

/* タブレット */
@media (max-width: 991px){
  .recruit-merit-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ */
@media (max-width: 767px){
  .recruit-merit-section{
    width: 100%;
  }

  .recruit-merit-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .recruit-merit-card{
    padding: 16px 14px;
    gap: 12px;
    border-radius: 14px;
  }

  .merit-icon{
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .recruit-merit-card p{
    font-size: 0.98rem;
    line-height: 1.75;
  }
}


/* =========================================
   thanks page 調整（最小限）
========================================= */
.thanks-wrap{
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.thanks-wrap p{
  line-height: 1.9;
  font-size: 1.05rem;
}

/* CTA強調 */
.cta-main-btn{
  display: block;
  width: fit-content;
  margin: 18px auto; /* ←これが重要 */
  text-align: center;
  font-size: 1.2rem;
  padding: 18px 28px;
  border-radius: 8px;
}

/* スマホ最適化 */
@media (max-width: 767px){
  .thanks-wrap{
    padding: 30px 16px 50px;
  }

  .cta-main-btn{
    font-size: 1.1rem;
    padding: 16px;
  }
}

/* =================================================
   空き家データリスト
================================================= */
.akiya-data-list{
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.akiya-data-list li{
  position: relative;
  padding: 12px 16px 12px 42px;
  margin-bottom: 10px;
  background: #f9fbfd;
  border: 1px solid var(--border);
  border-radius: 10px;
  line-height: 1.8;
  font-weight: 500;
}

.akiya-data-list li::before{
  content: "●";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =================================================
   footer
================================================= */
.footer-3{
  padding: 3rem 1.5rem 1.5rem;
  background-color: #202020;
}

.footer-3__container{
  display: grid;
  justify-items: center;
  grid-template-columns: 150px 2fr 1fr 1fr;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-3__logo{
  width: 110px;
  height: auto;
}

.footer-3__title{
  margin: 0 0 .8em;
  font-size: .95rem;
  font-weight: 800;
  color: #ff7a59;
}

.footer-3__list{
  padding: 0;
  list-style-type: none;
  color: #fff;
}

.footer-3__list li{
  margin-bottom: .45em;
  line-height: 1.7;
}

.footer-3__list a{
  color: inherit;
}

.footer-3__list a:hover{
  color: #9fd2ff;
}

.footer-3__copyright{
  text-align: center;
  color: #ccc;
  font-size: .82rem;
  margin-top: 2rem;
}

@media (max-width: 767px){
  .footer-3{
    padding: 2.4rem 1rem 1.2rem;
  }

  .footer-3__container{
    justify-items: start;
    grid-template-columns: 1fr;
    gap: 1.1em;
  }

  .footer-3__logo{
    margin: 0 auto;
  }

  .footer-3__copyright{
    text-align: center;
  }
}

/* =================================================
   pagetop
================================================= */
#pagetop{
  position: fixed;
  right: 14px;
  bottom: 14px;
  margin: 0;
  z-index: 60;
}

#pagetop a{
  display: flex;
  width: 58px;
  height: 58px;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgba(255,105,180,0.88);
  text-decoration: none;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

#pagetop a:hover{
  background: var(--accent);
}

@media (max-width:767px){
  #pagetop{
    right: 10px;
    bottom: 12px;
  }

  #pagetop a{
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}


/* =================================================
   NAP情報
================================================= */
.s-box2 {margin: 60px auto 0;}
  .s-box2 p {text-align: left;}
  .s-box2 h3 {margin: 0;word-break: auto-phrase;}
  /*ボタン 共通*/
  .c-btn {margin: 60px auto;text-align: center;}
  /*NAP表 共通*/
  .c-nap section {padding: 20px 0 52px;}
  .c-nap h3 {color: #0f4c81;line-height: 1.5;margin: 0 auto;width: var(--narrow);word-break: auto-phrase;}
  .c-nap a {color: #08375d;}
  .c-nap a:hover {opacity: 0.7;
}

@media (max-width: 767px) {
  .seo-box {padding: 0 10px;}
  .s-box2 h3 {font-size: 19px;}
  /*ボタン スマホのみ*/
  .c-btn-anchor {font-size: 17px;width: 95%;}
  /*NAP表 スマホのみ*/
  .c-nap section {padding: 20px 0 30px;}
  .c-nap h3 {font-size: 19px;}
}




/* =================================================
   utility
================================================= */
.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.clear{
  clear: both;
}

.red{
  color: #ff4500 !important;
  font-weight: 800;
}

.red_b{
  color: #ff4500 !important;
  font-size: 1.2em;
  font-weight: 800;
}

.blue{
  color: #0000cd !important;
  font-weight: 800;
}

.aqua{
  color: #00ffff !important;
  font-weight: 800;
}

.c{
  text-align: center !important;
}

.l{
  text-align: left !important;
}

.r{
  text-align: right !important;
}

.mb30{
  margin-bottom: 30px !important;
}