@charset "UTF-8";

/*-----------
　　全体・共通
-------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family:  sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #333;
  font-size: 16px;
}

body {
  padding-top: 78px; /* headerの高さぶんずらす */
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #333;
}

li {
    list-style: none;
}

.inner {
  max-width: 1250px;
  /* width: 1250px; */
  width: 95%;
  padding: 0 25px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
   .inner {
        max-width: initial;
        width: 90%;
        padding: 0 15px;
   }
}
.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}


/*-----------
  header
-------------*/

.header-test {
height: 78px;
position: fixed;
top: 0;
left: 0;
width: 100%; 
z-index: 300;
background: #fff; /* 背景をつけて下のコンテンツを隠す */
}

.header-test__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-inline: auto;
}

@media screen and (max-width: 1024px) {
   .header-test__inner {
      width: 94%;
      position: relative;
      z-index: 100;
   } 
}


.header-test-logo {
    width: 266px;
    height: auto;
    aspect-ratio: 266 / 32;
    margin-left: 8px;
    position: relative;
    z-index: 100;
}

.header-test-logo a,
.header-test-logo img {
    display: block;
}

.header-test-logo img {
    object-fit: cover;
    height: 100%;
}


.header-test-pc-nav-wrap {
    margin-left: 40px;
}

.header-test-pc-nav__items {
    display: flex;
    align-items: center;
}

.header-test-pc-nav__item:not(:first-child) {
    margin-left: 20px;
}

.header-test-pc-nav__item a {
    display: block;
    color: #333;
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.header-test-pc-nav__item.header-test-pc-nav__item--contact {
    background-color: #067fc9;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
    padding: 16px 20px 16px 52px;
    margin-left: 30px;
    border-radius: 3px;
    white-space: nowrap;
    width: 178px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-test-pc-nav__item.header-test-pc-nav__item--contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 18px; /* 文字との距離を調整 */
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #fff;
  background: url("../img/new-front/mail.png") no-repeat center center;
  background-size: contain;
}

.header-test-pc-nav__item.header-test-pc-nav__item--contact a {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    letter-spacing: 0.1em;
}

.header-test-pc-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

.header-test-pc-right__phone a {
    font-size: 24px;
    font-weight: 900;
    display: block;
    color: #333;
    text-align: right;
    white-space: nowrap;
    letter-spacing: 0.05em;
    padding-right: 8px;
}

.header-test-pc-right__text {
    text-align: center;
    font-size: 14px;
}

/*-----------
  サービス内のサブメニュー
-------------*/

.header-test-pc-nav__item {
  position: relative;
}

/* 一段目のサブメニュー */
.header-test-pc-nav__item .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 100;
  min-width: 220px;
  padding: 10px 0;
}

/* hoverで表示 */
.header-test-pc-nav__item:hover > .sub-menu {
  display: block;
}

/* メニュー項目 */
.header-test-pc-nav__item .sub-menu li {
  position: relative;
  list-style: none;
}

.header-test-pc-nav__item .sub-menu li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}

.header-test-pc-nav__item .sub-menu li a:hover {
  background-color: #f0f0f0;
}

/* 二段目のサブメニュー（費用目安など） */
.header-test-pc-nav__item .sub-menu .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 220px;
}

.header-test-pc-nav__item .sub-menu li:hover > .sub-menu {
  display: block;
}

/*-----------
  sp版サービス内のサブメニュー
-------------*/

@media screen and (max-width: 768px) {
  /* 子メニューは最初非表示 */
  .sp-nav .sub-menu {
    display: none;
    padding-left: 1rem;
  }

  /* 子メニュー開くとき */
  .sp-nav .menu-item.open > .sub-menu {
    display: block;
  }

  /* ＋ボタン位置と見た目 */
  .child_menu_button {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  /* ＋アイコン線 */
  .child_menu_button .icon::before,
  .child_menu_button .icon::after {
    content: "";
    position: absolute;
    background: #333;
    transition: 0.3s;
  }

  .child_menu_button .icon::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 2px;
    transform: translateY(-50%);
  }

  .child_menu_button .icon::after {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 2px;
    transform: translateX(-50%);
  }

  /* 開いた時はマイナス表示 */
  .menu-item.open .child_menu_button .icon::after {
    opacity: 0;
  }

  /* メニューアイテム位置補正 */
  .menu-item {
    position: relative;
    list-style: none;
  }
}



@media screen and (max-width: 1024px) {
    .pc-only.pc-only--header {
        display: none;
    }
}

/*-----------
  ハンバーガー
-------------*/

/* ハンバーガー */
.hamburger2510 {
  display: none;
  position: absolute;
  top: 22px;
  right: 14px;
  z-index: 100;
  width: 32px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .hamburger2510 {
    display: block;
   }
}

.hamburger2510 span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  background: #4da637;
  transition: 0.3s;
}
/* SPナビ初期状態は非表示 */
.header-test-sp-nav-wrap {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  z-index: 90;
}

.header-test-sp-nav-wrap__inner {
	margin-top: 80px;
    margin-bottom: 80px;
}
/* 初期は非表示（SP時のみ） */
.header-test-sp-nav-wrap.hamburger-sp-only { display: none; }
.header-test-sp-nav-wrap.hamburger-sp-only.is-open { display: block; }

/* ボタンの状態に応じて線を変える場合（任意） */
.hamburger2510.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger2510.is-open span:nth-child(2) { opacity: 0; }
.hamburger2510.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* すでに用意済みのレイアウトに合わせて調整してください */

/* 表示時 */
.header-test-sp-nav-wrap.hamburger-active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: fixed;
  inset: 0;
  top: 78px; /* ← ヘッダー高さ分だけ下からスタート */
  z-index: 100; /* ← ヘッダーより下 */
  background: #fff;
  overflow-y: auto;
  padding: 0 0 80px;
}

/* ハンバーガーのバツ変形 */
.hamburger2510.hamburger-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 6px);
}
.hamburger2510.hamburger-active span:nth-child(2) {
  opacity: 0;
}
.hamburger2510.hamburger-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.sp-nav ul li a {
    padding: 4px;
    text-align: center;
    display: block;
    color: #4da637;
    font-size: 18px;
    font-weight: bold;
}

.sp-nav ul li:not(:first-child) {
    margin-top: 16px;
}

.sp-nav ul li.sp-nav__item-contact {
    background-color: #067fc9;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
    padding: 16px 20px 16px 52px;
    border-radius: 3px;
    white-space: nowrap;
    width: 178px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    margin: 30px auto 0;
}

.sp-nav__item-contact::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: #fff;
    background: url(../img/new-front/mail.png) no-repeat center center;
    background-size: contain;
}

.sp-nav ul li.sp-nav__item-contact a {
    color: #fff;
}


/*-----------
  fv
-------------*/
.top-fv {
    width: 100%;
    aspect-ratio: 1400 / 510;
    position: relative;
    overflow: hidden; 
    height: 510px;
    background: url(../img/new-front/mvhousedots.png) no-repeat, #ffe270;
    background-position: center center;
}

.top-fv__inner {
    height: 100%;
    position: relative;
    background: url(/wp-content/themes/serum_tcd096/img/new-front/mvpeopleglasses.png) no-repeat right 80px bottom;
}

@media screen and (max-width: 1024px) {
    .top-fv__inner {
        background: url(/wp-content/themes/serum_tcd096/img/new-front/mvpeopleglasses.png) no-repeat right 2% bottom;
}
    }

.top-fv__inner img {
    margin: 50px 0 0;
}


/*-----------
  yellow　cta
-------------*/
.top-yellow-cta-block {
    margin-top: 32px;
}

.top-yellow-cta-block.mt-40 {
    margin-top: 40px;
}

.top-yellow-cta-block__card {
    width: 100%;
    background-color: #ffec1c;
    padding: 26px 40px 24px;
    position: relative;
    border-radius: 4px;
}

.top-yellow-cta-block__card::before {
    content: "";
    background: url("http://tasukeai-818186.jp/wp-content/themes/serum_tcd096/img/new-front/cat-img01.png") no-repeat center center;
    width: 251px;
    height: auto;
    aspect-ratio: 251 / 230;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -2px;
    right: 0;
}

.yellow-cta-block__heading {
    font-size: 36px;
    font-weight: 900;
    padding-left: 0;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.yellow-cta-block__heading span {
    color: #d61f1c;
    font-size: 42px;
}

.yellow-cta-block__btn-flex {
    display: flex;
    gap: 40px;
    margin-top: 24px;
}

@media screen and (max-width: 768px) {
    .yellow-cta-block__btn-flex {
        flex-direction: column;
    }
}

@media screen and (max-width: 425px) {

}


.btn-tel,
.btn-mail {
    border-radius: 70px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
    padding: 16px 32px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 527px;
    height: 104px;
}

.btn-tel {
     background-color: #d61f1c;
     padding: 20px 45px 12px 48px;
}

.btn-tel__link, 
.btn-tel__link {
    display: block;
    
}

.btn-tel__link {
    display: flex;
}

.btn-tel__text-left-box {
    display: flex;
    width: 136px;
    color: #fff;
    padding-right: 12px;
    border-right: 1px solid #fff;
    position: relative;
    padding-left: 18px;
}

.btn-tel__text-left-box p {
    line-height: 1.25;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.btn-tel__text-left-box.btn-tel__text-left-box--yellow p {
    color: #ffec1c;
}



.btn-tel__text-right-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc(100% - 124px);
}

.btn-tel__text-right-box-number,
.btn-mail__text-right-box-mail {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 38px;
    white-space: nowrap;
    font-weight: 700;
    position: relative;
    line-height: 1;
}

.btn-tel__text-right-box-number {
    padding-top: 10px;
    letter-spacing: 0.15em;
    padding-left: 18px;
     border-left: 1px solid #fff;
}

.btn-tel__text-right-box-number.btn-tel__text-right-box-number--yellow {
    color: #ffec1c;
}

.btn-tel__text-right-box-business-hours.btn-tel__text-right-box-business-hours--white {
    color: #fff;
}

.btn-mail__text-right-box-business-hours.btn-mail__text-right-box-business-hours--white {
    color: #fff;
}

.btn-tel__text-right-box-number::before {
    content: "フリーダイヤル";
    display: block;
    color: #ffec1c;
    position: absolute;
    font-size: 14px;
    top: -7px;
    left: 15px;
    font-weight: 400;
    letter-spacing: 0;
}

.btn-tel__text-right-box-number::after {
    content: "ハイハイ ハロー";
    display: block;
    color: #ffec1c;
    position: absolute;
    font-size: 14px;
    top: -7px;
    right: 52px;
    font-weight: 400;
    letter-spacing: 0;
}

.btn-tel__text-right-box-business-hours {
    color: #ffec1c;
    margin-left: 46px;
    font-size: 16px;
}

.btn-tel__text-right-box-numberbtn-tel__text-right-box-number.btn-tel__text-right-box-number--yellow::before, 
.btn-tel__text-right-box-numberbtn-tel__text-right-box-number.btn-tel__text-right-box-number--yellow::after {
    color: #fff;
}

/* メール */
.btn-mail {
    position: relative;
    background-color: #067fc9;
    width: 350px;
    display: flex;
}

.btn-mail__text-left-box {
    width: 90px;
    border-right: 1px solid #fff;
}

.btn-mail__text-left-box::before {
   content: "";
   position: absolute;
   top: 50%;
   left: 40px; 
   transform: translateY(-50%); 
   width: 40px;
   height: 40px; 
   background: url("http://tasukeai-818186.jp/wp-content/themes/serum_tcd096/img/new-front/mail.png") no-repeat center center;
   background-size: contain;
}

.btn-mail__text-right-box {
    margin-left: 52px;
    border-left: 1px solid #fff;
    padding-left: 8px;
}

.btn-mail__text-right-box-mail {
    font-size: 30px;
}

.btn-mail__text-right-box-mail.btn-mail__text-right-box-mail--yellow {
    color: #ffec1c;
}

.btn-mail__text-right-box-mail span {
    display: block;
    position: relative;
    padding-left: 10px;
}

.btn-mail__text-right-box-mail span::before {
    content: "|";
    display: block;
    position: absolute;
    top: 0;
    left: 5px;
}


.btn-mail__text-right-box-business-hours {
    color: #ffec1c;
    text-align: center;
}




/*-----------
  不用品を買取希望　top-service-block
-------------*/

.service-block__links-flex {
    display: flex;
    gap: 2%;
    justify-content: space-between;
}

.service-block_midahi{
	font-weight:bold;
	margin:30px 0 0;
	text-align:center;
	font-size: 26px;
    color: #4da637;
}
.service-block__link {
    border: 1px solid #067fc9;
    border-radius: 4px;
    color: #067fc9;
    position: relative;
    width: 49%;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 16px 0 42px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-block__link::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-right: 6px solid #067fc9;
    border-bottom: 6px solid #067fc9;
    transform: rotate(45deg) translateX(-50%);
    vertical-align: middle;
    position: absolute;
    bottom: 20px;
    left: 50%;
}

@media screen and (max-width: 768px) {
    .service-block__link::before {
        bottom: 10px;
    }
}

.service-block__link span {
    color: #d61f1c;
}

.service-block__link:hover span {
    color: #ffec1c;
}

.service-block__link:hover {
    background-color: #067fc9;
    color: #fff;
}

.service-block__link:hover::before {
  border-right-color: #fff;  /* ホバー時の色 */
  border-bottom-color: #fff;
}

.top-service-block {
    margin-top: 32px;
}

.service-block__items {
    margin-top: 30px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.service-block__item {
    background-color: #e9f2f7;
    aspect-ratio: 285 / 200;
    width: 100%;
    height: auto; 
    padding: 16px;
    position: relative;
}

/* 背景画像 */
.service-block__item:nth-child(1)::before {
  content: "";
  position: absolute;
  background: url("../img/new-front/service01@2x.png") no-repeat center/contain;
  width: 48%;
  height: auto;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 140 / 138;
}

@media screen and (max-width: 768px) {
    .service-block__item:nth-child(1)::before {
        width: 34%;
    }
}


.service-block__item:nth-child(2)::before {
  content: "";
  position: absolute;
  background: url("../img/new-front/service02@2x.png") no-repeat center/contain;
  width: 31%;
  height: auto;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 85 / 134;
}

@media screen and (max-width: 768px) {
    .service-block__item:nth-child(2)::before {
        width: 24%;
    }
}

.service-block__item:nth-child(3)::before {
  content: "";
  position: absolute;
  background: url("../img/new-front/service03@2x.png") no-repeat center/contain;
  width: 54%;
  height: auto;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 155 / 135;
}

@media screen and (max-width: 768px) {
    .service-block__item:nth-child(3)::before {
        width: 37%;
    }
}

.service-block__item:nth-child(4)::before {
  content: "";
  position: absolute;
  background: url("../img/new-front/service04@2x.png") no-repeat center/contain;
  width: 54%;
  height: auto;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 163 / 134;
}

@media screen and (max-width: 768px) {
    .service-block__item:nth-child(4)::before {
        width: 38%;
    }
}

.service-block__item-title {
    background-color: #4da637;
    border-radius: 5px;
    padding: 6px;
    width: 90%;
    color: #fff;
    text-align: center;
    font-weight: 700;
    position: absolute;
    /* bottom: 26px; */
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

@media screen and (max-width: 768px) {
   .service-block__item-title {
    bottom: 14px;
   } 
}

/*-----------
    img block 
-------------*/
.sokuzitsu-img-block {
    margin-top: 60px;
    aspect-ratio: 1200 / 481;
    position: relative;
    overflow: hidden; 

}

.sokuzitsu-img-block__inner {
     width: 100%;
    height: 100%;
	background:url(../img/new-front/mvhousedots.png) no-repeat,#ffe270;
	background-position:bottom center;
	background-size: contain;
}

sokuzitsu-img-block__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -92px;
    transform: translateY(-50%);
    width: 120%;
    aspect-ratio: 1200 / 481;
    background: url(../img/new-front/mvhousedots.png) no-repeat center center;
    background-size: contain;
}

.sokuzitsu-img-block__img-wrap {
    /* width: 774px; */
    width: 62%;
    aspect-ratio: 774 / 397;
    position: absolute;
    z-index: 3;
    top: 40px;
    left: 40px;
}

.sokuzitsu-img-block__img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sokuzitsu-img-block__inner::after {
   content: "";
   position: absolute;
   bottom: -10px;
   right: 40px;
   /* width: 312px; */
   width: 25%;
   aspect-ratio: 312 / 471;
   background: url("../img/new-front/peoplewbox@2x.png") no-repeat center center;
   background-size: contain;
   z-index: 1;
}

.sokuzitsu-img-block__inner.sokuzitsu-img-block__inner--cloth::after {
    background: url("../img/new-front/peoplewcloth@2x.png") no-repeat center center;
    aspect-ratio: 302 / 427;
    /* width: 302px; */
    width: 26%;
    background-size: contain;
}

/*-----------
  top-worries-block こんな事でお悩みありませんか
-------------*/
.top-worries-block {
    margin-top: 35px;
}

.worries-block__heading {
    font-size: 36px;
    color: #4da637;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.1em;
}

.worries-block__heading span {
    position: relative;
  color: #ffec1c;
  font-size: 48px;
  text-shadow:
    -4px 0   #4da637,
     4px 0   #4da637,
     0  -4px #4da637,
     0   4px #4da637,
    -4px -4px #4da637,
     4px -4px #4da637,
    -4px  4px #4da637,
     4px  4px #4da637;
}

.worries-block__items {
    margin-top: 24px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.worries-block__item {
    background-color: #e9f2f7;
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}


.worries-block__item-text {
    color: #4da637;
    text-align: center;
    font-weight: 900;
    font-size: 22px;
}

.worries-block__item-text span {
    display: block;
    font-weight: 900;
    text-align: center;
    text-align: center;
    color: #333;
    font-size: 18px;
}

/*-----------
solve-block
-------------*/
.solve-block {
    margin-top: 50px;
}

.solve-block__box {
    background-color: #4da637;
    border-radius: 4px;
    padding: 32px 40px 50px;
}

.solve-block__heading {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
}

.solve-block__heading span {
    font-size: 48px;
    color: #ffec1c;
}

.solve-block__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
    margin-top: 30px;
}

.solve-block__item {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
}

.solve-block__item-img {
    width: 100%;
    height: auto;
}

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

.solve-block__item-content {
    padding: 18px;
}

.solve-block__item-title {
    color: #4da637;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    padding-bottom: 14px;
}
.solve-block__item-text {
    padding-top: 14px;
    border-top: 2px solid #4da637;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.7;
}

/*-----------
対応可能な作業一覧
-------------*/

.top-available-service-section {
    margin-top: 60px;
}

.top-h2 {
   font-size: 36px;
    color: #4da637;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
}

.top-available-service__items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.top-available-service-item {
    border: 2px solid #4da637;
    border-radius: 6px;
    padding: 30px 16px;
    
}

.top-available-service-item__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-available-service-item__contents-wrap {
    display: flex;
    flex-direction: column;
}

.top-available-service-item__category-tag {
    color: #4da637;
    font-size: 14px;
    letter-spacing: 0.2em;
}

.top-available-service-item__title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.top-available-service-item__examples {
    margin-top: 16px;
}

.top-available-service-item__examples span {
    display: inline-flex;
    background-color: #4da637;
    border-radius: 4px;
    color: #fff;
    padding: 12px 12px;
    font-size: 16px;
    margin-top: 4px;
}

.top-available-service-item__examples span {
    margin-right: 8px;
}

.top-available-service-item__examples span.no-margin-left {
    margin-left: 0;
}

.top-available-service-item__img {
    aspect-ratio: 340 / 165;
    background-color: #dcdcdc;
    margin-top: 20px;
}

.top-available-service-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*-----------
top-flow-section
-------------*/

.top-flow-section {
    margin-top: 58px;
    position: relative;
}

.top-flow__items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.top-flow__item {
    background-color: #e9f2f7;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.top-flow-item__img-wrap {
    width: 100%;
    max-width: 230px;
    aspect-ratio: 230 / 132;
}

.top-flow-item__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-flow-item__tag {
    width: 150px;
    border-radius: 0 0 50px 50px;
    background-color: #4da637;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.top-flow-item__content-wrap {
    margin-top: 8px;
}

.top-flow-item__h3 {
    color: #4da637;
    font-size: 18px;
    text-align: center;
}

/*-----------
対応エリア
-------------*/
.top-area-section{
 margin-top: 60px;
}

.top-area-section__flex {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.top-area-section__content:not(:first-child) {
    margin-top: 20px;
}

.top-area-section__contents-wrap {
    display: flex;
    flex-direction: column;
    width: calc((100% - 30px) /2);
}

.top-area-section__content-title {
    background-color: #4da637;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    padding: 20px;
}

.top-area-section__content-text {
    padding-left: 20px;
    font-weight: 700;
    margin-top: 20px;
}

.top-area-section__content-text-small {
    padding-left: 20px;
    margin-top: 20px;
}

.top-area-section__content-dl-wrap {
    margin-top: 20px;
    padding-left: 20px;
}

.top-area-section__content-dl {
    display: flex;
}

.top-area-section__content-dl dt {
    width: 98px;
}

.top-area-section__content-dl-wrap dd a {
    color: #46b5fc;
    text-decoration: underline;
}

.top-area-section__map {
    width: calc((100% - 30px) /2);
    aspect-ratio: 585 / 395;
    background-color: #e9f2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-area-section__map-wrap {
    /* aspect-ratio: 544 / 302; */
    width: 92%;
}

.top-area-section__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*-----------
よくある質問
-------------*/
.top-faq-section {
  margin-top: 60px;
}

.top-faq__container {
  margin-top: 40px;
}

.top-faq__accordion details:not(:first-child) {
  margin-top: 8px;
}

.top-faq__accordion details summary {
  position: relative;
  background-color: #4da637;
  color: #fff;
  padding: 10px 56px 10px 20px; /* 右に余白 */
  font-size: 18px;
  cursor: pointer;
  list-style: none; /* デフォルトの三角マークを消す */
	border-radius:5px;
}

/* 左側の Q | はそのまま */
.top-faq__accordion details summary::before {
  display: inline-block;
  content: "Q |\00a0";
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-right: 6px;
}

/* 右端のアイコンのベース（横棒 = −） */
.top-faq__accordion details summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}

/* .top-faq__accordion details summary span {
    padding-left: 6px;
} */

/* 縦棒を別要素で追加（これで＋になる） */
.top-faq__accordion details summary span::before {
  content: "";
  position: absolute;
  right: 27px;  /* 横棒の中央に合わせる */
  top: 50%;
  width: 2px;
  height: 16px;
  background: #fff;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.top-faq__accordion details[open] summary span::before {
  transform: translateY(-50%) rotate(90deg);
}

/* 回答側の A | はそのまま */
.top-faq__accordion details p::before {
  display: inline-block;
  content: "A |\00a0";
  color: #333;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-right: 6px;
}

.top-faq__accordion details p {
  font-size: 18px;
  padding: 10px 10px 10px 30px;
}

/*-----------
お役立ち情報
-------------*/
.top-helpful-info-section {
    margin-top: 60px;
}

.top-helpful-info__items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.top-helpful-info__item {
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
}

.top-helpful-info-item__img {
    width: 100%;
    height: auto;
    aspect-ratio: 380 / 180;
    background-color: #dcdcdc;
}

.top-helpful-info-item__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-helpful-info-item__content-wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-helpful-info-item__h3 {
    font-size: 16px;
    font-weight: 700;
}

.top-helpful-info-item__date {
    font-size: 14px;
    margin-top: 20px;
}

/*-----------
footer
-------------*/
.footer-test {
    width: 100%;
    background-color: #f0f1f1;
    margin-top: 28px;
}

.footer-test__inner {
    padding-top: 38px;
    padding-bottom: 28px;
}

.footer-test__top {
    border-bottom: 1px solid #999;
    padding-bottom: 36px;
}

.footer-test__logo {
    aspect-ratio: 266 / 32;
    width: 266px;
    height: auto;
}

.footer-test__logo a,
.footer-test__logo img {
    display: block;
}

.footer-test__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-test__bottom {
    padding-top: 34px;
}

.footer-test__nav-items,
.footer-test__service-nav-items {
    display: flex;
    gap: 20px;
}

.footer-test__service-nav-items {
    margin-top: ;
}

.footer-test__nav-items a {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.footer-test__bottom-service-wrap {
    margin-top: 30px;
}

.footer-test__bottom-service-wrap p {
 font-size: 14px;
 font-weight: 700;
}

.footer-test__service-nav-item a {
    font-size: 14px;
    display: block;
    font-weight: 500;
}

.footer-test small {
   display: block;
   text-align: right;
   font-size: 12px;
   color: #999;
}



/* 251024 追記 */

.br-sp {
	display: none;
	}

 .worries-block__item::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-width: 145px;
	padding-top: 40%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* 不用品回収用 */
 .worries-block--recycle .worries-block__item:nth-child(1)::before {
  background-image: url("../img/new-front/worries01.png");
}
.worries-block--recycle .worries-block__item:nth-child(2)::before {
  background-image: url("../img/new-front/worries02.png");
}
.worries-block--recycle .worries-block__item:nth-child(3)::before {
  background-image: url("../img/new-front/worries03.png");
}
.worries-block--recycle .worries-block__item:nth-child(4)::before {
  background-image: url("../img/new-front/worries04.png");
}

/* 壁紙リフォーム用 */
.worries-block--wall .worries-block__item:nth-child(1)::before {
  background-image: url("../img/new-front/worries05.png");
}
.worries-block--wall .worries-block__item:nth-child(2)::before {
  background-image: url("../img/new-front/worries06.png");
}
.worries-block--wall .worries-block__item:nth-child(3)::before {
  background-image: url("../img/new-front/worries07.png");
}
.worries-block--wall .worries-block__item:nth-child(4)::before {
  background-image: url("../img/new-front/worries08.png");
}

.sp-only{display:none;}
.pc-only{display:inline-block;}

@media screen and (max-width: 768px) {
	.sp-only{display:inline-block;}
	.pc-only{display:none;}
  .inner {
    width: 100%;
    padding: 0 20px;
  }
  .worries-block__items {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .worries-block__item-text {
    font-size: 16px;
  }
  .worries-block__item::before {
    width: 50%;
    padding-top: 50%;
  }
	

    .solve-block__items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
		margin: 0;
    }

    .solve-block__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 16px;
        box-sizing: border-box;
    }

    .solve-block__item-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }


    .solve-block__item-img {
        margin: 0;
        padding: 0;
    }

    .solve-block__item-img img {
        display: block;
        max-width: 300px; 
        height: auto;
        margin: 0 auto;
        padding: 0;
    }

    .solve-block__item-title {
        font-size: 18px;
        text-align: center;
        font-weight: 900;
        color: #4da637;
        margin: 8px 0 4px 0;
    }

    .solve-block__item-text {
        font-size: 15px;
        color: #333;
        margin: 0;
        line-height: 1.6;
    }

    .solve-block__item-text span {
        font-size: 14px;
        display: block;
        text-align: center;
        color: #333;
    }

    .solve-block__heading {
        font-size: 20px;
        text-align: center;
		padding: 10px 0; 
    }

    .solve-block__heading span {
        font-size: 28px;
    }
	
	.solve-block__box {
        padding: 10px 20px 20px;
    }
	
	.solve-block__item-content {
        padding: 10px;
    }
	.br-sp {
	    display: block;
	}
	
	.top-available-service__items, .top-flow__items, .top-helpful-info__items, .service-block__items {
		grid-template-columns: 1fr;
    }
	
	.top-available-service-item__examples span {
	    font-size: 15px;
	}
	
	.top-area-section__flex {
        flex-direction: column;
        gap: 20px;
    }

    .top-area-section__contents-wrap,
    .top-area-section__map {
        width: 100%;
    }

    .top-area-section__content:not(:first-child) {
        margin-top: 20px;
    }

    .top-area-section__map {
        aspect-ratio: auto;
    }
	
	.yellow-cta-block__heading {
		font-size: 20px;
		font-weight: 900;
		padding-left: 0;
		position: relative;
		z-index: 1;
		text-align:center;
    }
	.yellow-cta-block__heading span {
		color: #d61f1c;
		font-size: 28px;
    }
	.top-yellow-cta-block__card::before {
		content:none;
	}

	
	.top-fv {
        height: auto;
        aspect-ratio: auto;
        background-size: 200%;
        background-position: center bottom -40px;
		padding: 30px 0;
    }

	.top-fv__inner{background:none;}
	.sokuzitsu-img-block__inner::after {
        content:none;
    }

    .top-fv__inner img {
        width: 100%;
        height: auto;
        margin: 0;
    }
	
    .service-block__links-flex {
        flex-direction: column;
        gap: 16px;
    }

    .service-block__link {
        width: 100%;
        white-space: normal;
        padding: 16px 0 42px;
		font-size: 20px;
    }

    .service-block__link::before {
        left: 50%;
		transform: rotate(45deg) translateX(-50%);
    }
	
	.sokuzitsu-img-block{height:auto;}
	
	.sokuzitsu-img-block__img-wrap {
		width: 100%;
	}
	
	.sokuzitsu-img-block__img-wrap img {
		width: 100%;
	}
	.sokuzitsu-img-block__img-wrap {
		top:0 ;
		left: 0;
	}
	.sokuzitsu-img-block__img-wrap {
		font-size: 25px;
	}
	.worries-block__heading {
		font-size: 33px;
	}
	
	.worries-block__heading span {
		font-size: 37px;
	}
	
	.top-h2 {
		font-size: 32px;
	}
	
	.yellow-cta-block__btn-flex {
        flex-direction: column;
        gap: 16px;
        align-items: center;
		margin:10px 0 0 ;
    }

    .btn-tel,
    .btn-mail {
        width: 100%;
        max-width: 400px;
    }
	.btn-mail__text-right-box-mail {
    font-size: 23px;
	}
	.btn-tel__text-right-box{width:100%;}
	.btn-tel__text-right-box-number{font-size:30px; border:none; padding-left:0;}
	.btn-tel__text-right-box-business-hours{font-size:15px; margin:0;}
	.top-yellow-cta-block__card{padding:15px;}
	.btn-tel__text-right-box-number::after{right: 22px;}
	.service-block__item{aspect-ratio: 285 / 150;}
	
	.sokuzitsu-img-block{ position:unset; aspect-ratio: auto;}
	.sokuzitsu-img-block__img-wrap{position:unset;}
	.sokuzitsu-img-block__inner{
	    height: auto;
        aspect-ratio: auto;
        background-size: 200%;
        background-position: center bottom -40px;
        padding: 30px 20px;
		}
	.top-flow-item__img-wrap{margin:0 auto;}
	.footer-test__inner{padding-top:20px;}
	.footer-test__nav-items, .footer-test__service-nav-items{flex-direction: column;}
	.header-test__inner{width:100%;}
}
/* 251024 追記 end */

/* 251028 追記 */

/* 固定表示により下のコンテンツが隠れないよう余白を確保 */
.footer-test {
	padding-bottom: 90px;
}

/* --- 横並びコンテナ --- */
.contact-btns {
  position: fixed;       /* 固定表示 */
  bottom: 0;             /* 画面下部に配置 */
  left: 0;
  width: 100%;           /* 横幅いっぱいに広げる */
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0;              /* 余白リセット */
  padding: 10px 0 0;        /* 上下の余白 */
  z-index: 9999;          /* 他要素より上に表示 */
}

/* --- 電話ボタン --- */
.tel-btn {
  width: 570px;
}

.tel-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #d61f1c;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.tel-btn__link:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tel-btn__left img {
  width: 40px;
  height: auto;
  display: block;
}

.tel-btn__center {
  font-size: 30px;
}

.tel-btn__right {
  text-align: center;
  line-height: 1.2;
  font-size: 17px;
}

.tel-btn__right .time {
  color: #ffec1c;
}

/* --- メールボタン --- */
.mail-btn {
  width: 400px;
}

.mail-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #067fc9;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 20px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.mail-btn__link:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mail-btn__left img {
  width: 40px;
  height: auto;
  display: block;
}

.mail-btn__right {
  text-align: center;
  line-height: 0.8;
  font-size: 28px;
}

.mail-btn__right .open-time {
  color: #ffec1c;
  font-size: 17px;
}


/* =========================================
   ▼ スマホ表示（SP）でのレイアウト調整
   ========================================= */
@media screen and (max-width: 767px) {
  .contact-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-around;
    padding: 8px 8px 0;
	gap: 12px;
  }

  .tel-btn,
  .mail-btn {
    width: 48%;
  }

  .tel-btn__link,
  .mail-btn__link {
    flex-direction: row;
    gap: 6px;
    padding: 10px;
  }

  /* 不要部分を非表示 */
  .tel-btn__center,
  .tel-btn__right,
  .mail-btn__right {
    display: none;
  }

  .tel-btn__left img,
  .mail-btn__left img {
    width: 28px;
  }

  .tel-btn__link::after {
	content: "お電話でご予約";
	font-size: 16px;
    font-weight: bold;
  }

  .mail-btn__link::after {
	content: "メールで相談";
	font-size: 16px;
    font-weight: bold;
  }
}

/* --------------------
   お悩みレスポンシブ
  -------------------- */
.top-worries-section {
    margin-top: 58px;
    position: relative;
}

@media screen and (max-width: 768px) {
  .top-worries-section .top-flow__items {
    grid-template-columns: 1fr 1fr;
	gap: 10px;
  }
	
  .top-worries-section .top-flow__item {
    padding: 5px;
  }

	.worries-block__item-text span {
	 font-size: 15px;	
  }
}

/* --------------------
   サービスページ
  -------------------- */
.top-available-service-item__btn {
  text-align: center;
  margin-top: 25px;
}

.service-item__btn {
  display: inline-block;
  background-color: #4da637;
  border-radius: 4px;
  color: #fff;
  padding: 12px 40px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* ホバー時 */
.service-item__btn:hover {
  background-color: #3f8b2e;
  transform: translateY(2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* --------------------
   下層ページ共通ＦＶ
  -------------------- */
.sub-fv {
    background-color: #ffe270
}

.sub-fv h1 {
    line-height: 1.5;
    border-top: 1px solid #ddd;
    font-size: 26px;
    width: 90%;
    color: #4da637;
    font-weight: bold;
    letter-spacing: 2.5px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}
    

 /* --------------------
   コンタクトページ
  -------------------- */
  .sub-contact__content {
    margin-top: 60px;
    margin-bottom: 80px;
    max-width: 800px;
    width: 100%;
    margin-inline: auto;
  }

  @media screen and (max-width: 768px) {
    .sub-contact__content {
        max-width: initial;
        width: 100%;
    }
}

  @media screen and (max-width: 425px) {
    .sub-contact__content {
    }
}
  .sub-contact__content label {
    display: flex;
    font-weight: bold;
  }


  .required {
    color: red;
    font-weight: bold;
  }

  .form-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
     .form-row {
        flex-direction: column;
        row-gap: 8px;
        align-items: self-start;
     }
}


.form-row .wpcf7-form-control-wrap {
    width: 100%;
    flex: 1;          /* 入力欄は残り全部 */
    display: block;   /* inline のままだと効かない */
}

.form-label {
   width: 180px;
  flex-shrink: 0;
}

@media screen and (max-width: 425px) {
    .form-label {
        width: 100%;
    }
}

.form-row input,
.form-row textarea {
  flex: 1; /* 入力欄は残り幅いっぱい */
  padding: 8px;
  border: 1px solid #333;
  width: 100%;      /* ラッパーいっぱいに広がる */
  box-sizing: border-box;
}

.pp_check {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


  /* 送信ボタン */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

  .wpcf7 input[type="submit"] {
  background-color: #067fc9; /* ボタン色 */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 70px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
}

.wpcf7 input[type="submit"]:hover {
  opacity: .8;
}

.screen-reader-response {
    display: none; /* 入力エラーの出力が多すぎるため */
}

 /* --------------------
   thanks page
  -------------------- */

  .thanks__head {
   font-weight: bold;
  }

  .thanks__head p:first-child {
    margin-top: 24px;
  }

  .thanks__to-top {
    margin-top: 40px;
    text-align: center;
  }

  .thanks__to-top a {
    display: inline-block;
    background-color: #067fc9;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 70px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
    margin-inline: auto;
  }


 /* --------------------
   パンくずリスト
  -------------------- */
.breadcrumb {
    margin: 0 auto;
    padding: 10px;
    background-color: #e9e9e9;  
}

#bread_crumb ul {
    display: flex;
    /* width: 1100px; */
    font-size: 14px;
    margin-inline: auto;
} 

#bread_crumb li + li::before {
  content: ">"; /* 好きな記号に変更可能 */
  margin: 0 0.5em; /* 前後の余白を調整 */
  color: #666; /* 色も自由に変更 */
}

 /* --------------------
   会社概要
  -------------------- */

.sub-company__inner.inner {
    max-width: 1000px;
    width: 100%;
}


.sub-company__entry-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 100px;
}

.sub-company__name {
    color: #163f82;
    font-weight: bold;
    font-size: 36px;
    width: 48%;
}

.sub-company__content {
    width: 50%;
}

.sub-company__content p {

}

@media screen and (max-width: 768px) {
    .sub-company__inner.inner {
        max-width: initial;
        width: 90%;
        padding: 0 15px;
    }

    .sub-company__entry-flex {
        flex-direction: column;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .sub-company__name {
        width: 100%;
        font-size: 32px;
    }

    .sub-company__content { 
        width: 100%;
        margin-top: 40px;
    }
}

.sub-company__info-section {
    margin-top: 58px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffe270;
}

.sub-company__info-section-inner.inner {
    max-width: 1000px;
    width: 100%;
}

.sub-company__info-title {
    color: #4da637;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

.sub-company__access-map {
    width: 100%;
    aspect-ratio: 924 / 450;
    margin-top: 40px;
}

.sub-company__access-map iframe {
    width: 100%;
    height: 100%;
}

.sub-company__basic-info {
    margin-top: 40px;
}

.sub-company__basic-info-flex {
    display: flex;
    justify-content: space-between;
}

.sub-company__basic-info-left {
   width: 57%; 
}
.sub-company__basic-info-place-wrap {
    margin-top: 8px;
}

.sub-company__basic-info-place-wrap dl {
    display: flex;
    margin-top: 4px;
}

.sub-company__basic-info-right {
    width: 40%;
}

.sub-company__basic-info-right table {
    border-color: #4da637;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
    color: #4da637;
    border: 2px solid #4da637;
    background-color: #fff;
}

.sub-company__basic-info-right table tr:not(:first-child) {
    border-top: 1px solid #4da637;
}

.sub-company__basic-info-right table td {
    padding: 5px;
}

.sub-company__basic-info-right table td:not(:first-child) {
    border-left: 1px solid #4da637;
}

.sub-company__basic-info-right table tr:nth-child(1) {
    font-weight: 600;
}


.sub-company__basic-info-right table td .content {
    min-height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
} 

@media screen and (max-width: 768px) {
    .sub-company__info-section-inner.inner {
        max-width: initial;
        width: 90%;
        padding: 0 15px;
    }

    .sub-company__basic-info-flex {
        flex-direction: column;
    }

    .sub-company__basic-info-left {
        width: 100%;
    }

    .sub-company__basic-info-right {
        width: 100%;
        margin-top: 40px;
    }

}

/* --------------------
   サービス詳細とprice
  -------------------- */
.top-service-block.sub-page-service-block {
    margin-top: 60px;
}

.h3-green {
  color: #4da637;
  font-size: 25px;
  margin-top: 60px;   /* 見出し上に余白 */
  margin-bottom: 20px; /* 見出し下に余白 */
}

.top-h2 {
  font-size: 30px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 10px;
}

.p-center {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.8;
}

.reform-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  border: 1px solid #ccc;
  min-width: 600px;
}

.reform-table th,
.reform-table td {
  padding: 10px 15px;
  border: 1px solid #ccc;
  white-space: nowrap;
}

.table-header {
  background-color: #4da637;
  color: #fff;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.left-col {
  background-color: #f5fff4;
}

.top-service-block.sub-page-service-block .solve-block__item-title {
    padding-bottom: 0;
}

.top-service-block.sub-page-service-block .solve-block__item-img {
    aspect-ratio: 319 / 212;
}


/* ===== レスポンシブ調整 ===== */
@media (max-width: 768px) {
  .reform-table {
    font-size: 14px;
  }
  .top-h2 {
    font-size: 24px;
    margin-top: 60px;
  }
  .h3-green {
    font-size: 20px;
    margin-top: 40px;
  }
}


 /* 251031 追記 */
 table.price-table {
    width: 100%;
    min-width: 600px; /* 横スクロールが発生する基準幅 */
    border-collapse: collapse;
    text-align: center;
    border: 1px solid #ccc;
  }

  .price-table td {
    border: 1px solid #ccc;
    padding: 15px;
  }

  .price-table .left {
    background-color: #4da637;
    color: #fff;
    font-weight: bold;
    padding: 20px;
    width: 25%;
    white-space: nowrap;
  }

  .price-table .center {
    width: 25%;
    white-space: nowrap;
  }

  .price-table .right {
    width: 50%;
  }

  /* スマホ対応微調整 */
  @media (max-width: 600px) {
    .price-table td {
      padding: 10px;
      font-size: 14px;
    }
  }

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}
 /* 251031 追記 end */