@charset "UTF-8";
/*/////////----------------ミックスイン設定*/
#sample {
  width: 10%;
  height: auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2147483648;
}

#base path {
  fill: #FFF; /* 塗りの色 */
}

#mask path {
  fill: none; /* 塗りの色 */
  stroke: #FFF; /* 線の色 */
  stroke-width: 10px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

/*/////////----------------ファーストビュー
----------------/////////*/
/* intro.scss */
/* intro.scss（Vivusと競合しないよう #mask path には触れない） */
#intro {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: transparent;
  display: grid;
  place-items: center;
}

#intro .intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#intro .intro__bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* ← 初期: #192d4a(100%) → 進捗1/3で 20% へフェード */
#intro .intro__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #192d4a;
  opacity: 1;
}

/* ロード画面の入り（中身だけフェードイン） */
#intro .intro__inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  width: 100vw;
  height: 100vh;
}

/* skipは最初から表示 */
#intro #intro-skip {
  position: absolute;
  left: 50%;
  bottom: 10vh;
  transform: translateX(-50%);
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 0.6rem 1.2rem;
  letter-spacing: 0.14em;
  cursor: pointer;
}
#intro #intro-skip:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #192d4a;
}

/* SVG（Vivus対象）はそのまま。サイズだけ可変に */
#intro #sample {
  width: min(85vw, 750px);
  height: auto;
  display: block;
}

/* 紺地に白字にする場合は #base のみ（マスク/書き順には未干渉） */
#intro #base path {
  fill: #fff;
}

/* 768px 基本ブレイクポイント */
@media (max-width: 768px) {
  #intro .intro__inner #intro-skip {
    bottom: 12svh;
    padding: 0.4rem 1rem;
    letter-spacing: 0.14em;
    font-size: 1.4rem;
  }
}
#first_view_con {
  box-sizing: border-box;
  position: relative;
  /*キャンペーンバナー*/
}
#first_view_con .video-wrap {
  position: relative;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%;
  height: 100svh;
  line-height: 0;
  z-index: 0;
  /*キャッチコピー*/
}
#first_view_con .video-wrap::before {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/first_dod.png);
  background-repeat: repeat;
  background-size: 26px auto;
}
#first_view_con .video-wrap::after {
  /*@include iconBefAf;*/
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(../img/top/first_grd.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
#first_view_con .video-wrap video {
  width: 100%;
  height: auto;
  min-height: 900px;
  object-fit: cover;
  object-position: 0 calc(50% - 53.5714285714vw);
}
#first_view_con .video-wrap #mv-txt_con {
  position: absolute;
  left: 7vw;
  bottom: 13vh;
  width: 90%;
  max-width: 42.8571428571vw;
  z-index: 1;
}
#first_view_con .video-wrap #mv-txt_con h1 {
  margin-bottom: 1vh;
  font-size: calc(20px + 10 * (100vw - 100px) / 1300);
  line-height: 1.7;
  letter-spacing: -2px;
  filter: drop-shadow(0 0px 10px rgba(255, 255, 255, 0.9));
}
#first_view_con .video-wrap #mv-txt_con p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  #first_view_con .video-wrap #mv-txt_con {
    width: 82.6666666667vw;
    bottom: 10svh;
    left: calc(50% - 41.3333333333vw);
    max-width: 100%;
  }
  #first_view_con .video-wrap #mv-txt_con p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
@media (max-width: 1024px) {
  #first_view_con .video-wrap video {
    object-position: 0 calc(50% - 32.1428571429vw);
  }
}
@media (max-width: 768px) {
  #first_view_con .video-wrap video {
    height: 100svh;
    object-position: 0 0;
  }
}
#first_view_con #bnr-slider_con {
  position: absolute;
  right: 7vw;
  bottom: 10vh;
  width: auto;
  padding: 20px 20px 40px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#first_view_con #bnr-slider_con .bnr-slider {
  width: 32.1428571429vw;
  max-width: 450px;
  margin: 0 auto;
}
#first_view_con #bnr-slider_con .slick-next:before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  width: 12px;
  height: 12px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-135deg);
}
#first_view_con #bnr-slider_con .slick-prev:before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  width: 12px;
  height: 12px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}
#first_view_con #bnr-slider_con .slick-prev {
  top: auto;
  left: 0;
  bottom: -40px;
  z-index: 1;
}
#first_view_con #bnr-slider_con .slick-next {
  top: auto;
  right: 0;
  bottom: -40px;
  z-index: 1;
}
#first_view_con #bnr-slider_con .slick-dots {
  bottom: -35px;
}
#first_view_con #bnr-slider_con .slick-dots li {
  width: 6px;
  margin: 0 4px;
}
#first_view_con #bnr-slider_con .slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0;
  background-color: #c6c6c6;
}
#first_view_con #bnr-slider_con .slick-dots li button:before {
  content: none;
}
#first_view_con #bnr-slider_con .slick-dots li.slick-active button {
  background-color: #c14a4a;
}
@media (max-width: 768px) {
  #first_view_con #bnr-slider_con {
    position: static;
    width: 90%;
    margin: 30px auto;
    padding: 15px 15px 40px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  #first_view_con #bnr-slider_con .bnr-slider {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

/*/////////----------------電話番号ボックス
----------------/////////*/
#access-section {
  border-top: 3px solid #0d2a49;
}
#access-section .inner {
  padding: 0;
}
#access-section .contact-bar {
  position: relative;
  background: #e5e3e1;
  padding: 0;
}
#access-section .contact-bar__panel {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 30px 0;
}
#access-section .contact-bar__toggle {
  position: absolute;
  left: 0;
  bottom: -37px;
  min-width: 120px;
  min-height: 30px;
  padding: 8px 12px;
  background: #e5e3e1;
  border: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 0 0 5px 5px;
  cursor: pointer;
}
#access-section .contact-bar__toggle.open {
  text-decoration: underline;
}
#access-section .contact-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 18px;
  justify-content: center;
}
#access-section .contact-card {
  --card-brd: #dcdcdc;
  --logo-bg: #999;
  background: #fff;
  border: 3px solid var(--card-brd);
  padding: 30px 18px 16px;
  /*  redカード専用差分 */
  /* オレンジカード専用差分 */
}
#access-section .contact-card__head {
  display: grid;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
}
#access-section .contact-card__logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--logo-bg);
  background-image: url(../img/common/logo_main_cir.png);
  background-position: no-repeat;
  background-size: 100% auto;
}
#access-section .contact-card__logo.contact-card__logo--orange {
  background-image: url(../img/common/logo_reno_cir.png);
}
#access-section .contact-card__block {
  min-width: 0;
}
#access-section .contact-card__name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.8rem;
  color: #223246;
  letter-spacing: 0.02em;
}
#access-section .contact-card__name .contact-card__sns {
  display: inline-flex;
  width: 22px;
  height: 22px;
}
#access-section .contact-card__name .contact-card__sns img {
  width: 100%;
  height: 100%;
  display: block;
}
#access-section .contact-card__tel {
  margin-top: 0;
}
#access-section .contact-card__tel a {
  color: #213447;
  font-size: clamp(22px, 2.6vw, 3.6rem);
}
#access-section .contact-card__note, #access-section .contact-card__hours {
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid #e1e4e8;
  background: #fff;
  color: #3a3a3a;
  font-size: 14px;
  text-align: center;
}
#access-section .contact-card--red {
  --card-brd:#cf6a6a;
  --logo-bg:#e50c26;
  /* ロゴ / 草加 / 足立 */
}
#access-section .contact-card--red .contact-card__head {
  grid-template-columns: 70px 1fr 1fr;
}
#access-section .contact-card--orange {
  --card-brd: #f1a53a; /* 枠色 */
  --logo-bg: #f48940; /* ロゴ円背景 */
}
#access-section .contact-card--orange .contact-card__head {
  grid-template-columns: 70px 1fr; /* ロゴ + りのべブロック */
}
@media (max-width: 768px) {
  #access-section .contact-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  #access-section .contact-bar__panel {
    padding: 30px 0;
  }
  #access-section .contact-card {
    padding: 14px;
  }
  #access-section .contact-card__head {
    grid-template-columns: 1fr;
    row-gap: 10px;
    text-align: center;
  }
  #access-section .contact-card__logo {
    grid-row: 1/3;
    margin: 0 auto;
  }
  #access-section .contact-card__block + #access-section .contact-card__block {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e6e6e6;
  }
  #access-section .contact-card__name {
    justify-content: center;
  }
  #access-section .contact-card__tel a {
    font-size: clamp(20px, 6vw, 26px);
  }
  #access-section .contact-card__note {
    font-size: 13px;
  }
  #access-section .contact-card__hours {
    font-size: 13px;
  }
  #access-section .contact-card--red .contact-card__head {
    grid-template-columns: 1fr;
  }
  #access-section .contact-card--orange .contact-card__head {
    grid-template-columns: 1fr; /* ロゴ + りのべブロック */
  }
  #access-section .contact-bar__toggle {
    left: 5px;
    bottom: -35px;
    font-size: 13px;
  }
}

/*/////////----------------買う売る
----------------/////////*/
#sales-section {
  padding: 150px 0;
  background: linear-gradient(180deg, #0d2a49 0%, #113a63 15%, #4e6b86 30%, #FFF 100%);
  overflow: hidden;
}
#sales-section .sale-hero {
  position: relative;
  /*動くテキスト*/
  /*動くテキスト*/
}
#sales-section .sale-hero__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 90%;
  max-width: 950px;
  margin: 0 auto 80px;
}
#sales-section .sale-hero__label {
  width: 10vw;
  height: 10vw;
  max-width: 140px;
  max-height: 140px;
  padding: 18px;
  border: 1px solid #FFF;
}
#sales-section .sale-hero__center {
  width: 27.1428571429vw;
  max-width: 380px;
}
#sales-section .sale-hero__center img {
  max-width: 100%;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}
#sales-section .sale-hero__right {
  width: 23.5714285714vw;
  max-width: 330px;
}
#sales-section .sale-hero__cards {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
#sales-section .sale-hero__cards > a {
  display: block;
}
#sales-section .sale-hero__cards > a:hover {
  opacity: 1;
}
#sales-section .sale-hero__cards > a:hover .kv-card__btn {
  background: #d45555;
}
#sales-section .sale-hero .loop-area {
  width: auto;
  height: 150px;
  margin-top: -30px;
  background: url(../img/top/buy_bg_txt.svg) repeat-x;
  background-position: 0 0;
  background-size: auto 100%;
  -webkit-animation: bgroop 20s linear infinite;
  animation: bgroop 30s linear infinite;
}
@-webkit-keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1956px 0;
  }
}
@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1956px 0;
  }
}
#sales-section .kv-card {
  position: relative;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
#sales-section .kv-card__shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 45, 74, 0.45);
  mix-blend-mode: multiply;
  transition: 0.3s;
}
#sales-section .kv-card__shade:hover {
  background-color: rgba(25, 45, 74, 0.8);
  transition: 0.3s;
}
#sales-section .kv-card__body {
  position: absolute;
  top: calc(50% - 4em);
  left: calc(50% - 12em);
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-items: center;
  text-align: center;
}
#sales-section .kv-card__body p {
  width: 100%;
  color: #fff;
}
#sales-section .kv-card__lead {
  font-size: 2.5rem;
  font-weight: 100;
}
#sales-section .kv-card__title {
  margin-top: 6px;
  font-size: 3.4rem;
  font-weight: 100;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
#sales-section .kv-card__btn {
  position: absolute;
  right: 0;
  bottom: 20px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 200px;
  padding: 12px 0;
  background: #0f2f55;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
#sales-section .kv-card__btn em {
  font-style: normal;
  opacity: 0.9;
  font-size: 13px;
}
#sales-section .kv-card--buy {
  animation: fluffy 3s ease-in-out infinite alternate-reverse;
}
#sales-section .kv-card--sell {
  animation: fluffy 3s ease-in-out infinite alternate-reverse;
  animation-delay: 2.5s;
}
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
@media (max-width: 768px) {
  #sales-section {
    padding: 80px 0;
  }
  #sales-section .sale-hero {
    /*動くテキスト*/
    /*動くテキスト*/
  }
  #sales-section .sale-hero__top {
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 30px;
  }
  #sales-section .sale-hero__label {
    width: 100%;
    max-width: 100%;
    height: auto;
    text-align: center;
    line-height: 1;
  }
  #sales-section .sale-hero__label img {
    display: none;
  }
  #sales-section .sale-hero__label::before {
    content: "売却部門";
    font-size: 2rem;
    color: #FFF;
    line-height: 1;
    letter-spacing: 2px;
  }
  #sales-section .sale-hero__center {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
  }
  #sales-section .sale-hero__right {
    width: 80%;
    margin: 0 auto;
  }
  #sales-section .sale-hero__right img {
    display: block;
    width: 88%;
  }
  #sales-section .sale-hero__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
  }
  #sales-section .sale-hero .loop-area {
    width: auto;
    height: 100px;
    margin-top: -50px;
    background: url(../img/top/buy_bg_txt.svg) repeat-x;
    background-position: 0 0;
    background-size: auto 100%;
    -webkit-animation: bgroop 20s linear infinite;
    animation: bgroop 30s linear infinite;
  }
  #sales-section .kv-card {
    width: 100%;
  }
  #sales-section .kv-card--buy {
    animation: none;
  }
  #sales-section .kv-card--sell {
    animation: none;
  }
}

/*/////////----------------リフォーム／建てたい
----------------/////////*/
:root {
  --container: 1200px;
  --btn-bg: #192d4a;
  --btn-hover: #c14a4a;
  --ref-bg: #dddcda; /* 上面の薄グレー背景 */
}

.ref {
  width: 100%;
  background: var(--ref-bg);
  padding: 7vh 0;
  overflow-x: hidden;
  /* 下段4カラム */
  /* 既存のSPレイアウトはそのまま（<=768px は2カラム） */
  /* スマホ（<=768） */
}
@supports (overflow-x: clip) {
  .ref {
    overflow-x: clip;
  }
}
.ref .inner {
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 24px;
}
.ref__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 100px;
}
.ref__visual {
  margin-top: -17vh;
  margin-left: -5vw;
  width: 120%;
}
.ref__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.ref__grid {
  /* 既存: 4カラムなど */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0px;
  width: 100dvw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .ref__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* 端の余白（ガター）を可変で確保 */
    padding-inline: clamp(12px, 2.5vw, 24px);
  }
}
.ref .ref-card {
  position: relative;
  overflow: hidden;
}
.ref .ref-card:nth-of-type(odd) {
  margin-bottom: 7vh;
}
.ref .ref-card:nth-of-type(2n) {
  margin-top: 7vh;
}
.ref .ref-card__ph {
  margin: 0;
}
.ref .ref-card__ph img {
  width: 100%;
  height: auto;
  display: block;
}
.ref .ref-card__cta {
  box-sizing: border-box;
  position: absolute;
  left: calc(50% - (100% - 40px) / 2);
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px);
  min-height: 40px;
  padding: 0 16px;
  background: var(--btn-bg);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid var(--btn-bg);
}
.ref .ref-card__cta:hover {
  opacity: 1;
  background: var(--btn-hover);
  border-color: var(--btn-hover);
}
.ref .ref-card__cta .ref-card__en {
  font: 400 12px/1 "Cardo", serif;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .ref {
    padding-block: 32px;
  }
  .ref__head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 20px;
  }
  .ref__visual {
    margin-top: -10vh;
    width: 100%;
  }
  .ref__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ref .ref-card {
    position: relative;
    overflow: hidden;
  }
  .ref .ref-card:nth-of-type(odd) {
    margin-bottom: 0;
  }
  .ref .ref-card:nth-of-type(2n) {
    margin-top: 0;
  }
  .ref .ref-card__cta {
    left: calc(50% - (100% - 20px) / 2);
    width: calc(100% - 20px);
    min-height: 35px;
    padding: 0 14px;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: 0;
    border: none;
  }
  .ref .ref-card__cta .ref-card__en {
    font: 400 10px/1;
  }
}

/*/////////----------------保険
----------------/////////*/
#insurance-section {
  overflow: hidden;
  /* 768px 以下 */
}
#insurance-section .inner {
  padding: 0;
}
#insurance-section .insu {
  background: var(--ref-bg);
  padding: clamp(28px, 4vw, 44px) clamp(16px, 3.5vw, 40px) clamp(36px, 6vw, 72px);
  --insu-bg-h: clamp(220px, 36vw, 420px);
  /* 背景エリア */
  /* 中央のPNGバナー */
  /* 右下のCTA */
  /* 中央のレイアウト用キャンバスは透明にし、前面へ */
  /* 既存のバナー・CTA指定はそのまま */
}
#insurance-section .insu__head {
  max-width: 1300px;
  margin: 0 auto 150px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}
#insurance-section .insu__title .insu__ja {
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: 0.08em;
  color: #222;
  margin: 0 0 6px;
}
#insurance-section .insu__title .insu__en {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #cf3c3c;
  margin: 0;
}
#insurance-section .insu__desc p {
  margin: 0 0 16px;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 2;
  color: #2a2a2a;
}
#insurance-section .insu__linkBtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #0f2f55;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 0.08em;
  font-size: 14px;
}
#insurance-section .insu__linkBtn em {
  font-style: normal;
  opacity: 0.9;
  font-size: 13px;
}
#insurance-section .insu__linkBtn:hover {
  filter: brightness(0.95);
}
#insurance-section .insu__linkBtn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
#insurance-section .insu__visual {
  margin-top: clamp(32px, 6vw, 60px);
  position: relative;
}
#insurance-section .insu__canvas {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  min-height: clamp(220px, 36vw, 420px);
  background: url("/assets/img/top/insu_bg.png") center/cover no-repeat;
  overflow: visible;
}
#insurance-section .insu__bnr {
  position: absolute;
  left: 50%;
  top: 6vw;
  transform: translate(-50%, -50%);
  width: min(92%, 920px);
  display: grid;
  cursor: pointer;
}
#insurance-section .insu__bnr:hover {
  opacity: 1;
}
#insurance-section .insu__bnr:hover button {
  background-color: #d45555;
}
#insurance-section .insu__bnr:hover img {
  filter: drop-shadow(0 10px 24px rgba(42, 45, 73, 0.25));
  transition: 0.3s;
}
#insurance-section .insu__bnr img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
}
#insurance-section .insu__cta {
  position: absolute;
  right: 0;
  bottom: clamp(10px, 2vw, 28px);
  min-width: 220px;
  min-height: 40px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 0 15px;
  background: var(--btn-bg);
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 14px;
}
#insurance-section .insu__cta em {
  font-style: normal;
  opacity: 0.9;
  font-size: 13px;
}
#insurance-section .insu__cta:hover {
  filter: brightness(0.95);
}
#insurance-section .insu__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
#insurance-section .insu__visual {
  position: relative;
  margin-top: clamp(32px, 6vw, 60px);
  min-height: var(--insu-bg-h);
  z-index: 0;
  /* ここで全幅背景を作る */
}
#insurance-section .insu__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* 画面いっぱい */
  height: var(--insu-bg-h); /* 高さはカードと揃える */
  background: url("/assets/img/top/insu_bg.png") center/cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
#insurance-section .insu__canvas {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: var(--insu-bg-h);
  background: none; /* ← ここを消す */
  border-radius: 0; /* 背景は全面なので角丸は不要 */
  overflow: visible;
}
@media (max-width: 768px) {
  #insurance-section .insu {
    padding: 50px 20px;
    --insu-bg-h: min(56vw, 420px); /* モバイルはやや浅め */
  }
  #insurance-section .insu__head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 auto 80px;
  }
  #insurance-section .insu__desc p {
    line-height: 1.9;
  }
  #insurance-section .insu__canvas {
    min-height: 56vw;
    border-radius: 4px;
  }
  #insurance-section .insu__bnr {
    width: min(96%, 680px);
  }
  #insurance-section .insu__cta {
    position: absolute;
    right: 0;
    bottom: clamp(10px, 1.8vw, 28px);
    min-width: 100px;
    min-height: 30px;
    padding: 0 10px;
    letter-spacing: 0;
  }
  #insurance-section .insu__cta em {
    font-size: 10px;
  }
}

/*/////////----------------お知らせ
----------------/////////*/
#news-section {
  /* === list === */
  /* 768px 以下：日付を上、タイトルを下に縦積み */
}
#news-section .inner {
  padding: 0;
}
#news-section .news {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) clamp(16px, 4vw, 32px);
}
#news-section .news__head {
  margin-bottom: clamp(14px, 3vw, 24px);
}
#news-section .news__ja {
  margin: 0 0 6px;
  font-size: clamp(14px, 1.8vw, 16px);
  letter-spacing: 0.06em;
  color: #1f2a36;
}
#news-section .news__en {
  margin: 0;
  font-size: clamp(28px, 5.4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #cf3c3c;
  line-height: 1.15;
}
#news-section .topicsBox {
  background: #fff;
}
#news-section .blog_latest_1 {
  list-style: none;
  margin: 0;
  padding: 0;
}
#news-section .blog_latest_1 li {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr; /* 日付 / タイトル */
  align-items: center;
  column-gap: clamp(12px, 2.2vw, 26px);
  padding: 14px clamp(10px, 2vw, 16px) 15px;
  border-bottom: 1px dotted #dfe4ea;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  /* 行末丸ボタン */
  /* 念のため、以前の ::after を無効化 */
}
#news-section .blog_latest_1 li .blog_latest_title a {
  position: relative;
  display: block;
  padding-right: 50px; /* 末尾ボタン分の余白 */
  color: #2b3b4c;
  line-height: 1.9;
}
#news-section .blog_latest_1 li .blog_latest_title a::after {
  /* 丸いグレーボタン */
  content: "";
  position: absolute;
  right: 8px;
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9edf1;
}
#news-section .blog_latest_1 li .blog_latest_title a::before {
  /* ＞ のチート（45度線） */
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #8a97a6;
  border-bottom: 2px solid #8a97a6;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 1;
}
#news-section .blog_latest_1 li .blog_latest_title a:hover {
  color: #0f2f55;
}
#news-section .blog_latest_1 li .blog_latest_title a:hover::after {
  background: #0f2f55;
}
#news-section .blog_latest_1 li .blog_latest_title a:hover::before {
  border-color: #fff;
}
#news-section .blog_latest_1 li .blog_latest_title a:focus-visible {
  outline: 2px solid #0f2f55;
  outline-offset: 2px;
  border-radius: 4px;
}
#news-section .blog_latest_1 li .blog_latest_date {
  position: static;
  color: #213447;
  -webkit-text-fill-color: initial;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
#news-section .blog_latest_1 li .blog_latest_date::after {
  content: none !important;
}
@media (max-width: 768px) {
  #news-section .blog_latest_1 li {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 14px 8px;
  }
  #news-section .blog_latest_1 li .blog_latest_title a {
    padding-right: 44px;
  }
  #news-section .blog_latest_1 li .blog_latest_title a::after {
    right: 4px;
    width: 30px;
    height: 30px;
  }
  #news-section .blog_latest_1 li .blog_latest_title a::before {
    right: 15px;
  }
  #news-section .blog_latest_1 li .blog_latest_date {
    font-size: 16px;
  }
}/*# sourceMappingURL=top.css.map */