@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
/* 左からフェードイン */
.slideinLeft.active {
  animation: slideIn01 0.6s ease-out forwards;
  line-height: 1.5;
}
@keyframes slideIn01 {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* 下からフェードイン　*/
.slideinBottom.active {
  animation: slideinBottom 0.6s ease-out forwards;
}
@keyframes slideinBottom {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
main {
  container: hero-container / inline-size;
}
h1 {
  font-size: clamp(0.8rem, 1.6vw, 1.0rem);
  text-align: right;
  font-weight: normal;
  padding-right: 10px;
  width: 100%;
  margin-left: auto;
  background-color: #333;
  color: #fff;
}
/* ========= キービジュアル ここから ========= */
.sec-hero {
  position: relative;
  height: clamp(280px, 70vw, 480px);
  max-width: 2000px;
  margin: 0 auto 10px;
}
.hero-kv {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url("../img/sell/baikyaku/baikyaku-kv_sp.webp") center/cover no-repeat;
}
.kv-tit {
  position: absolute;
  left: 30px;
  bottom: 10%;
  z-index: 10;
  text-align: left;
  letter-spacing: 0.5rem;
  color: #fff;
}
.kv-tit h2 {
  font-size: clamp(3.2rem, 5.6vw, 5.6rem);
}
.kv-tit p {
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
}
/*　見出しアニメーション　*/
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on .3s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

@container hero-container (min-width: 700px) {
  .hero-scroll {
    display: block;
    position: absolute;
    left: 15px;
    bottom: 2%;
    letter-spacing: 2px;
    height: 120px;
    line-height: 120%;
    font-size: 1.2rem;
    z-index: 3;
    text-transform: uppercase;
  }
  .hero-scroll:before {
    content: "";
    position: absolute;
    left: .2rem;
    top: 0;
    height: 0;
    width: 1px;
    background-color: #333;
    -webkit-animation: scroll 2s cubic-bezier(1,0,0,1) 1s infinite;
    animation: scroll 2s cubic-bezier(1,0,0,1) 1s infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  @keyframes scroll {
    0% {
      bottom: auto;
      top: 0;
      height: 0;
    }
    50% {
      height: 120px;
    }
    100% {
      top: auto;
      bottom: 0;
      height: 0;
    }
  }
  .hero-scroll span {
    display: inline-block;
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: -70px;
    left: 1rem;
  }
  h1, .hero-kv {
    width: 95%;
  } 
  .kv-tit {
    width: 95%;
  }
}
@container hero-container (min-width: 1000px) {
  h1 {
    width: 88%;
  } 
  .hero-scroll {
    left: 5%;
  }
  .hero-kv{
    width: 88%;
    background: url("../img/sell/baikyaku/baikyaku-kv_pc.webp") center/cover no-repeat;
  }
  .kv-tit {
    width: 88%;
  }
  .kv-tit h2, .kv-tit p {
    padding-left: 6rem;
    line-height: 1.3;
  }  
}
/* ========= Concept ここから ========= */
.sec-concept {
  width: min(90%, 1320px);
  margin: clamp(60px, 12vw, 180px) auto;
  container: concept-container / inline-size;
}
.sec-concept h2 {
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vw, 60px);
  font-size: clamp(2.0rem, 2.4vw, 4.0rem);
  font-weight: normal;
  letter-spacing: 0.6rem;
  word-break: auto-phrase;
}
.concept-txt {
  max-width: 640px;
  margin: 0 auto clamp(10px, 4vw, 30px);
  font-size: clamp(1.6rem, 1.3vw, 2.2rem);
  text-align: left;
}
@container concept-container (min-width: 1000px) {
  .sec-concept h2 {
    max-width: 960px;
  }
  .concept-txt {
    max-width: 960px;
    line-height: 1.8;
  }
}
/* ========= 査定依頼の問い合わせ ここから ========= */
.sec-satei {
  container: satei-container / inline-size;
  width: min(90%, 1440px);
  margin: 0 auto clamp(80px, 18vw, 180px);
}
.satei-wrap {
  padding: 8px;
  border: solid 1px #333;
  margin-inline: auto;
}
.satei_inner {
  margin: 0 auto 30px;
  width: 90%;
}
.satei_inner h3 {
  margin: clamp(30px, 5.8vw, 40px) auto;
  display: flex;
  flex-direction: column;
  font-size: clamp(2.0rem, 4.6vw, 3.6rem);
  word-break: auto-phrase;
}
.satei_inner h3 .sub {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}
.satei_inner .link-Btn {
  max-width: 400px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 0.8vw, 20px);
}
.linkform-btn>a {
  font-size: clamp(1.6rem, 4vw, 2.0rem);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1.2vw, 10px);
  padding: 20px 2rem;
  background-color: #4C5E71;
  text-box: trim-both cap alphabetic;
  word-break: auto-phrase;
}
.btn02>a:last-child {
  background-color: #555E68;
}
@container satei-container (min-width: 340px) {
  .linkform-btn>a::before {
    content: ' ';
    display: inline-block;
    background: url("../img/common/icon-mail.svg") no-repeat center / contain;
    margin-right: 8px;
    width: 25px;
    height: 25px;
  }
  .btn02>a::before {
    background: url("../img/common/icon-line.svg") no-repeat center / contain;
  }
}
@container satei-container (min-width: 760px) {
  .satei-wrap {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
    align-items: center;
  }
  .satei_pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}
/* ============== FLOW　購入までの流れ ============== */
.sec-flow {
  margin: 0 auto clamp(80px, 18vw, 180px);
  container: flow-container / inline-size;
}
.flow-tit {
padding-bottom: clamp(30px, 4.5vw, 60px);
}
.flow-wrap {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333;
}
.flow-list {
  width: min(90%, 1820px);
  margin-inline: auto;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}
.flow-list li {
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 16px 6%;
}
.flow-list li:last-child {
  border-bottom: none;
}
.flow-list li .step_num {
  width: 13%;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.flow-list li .step_num .num {
  display: block;
  font-size: clamp(2.4rem, 5.8vw, 3.4rem);
  line-height: 1.1;
}
.flow-list li .step_icon {
  width: min(24%, 68px);
}
.flow-list li .step_name {
  width: 44%;
  font-weight: bold;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}
.small_txt {
  margin-top: 4px;
  width: min(90%, 1820px);
  margin-inline: auto;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  text-align: right;
}
.small_txt>a {
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: blue;
}
@container flow-container (min-width: 500px) {
  .flow-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(2, auto); 
  }
  .flow-list li {
    flex-direction: column;
  }
  .flow-list li:nth-child(4),
  .flow-list li:nth-child(5) {
    border-bottom: none;
  }
  .flow-list li:nth-child(2),
  .flow-list li:nth-child(5) {
    border-left: 1px solid #333;
    border-right: 1px solid #333;
  }
  .flow-list li .step_num,
  .flow-list li .step_name {
    width: 100%;
  }
  .flow-list li .step_icon {
    width: min(36%, 68px);
  }
}

@container flow-container (min-width: 1000px) {
  .flow-list {
    grid-template-columns: repeat(6, 1fr); 
    grid-template-rows: 1fr; 
  }
  .flow-list li:nth-child(-n+3) {
    border-bottom: none;
  }
  .flow-list li:nth-child(3) {
    border-right: 1px solid #333;
  }
  .flow-list li .step_icon {
    width: min(42%, 80px);
  }
}
/* ========= メリット ここから ========= */
.sec-merit {
  margin: 0 auto clamp(80px, 18vw, 180px);
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
.merit-txt {
  width: 90%;
  max-width: 640px;
  margin-inline: auto;
}
.merit-txt h2 {
  font-size: clamp(2.0rem, 2.4vw, 2.8rem);
  font-weight: normal;
  letter-spacing: 0.2rem;
  line-height: 2.0;
  word-break: auto-phrase;
  margin-bottom: clamp(40px, 4vw, 60px);
}
.merit-txt p {
  margin: 0 auto clamp(10px, 4vw, 30px);
  font-size: clamp(1.6rem, 1.3vw, 2.2rem);
  text-align: left;
}
@container hero-container (min-width: 760px) {
  .sec-merit {
    width: min(90%, 1440px);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .merit-txt {
    text-align: left;
    margin-inline: unset;
  }
  .merit-pic {
    max-width: 520px;
  }
}

/* ========= 媒介契約 ここから ========= */
.baikai-tit {
  position: relative;
  padding: clamp(20px, 4.5vw, 40px) 0 clamp(22px, 4.5vw, 42px);
}
.baikai-tit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: width 0.8s;
}
.baikai-tit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: width 0.8s;
}
/*　h2見出し共通　*/
.sec-tit_h2_en
{
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  letter-spacing: .5rem;
  display: block;
  text-transform: uppercase;
}
.sec-tit_h2_ja
{
  font-weight: normal;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  display: block;
  letter-spacing: 4px;
}
.inner-wrap {
  width: min(90%, 1200px);
  margin: clamp(80px, 18vw, 180px) auto clamp(100px, 16vw, 200px);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 7vw, 80px);
}
.inner-wrap .txt {
  margin-inline: auto;
  text-align: left;
  line-height: 1.8;
}
.table-wrap {
  overflow: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.table-list {
  width: 100%;
  margin-bottom: 8px;
  border-collapse: separate;
  border-spacing: 4px 4px;
}
.table-list th {
  min-width: 260px;
  padding: 16px;
  background: #777;
  color: #fff;
  font-weight: normal;
}
.table-list td {
  padding: 16px;
  background: #f1f1f1;
}
.table-list td .br {
  display: block;
}
.table-list td .red {
  color: #dd0000;
}
/*　リンク集　*/
.link-wrap {
  position: relative;
  width: min(90%, 1200px);
  margin: 0 auto clamp(80px, 8vw, 100px);
  display: grid;
  gap: clamp(10px, 1.8vw, 30px);
}
.link-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: width 0.8s;
}
.link-item {
  height: clamp(120px, 10vw, 160px);
  transition: .6s;
}
.link-item a {
  display: block;
  position: relative;
}
.link-item img {
  height: clamp(120px, 10vw, 160px);
  overflow: hidden;
  object-fit: cover;
}
.link-item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(1.6rem, 1.3vw, 2.0rem);
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  word-break: auto-phrase;
}
@container hero-container (min-width: 440px) {
  .link-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container hero-container (min-width: 700px) {
  .link-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .link-item:hover {
    opacity: 0.8;
  }
}
/* ============== TOPICS & faq ============== */
.sec-topics, .sec-faq {
  container: topics-container / inline-size;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333;
  padding: clamp(80px, 18vw, 180px) 0;
}
.sec-faq {
  border-top: none;
  margin: 0 auto 80px;
}
.topics-wrap, .faq-wrap {
  width: min(90%, 1440px);
  margin-inline: auto;
}
.topics-tit, .faq-tit {
  padding-bottom: clamp(30px, 4.5vw, 60px);
}
.topics-box {
  width: min(100%, 900px);
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: clamp(20px, 2.5vw, 30px);
}
.topics-list_inner {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vw, 40px);
}
.inner-pic {
  max-width: 200px;
  max-height: 150px;
  overflow: hidden;
  margin-inline: auto;
}
.inner-txt {
  text-align: left;
  width: 90%;
  margin-inline: auto;
}
.inner-txt h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.0rem);
}
.inner-txt .tit {
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  padding: clamp(6px, 1.2vw, 10px) 0 6px;
}
.inner-day {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.inner-day .daytxt {
  display: inline-block;
  color: #777;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}
.inner-day .more {
  display: inline-block;
  width: fit-content;
  font-size: 1.2rem;
  letter-spacing: .5rem;
  color: #777;
  padding: 4px 8px 4px 14px;
  border: solid #999 1px;
  text-box: trim-both cap alphabetic;
  text-transform: uppercase;
  transition: 0.3s;
}
.topics-box li.link-Btn {
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  text-box: trim-both cap alphabetic;
  padding: clamp(20px, 3.8vw, 28px) 2rem;
  margin-top: 40px;
  border: solid 1px #333;
  transition: all .2s linear;
}
@container topics-container (min-width: 400px) {
  .topics-list_inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .inner-pic {
    width: min(36%, 220px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .inner-pic img {
    height: 100%;
    object-fit: cover;
  }
  .inner-txt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@container topics-container (min-width: 700px) {
  .topics-wrap, .faq-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  .topics-tit .sec-tit_h2_ja,
  .faq-tit .sec-tit_h2_en,
  .faq-tit .sec-tit_h2_ja
  {
    text-align: left;
  }
}
/* ============== faq ============== */
/*　アコーディオン　*/
.faq-accordion {
  width: min(100%, 900px);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 2.5vw, 40px);
}
.accordion-check {
  display: none;
}
.accordion-label::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/Q.webp") no-repeat center/ contain;
  width: 24px;
  height: 24px;
  aspect-ratio: 1 / 1;
  margin: 3px 0 auto;
}
.accordion-label {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
}
.accordion-label::after {
  content: "";
  background: url("../img/common/icon-plus.svg") no-repeat;
  background-size: 22px 22px;
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-left: auto;
  padding-left: 8px;
}
.accordion-label>span, .accordion-content>p {
  display: block;
  width: fit-content;
  font-size: clamp(1.6rem, 1.3vw, 2.0rem);
}
.accordion-content {
  position: absolute;
  top: 0;
  height: 0;
  opacity: 0;
  transition: .1s;
  visibility: hidden;
}
.accordion-content::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/A.webp") no-repeat center/ contain;
  width: 24px;
  height: 24px;
  aspect-ratio: 1 / 1;
  margin-top: 3px;
}
.accordion-check:checked + .accordion-label:after{
  content: "";
  background: url("../img/common/icon-minus.svg") no-repeat;
  background-size: 22px 22px;
}
.accordion-check:checked + .accordion-label + .accordion-content{
  position: relative;
  height: fit-content;
  opacity: 1;
  visibility: visible;
  display: flex;
  text-align: left;
  gap: 10px;
}
/* ========= 会社紹介 ここから ========= */
.sec-company {
  max-width: 2000px;
  margin-inline: auto;
  container: company-container / inline-size;
}
.company-inner {
   background: url("../img/company_sp.webp")center center/cover no-repeat;
  padding: clamp(50px, 8.2vw, 80px) 5%;
  color: #fff;
  text-align: left;
}
.company-tit, .company-txt {
  margin-bottom: clamp(40px, 8.2vw, 60px);
  max-width: 670px;
}
.company-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 800px;
}
.company-link_btn {
  width: min(100%, 360px);
  border: solid 1px #fff;
  padding: 18px 1rem;
  display: block;
  outline: none;
  color: #fff;
	font-size: clamp(1.6rem, 2vw, 1.8rem);
  text-align: center;
}
/*　バナー画像　*/
.banner-wrap {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 40px 40px;
  background-repeat: repeat;
  background-position: center center;
  padding-top: clamp(60px, 20vw, 240px);
  padding-bottom: clamp(80px, 18vw, 180px);
}
.banner-list {
  width: min(90%, 1440px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.8vw, 30px);
}

@container company-container (min-width:600px) {
  .company-wrap {
    position: relative;
    min-height: 660px;
  }
  .company-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: min(80%, 800px);
    height: 100%;
    background: url("../img/company.webp")center center/cover no-repeat;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* 左からフェードイン PCのみ */
  .slideinLeft01.active {
    animation: slideIn01 0.6s ease-out forwards;
    line-height: 1.5;
  }
  @keyframes slideIn01 {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .company-pic_sp {
    position: absolute;
    top: 6vw;
    right: 0;
    width: 55%;
    height: 100%;
    display: block;
    background: url("../img/company02.webp")center center/cover no-repeat;
    z-index: 1;
  } 
  .banner-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .banner-list a:hover {
    opacity: 0.8;
    transition: 0.6s;
  }
}
@container company-container (min-width:1000px) {
  .company-inner {
    width: min(80%, 1200px);
    padding-left: 10vw;
  }
  .company-link {
    align-items: flex-start;
  }
  .company-link_btn {
	  position: relative;
    transition: all .2s linear;
  }
  .company-link_btn::before{
    content:"";
    position: absolute;
    top:50%;
    right:-74px;
    width:90px;
    height:0.5px;
    background-color:#fff;
    transition: all .2s linear;
  } 
  .company-link_btn:hover {
    background-color:#000;
    color:#fff;
    opacity: 1;
  }
  .company-link_btn:hover::before{
    right: -90px;
  }
  .banner-list {
    gap: clamp(40px, 3.8vw, 60px);
  }
} 
/* ============== CONTACT ここから ============== */ 
.sec-contact {
  max-width: 2000px;
  margin-inline: auto;
  background: url("../img/common/contact_bg.webp") no-repeat 85% center / cover;
  padding: clamp(60px, 6vw, 100px) 0 clamp(80px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  container: contact-container / inline-size;
}
.contact-tit {
  width: min(86% ,600px);
  color: #fff;
}
.contact-tit h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: normal;
  letter-spacing: .5rem;
}
.contact-tit p {
  margin: 2rem auto 0;
  word-break: auto-phrase;
}
.sec-contact ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 2rem; 
  width: min(80%, 360px);
}
.sec-contact ul li {
  border: 1px solid #fff;
  background-color: #373737;
  padding: clamp(8px, 5vw, 40px);
  width: 100%;
}
.sec-contact ul li a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  align-items: center;
}
/*　テキスト　フェードイン ここから　*/
.fadeUpTrigger{
  opacity: 0;
}
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.time05{
  animation-duration: 0.5s;
}

.time1{
  animation-duration: 1s;
}

.time15{
  animation-duration: 1.5s;
}
@container contact-container (min-width:600px) {
  .sec-contact ul {
    width: min(80%, 1200px);
    flex-direction: row;
    column-gap: 0;
    justify-content: center;
  } 
  .sec-contact ul li:hover {
    background-color: #666;
    transition: 0.3s;
  }
  .sec-contact ul li:first-child a {
    pointer-events: none;
  }
  .sec-contact ul li:first-child a::after {
    content: "06-6910-7500";
    font-size: clamp(2.0rem, 2vw, 3.8rem);
    letter-spacing: 2px;
    margin-top: 10px;
  }
  .sec-contact ul li:not(.time05) a::after {
    content: " ";
    background: url("../img/column/arrow.svg") center no-repeat;
    width: clamp(28px, 5vw, 40px);
    height: clamp(28px, 5vw, 40px);
    margin-top: 20px;
  }
} 

/* ============== TAB(768px)レスポンシブ ============== */
@media (min-width:767px) {
  .sec-hero {
    height: 480px;
  }
  .linkform-btn>a:hover {
    background-color: #333;
    transition: 0.6s;
  }
  .service-list li .link-Btn {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  .service-list li .link-Btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2); 
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.15, 1);
  }
  .service-list li .link-Btn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
  .inner-day .more:hover,
  .topics-box li.link-Btn:hover {
    opacity: 0.4;
  }
}








