@charset "UTF-8";

@import "settings.css";

/*============================================================================================
  Header
  =============================================================================================*/
.header {
  container-type: size;
  display: flex;
  position: fixed;
  width: 100%;
  height: 80px;
  padding-left: 2.4rem;
  top: 0;
  left: 0;
  align-items: center;
  background-color: var(--color-white);
  z-index: 9999;
  transition: top 0.3s 0.1s, padding 0.3s;
}
.header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgb(255 255 255 / 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.header_inr {
  width: 100%;
  height: 100%;
  z-index: 10;
}
.header_logo img {
  width: 160px;
}
.header_nav {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: end;
  gap: 3.2rem;
}

/* Header Nav Bottom */
.header_nav_lst {
  display: flex;
  gap: 3.2rem;
  height: 100%;
  align-items: center;
}
.header_nav_lst.header_nav_lst__btm {
  margin-top: 1.6rem;
}
.header_nav_itm {
  display: flex;
  height: 100%;
  align-items: center;
}
.header_nav_itm a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.header_nav_itm_ttl {
  display: flex;
  height: 100%;
  padding-right: 1.4rem;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: default;
  line-height: 1;
  transition: var(--transition);
  z-index: 2;
}
.header_nav_itm_ttl::before {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: var(--color-main);
  line-height: 1;
  width: 0.8rem;
  height: 0.8rem;
  right: 0;
  border: 0.1em solid var(--color-main);
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translateY(-25%) rotate(135deg);
  transform: translateY(-25%) rotate(135deg);
}

/* Header Nav Top */
.header_nav_lst__top {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: auto;
  justify-content: flex-end;
  line-height: 1;
}

@media (any-hover: hover) {
  .header_nav_itm_ttl:hover {
    color: var(--color-main);
  }
}

/* メガメニュー */
.header_nav_itm_megaBox {
  display: none;
  position: absolute !important;
  min-width: 100cqw;
  width: 100%;
  height: 372px;
  margin-top: 80px;
  top: 0 !important;
  left: 0 !important;

  box-shadow: 0px 8px 12px 0px rgba(0, 39, 71, 0.1);
}
.header_nav_itm_mega {
  padding: 2.4rem 2.4rem 1.8rem;
  background-color: var(--color-white);
}
.header_nav_itm_mega_inr {
  display: flex;
  gap: 4rem;
  display: flex;
  gap: 4.8rem;
}
.header_nav_itm_mega_img {
  flex-shrink: 0;
}
.header_nav_itm_mega_Hd_subTtl,
.header_nav_itm_mega_Hd {
  margin-left: calc(-0.6rem - 0.8rem);
}
.header_nav_itm_mega_Hd_subTtl {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-main);
}
.header_nav_itm_mega_Hd_ttl {
  font-size: 2rem;
  font-weight: 700;
}
.header_nav_itm_mega_LstWrap {
  display: -ms-grid;
  display: grid;
  width: 100%;
  margin-top: 2.4rem;
  -ms-grid-columns: auto 5.4rem auto;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 5.4rem;
  grid-row-gap: 1.6rem;
  font-size: 1.6rem;
}
.header_nav_itm_mega_Itm {
  margin-top: 1.6rem;
  padding-left: 2rem;
}
.header_nav_itm_mega_Itm::before {
  position: absolute;
  width: 0.6rem;
  height: 1rem;
  top: 0;
  bottom: 0;
  left: calc(1rem - 0.8rem);
  background: var(--color-main);
  -webkit-clip-path: var(--triangle-r);
  clip-path: var(--triangle-r);
}

.header_btnWrap {
  position: relative;
  display: flex;
  max-width: 24rem;
  width: 100%;
  height: 100%;
  align-items: center;
}
.header_btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  border: 0.1rem solid var(--color-blue);
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.2s, background 0.2s;
}
.header_btn.header_btn__search {
  background-color: var(--color-sub);
}
.header_btn.header_btn__contact {
  background-color: var(--color-main);
}
.header_btn a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  gap: 1rem;
  line-height: 1;
}
.header_btn.header_btn__search .header_btn_icon::before {
  content: "";
  display: block;
  height: 1.8rem;
  width: 1.8rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(../../img/renewal/common/icon_search.svg);
  mask-image: url(../../img/renewal/common/icon_search.svg);
  background-color: var(--color-white);
}
.header_btn__contact_ttl {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 1;
}
.header_btn__contact_ttl::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1.8rem;
  background-image: url(../../img/renewal/common/icon_contact.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.header_btn .js_acd_trg_lg {
  position: absolute !important;
  display: none;
  width: 100%;
  min-width: 240px;
  padding: 3.2rem;
  right: 0;
}
.header_btn_trg_lnk {
  transition: var(--transition);
}
.header_btn_trg_lnk + .header_btn_trg_lnk {
  margin-top: 2.4rem;
}
.header_btn.js_open .js_acd_trg_lg {
  background-color: var(--color-main);
}

@media (any-hover: hover) {
  .header_nav_itm_mega_Itm:hover a {
    color: var(--color-main);
  }
  .header_btn_trg_lnk:hover {
    opacity: var(--opacity);
  }
}

@media screen and (max-width: 1080px) {
  .header {
    padding: 0 1.6rem 0 1rem;
  }
  .header_nav {
    gap: 1rem;
  }
  .header_nav_lst {
    gap: 1.2rem;
  }
  .header_nav_itm_ttl {
    font-size: 1.4rem;
  }
  .header_btnWrap {
    width: 100%;
    max-width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header_btn {
    width: 100%;
    height: 8.2rem;
  }
  .header_nav_itm_mega_inr {
    display: block;
  }
  .header_nav {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    gap: 0;
    flex-direction: column-reverse;
    align-items: normal;
    background-color: var(--color-white);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .header_nav_lst {
    width: calc(100% - 2rem * 2);
    margin: 3.2rem auto 0;
    height: auto;
    flex-direction: column;
    gap: 0;
  }
  .header_nav_itm {
    width: 100%;
    position: relative;
    display: block;
    min-height: auto;
    padding: 1.2rem 0;
    border-top: 1px solid var(--color-border);
  }
  .header_nav_itm::after {
    width: calc(17 / 16 * 1.6rem);
    height: calc(5 / 16 * 1.6rem);
    right: calc(12 / 16 * 1.6rem);
    -webkit-mask-image: url(../../img/renewal/common/icon_arrow_sm.svg);
    mask-image: url(../../img/renewal/common/icon_arrow_sm.svg);
    transition: right var(--transition);
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: var(--color-blue);
    z-index: 1;
  }
  .header_nav_itm.js_acd_lg::before {
    top: calc(12 / 16 * 1.6rem);
    bottom: auto;
  }
  .header_nav_itm.js_acd_lg::after {
    display: none;
  }
  .header_gnav_itm_ttl::before,
  .header_gnav_itm_ttl::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color-main);
    transition: all 0.4s linear;
    border-radius: calc(1px / 0);
    z-index: 1;
  }
  .header_gnav_itm_ttl::before {
    width: calc(15 / 16 * 1.6rem);
    height: calc(1 / 16 * 1.6rem);
    right: calc(14 / 16 * 1.6rem);
  }
  .header_gnav_itm_ttl::after {
    width: calc(1 / 16 * 1.6rem);
    height: calc(15 / 16 * 1.6rem);
    right: calc(20 / 16 * 1.6rem);
  }
  .header_gnav_itm_ttl_wrap.js_open .header_gnav_itm_ttl::after {
    -webkit-transform: rotate(90deg) translateY(0px);
    transform: rotate(90deg) translateY(0px);
  }

  /* footer clone */
  .header_nav:has(.menu_wrap_clone) {
    height: calc(100vh - 80px) !important;
    top: 80px !important;
    justify-content: space-between;
  }
  .footer.menu_wrap_clone {
    padding-top: 0;
    margin: 0;
  }
  .menu_wrap_clone .menu_top_nav {
    margin-top: 0;
  }
}

@media (max-width: 896px) {
  .header {
    height: 50px;
    padding: calc((16 / 16) * 1.6rem);
  }
  .header_inr {
    height: 100%;
    min-height: 0;
  }
  .header_logo_img {
    max-width: calc((102 / 16) * 1.6rem);
  }
  .header_nav_itm_megaBox {
    position: static;
    min-width: auto;
    margin-top: 1.6rem;
    padding-top: 0;
    box-shadow: unset;
  }
  .header_nav_itm_mega {
    padding: 0;
    background: unset;
  }
  .header_nav_itm_mega_cont {
    position: relative;
    display: block;
    width: 100%;
  }
  .header_nav_itm_mega_cont::before {
    content: "";
    position: absolute;
    width: 4.4rem;
    height: 3rem;
    border: 0.1rem solid var(--color-blue);
    top: calc(10 / 16 * 1.6rem);
    right: 0;
    border-radius: var(--bdrs-infinite);
    transition: background var(--transition);
  }
  .header_nav_itm_mega_right .header_nav_itm_mega_cont::before {
    display: none;
  }
  .header_nav_itm_mega_Hd {
    position: relative;
  }
  .header_nav_itm_mega_Hd::before {
    content: "";
    position: absolute;
    width: calc(13 / 16 * 1.6rem);
    height: calc(1 / 16 * 1.6rem);
    right: calc(15 / 16 * 1.6rem);
    top: calc(0 / 16 * 1.6rem);
    bottom: 0;
    margin-block: auto;
    border: unset;
    background-color: var(--color-blue);
  }
  .header_nav_itm_mega_Hd::after {
    content: "";
    position: absolute;
    width: calc(1 / 16 * 1.6rem);
    height: calc(13 / 16 * 1.6rem);
    top: calc(19 / 16 * 1.6rem);
    bottom: auto;
    right: calc(21 / 16 * 1.6rem);
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: var(--bdrs-infinite);
    background-color: var(--color-blue);
    transition: 0.6s;
  }

  /* menu_wrap clone */
  .header_nav:has(.menu_wrap_clone) {
    height: calc(100vh - 50px) !important;
    top: 50px !important;
    padding-bottom: 10rem;
  }
}

/* =================
　検索モーダル
================== */
.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal--active {
  opacity: 1;
  visibility: visible;
}
.modal__inner {
  width: 1350px;
  height: 220px;
  padding: 0 40px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.modal__inner .cp_ipselect {
  width: 340px;
}
@media screen and (max-width: 1430px) {
  .modal__inner .cp_ipselect {
    width: 100%;
  }
}
@media screen and (max-width: 1430px) {
  .modal__inner {
    width: 92%;
    height: auto;
    padding: 20px;
  }
}
.modal__flex {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1430px) {
  .modal__flex {
    flex-flow: column;
    justify-content: center;
  }
}
.modal__blankLinkBox {
  margin-top: 32px;
  display: flex;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .modal__blankLinkBox {
    flex-flow: column;
    justify-content: center;
  }
}
.modal__blankLink {
  width: auto;
  max-width: 100%;
  padding: 0 30px;
  height: 50px;
  background-color: #0f6729;
  border: 1px solid #0f6729;
  font-size: 15px;
  line-height: 1em;
  color: #fff !important;
  border-radius: 6px;
  padding: 0 25px;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.modal__blankLink.modal__blankLink--black {
  background-color: #333;
  border: 1px solid #333;
}
.modal__blankLink + .modal__blankLink {
  margin-left: 25px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .modal__blankLink + .modal__blankLink {
    margin-left: 0;
  }
}
@media screen and (max-width: 1430px) {
  .modal__blankLink {
    width: 100%;
    margin: 10px 0;
  }
}
.modal__blankLink svg {
  fill: #fff;
  transition: fill 0.3s ease;
  margin-left: 10px;
}
.modal__blankLink:hover {
  color: #0f6729 !important;
  background-color: #fff;
}
.modal__blankLink:hover svg {
  fill: #0f6729;
}
.modal__blankLink:hover.modal__blankLink--black {
  color: #333 !important;
  background-color: #fff;
}
.modal__blankLink:hover.modal__blankLink--black svg {
  fill: #333;
}
.close__btn {
  width: 55px;
  display: block;
  position: absolute;
  top: 40px;
  right: 35px;
}
@media screen and (max-width: 1430px) {
  .close__btn {
    width: 40px;
    top: 40px;
    right: 4%;
  }
}
.close__btnImg {
  width: 100%;
  height: auto;
  display: block;
}
.cp_ipinput {
  width: 300px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 15px;
}
@media screen and (max-width: 1430px) {
  .cp_ipinput {
    width: 100%;
    display: block;
    margin: 10px 0;
  }
}
.cp_ipselect {
  overflow: hidden;
  width: 150px;
  height: 50px;
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 1430px) {
  .cp_ipselect {
    width: 100%;
    display: block;
    margin: 10px 0;
  }
}
.cp_ipselect select {
  width: 100%;
  height: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: 0;
  background: 0 0;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cp_ipselect select::-ms-expand {
  display: none;
}
.cp_ipselect.cp_sl01 {
  position: relative;
  border: 1px solid #000;
  border-radius: 6px;
  background: #fff;
}
.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000;
  pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
  padding: 0 25px 0 15px;
  color: #000;
}
.cp_ipbutton {
  width: 150px;
  height: 50px;
  background-color: #e3871a;
  border: 1px solid #e3871a;
  font-size: 15px;
  line-height: 1em;
  color: #fff;
  border-radius: 6px;
  padding: 0 25px;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 1430px) {
  .cp_ipbutton {
    width: 100%;
    margin: 10px 0;
  }
}
.cp_ipbutton svg {
  fill: #fff;
  transition: fill 0.3s ease;
}
.cp_ipbutton:hover {
  color: #e3871a;
  background-color: #fff;
}
.cp_ipbutton:hover > svg {
  fill: #e3871a;
}

/*============================================================================================
  Footer
  =============================================================================================*/
.footer {
  position: relative;
  padding-top: 8rem;
  background-color: var(--color-bg);
}
/* Footer Top */
.footer_logo {
  display: flex;
  gap: 4.2rem;
  align-items: center;
}
.footer_logo figcaption {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
}
.menu_top_nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr 3.2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto 6.4rem auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 3.2rem;
  grid-row-gap: 6.4rem;
  margin-top: 6.4rem;
}
.menu_top_nav > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.menu_top_nav > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.menu_top_nav > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.menu_top_nav > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.menu_top_nav > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.menu_top_nav > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

@media screen and (max-width: 576px) {
  .footer_logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .menu_top_nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0 0;
    margin-top: 3.6rem;
  }
}

/* Footer Btm */
.menu_btm {
  margin-top: 10.4rem;
}
.menu_btm_nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}
.menu_btm_nav_box {
  padding-left: 6rem;
}
.menu_btm_nav_box:first-child {
  padding-left: 0;
}
.menu_btm_nav_box + .menu_btm_nav_box {
  border-left: 0.1rem solid var(--color-border-02);
}
.menu_btm_nav_box_Lst {
  margin-top: 1.6rem;
}
.menu_btm_nav_box_Itm {
  margin-top: 0.4rem;
}
.menu_btm_nav_box_Itm:nth-child(1) {
  margin-top: 0;
}
.menu_btm_nav_box_Itm a {
  transition: var(--transition);
}
.menu_nav_itm_ttl {
  position: relative;
}
.menu_nav_itm_ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1rem;
  left: 0;
  bottom: -1.6rem;
  background-color: var(--color-border-02);
}
.menu_btm_nav_box_ttl {
  font-weight: 700;
  font-size: 1.8rem;
}
.menu_nav_itm {
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 1.6rem;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.menu_nav_itm_acd_trg {
  display: flex;
  gap: 3.2rem;
}
.menu_nav_itm_acd_trg_Lst {
  padding-top: 1.6rem;
  font-size: 1.6rem;
}
.menu_nav_itm_acd_trg_Itm {
  margin-top: 0.8rem;
}
.menu_nav_itm_acd_trg_Itm a {
  transition: var(--transition);
}
.menu_btm_nav_box_Itm__bnr + .menu_btm_nav_box_Itm__bnr {
  margin-top: 1.6rem;
}
.menu_btm_nav_box_Itm__bnr {
  border-radius: calc(5 / 16 * 1.6rem);
}

@media (any-hover: hover) {
  .menu_nav_itm_acd_trg_Itm a:hover,
  .menu_btm_nav_box_Itm a:hover {
    color: var(--color-main);
  }
}

@media screen and (max-width: 896px) {
  .menu_btm_nav_box {
    padding-left: 1.6rem;
  }
  .menu_nav_itm_acd_trg {
    flex-direction: column;
    gap: 1rem;
  }
  .menu_btm_nav_box--banner {
    grid-column: 1 / -1;
    padding: 2.4rem 0rem;
  }
  .menu_btm_nav_box_Lst--banner {
    display: flex;
    gap: 2rem;
  }
  .menu_btm_nav_box_Itm__bnr + .menu_btm_nav_box_Itm__bnr {
    margin-top: unset;
  }
  .menu_nav_itm_acd_trg_Itm a {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  /* Footer Top */
  .menu_btm {
    margin-top: 0;
  }
  .menu_btm_nav {
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .menu_btm_nav_box {
    padding: 2.4rem 2rem;
  }
  .menu_btm_nav_box--banner {
    grid-column: 1 / -1;
    padding: 2.4rem 0rem;
  }
  .menu_btm_nav_box:nth-child(odd) {
    padding-left: 0;
  }
  .menu_btm_nav_box + .menu_btm_nav_box {
    border-left: none;
  }
  .menu_btm_nav_box:nth-child(3),
  .menu_btm_nav_box:nth-child(4),
  .menu_btm_nav_box:nth-child(5) {
    border-top: 0.1rem solid var(--color-border-02);
  }
  .menu_btm_nav_box_ttl {
    font-size: 1.4rem;
  }
  .menu_btm_nav_box_Itm {
    font-size: 1.2rem;
  }
  .menu_nav_itm {
    display: block;
    padding: 2.4rem 0;
    border-bottom: 0.1rem solid var(--color-border-02);
  }
  .menu_nav_itm_ttl::after {
    display: block;
    width: calc(1 / 16 * 1.6rem);
    height: calc(15 / 16 * 1.6rem);
    top: 0;
    left: auto;
    bottom: 0;
    margin: auto;
    background-color: var(--color-grey-03);
  }
  .menu_nav_itm_acd_trg {
    font-size: 1.4rem;
  }
}

/* Policy */
.footer_policyWrap {
  padding: 2.6rem 1rem 1rem;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
}

/* copy */
.footer_copyWrap {
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}
.footer_copy {
  color: var(--color-white);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: calc(2.4 / 16 * 1.6rem);
  text-transform: uppercase;
}

/*============================================================================================
  Top
  =============================================================================================*/

/*=======================
  Common
  =======================*/
.renewal_main {
  margin-top: 80px;
  padding-top: 0;
}
.mainv + .renewal_main {
  margin-top: 0;
}
.top_sec {
  padding-top: 8rem;
}
.top_sec_ttl {
  display: flex;
  flex-direction: column;
}
.top_sec_ttl.top_sec_ttl__center {
  position: relative;
  text-align: center;
}
.top_sec_ttl_sub {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.top_sec_ttl_main {
  color: var(--color-text);
  margin-top: 1.6rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 896px) {
  .renewal_main {
    margin-top: 50px;
  }
  .top_sec_ttl_sub {
    font-size: 1.6rem;
  }
  .top_sec_ttl_main {
    font-size: 2.4rem;
  }
}

/*=======================
  MV
  =======================*/
.top_30th_logo {
  display: block;
  max-width: 154px;
  width: 100%;
  height: 100%;
  aspect-ratio: 154 / 90;
}
.mv {
  position: relative;
  height: 520px;
}

/* Slider */
.mv_sliderWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.mv_slider_lst {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  aspect-ratio: 1360 / 520;
}
.mv_slider_itm {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mv_slider_itm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(101deg, #fff 6.38%, rgba(255, 255, 255, 0) 79.81%);
  pointer-events: none;
}
.mv_slider_itm img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* Text */
.mv_contWrap {
  width: calc(100% - 2rem * 2);
  max-width: 1212px;
  position: relative;
  padding-top: 4.2rem;
  max-width: 1214px;
  margin-inline: auto;
}
.mv_cont_txtWrap {
  display: flex;
  flex-direction: column;
  padding-top: 3.6rem;
  gap: 1.2rem;
}
.mv_cont_txt {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 1.6rem;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  border-radius: calc(5 / 16 * 1.6rem);
  background-color: var(--color-main);
  letter-spacing: calc(1.68 / 16 * 1.6rem);
}
.mv_cont_txtWrap .u_pc {
  display: inline-block !important;
}

/* ページ遷移リンク */
.mv_pagelinkWrap {
  position: relative;
  margin-top: 8rem;
}
.mv_pagelink_lead {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1rem 1.2rem;
  top: -3.2rem;
  left: 0;
  right: 0;
  color: var(--color-white);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(0.72 / 16 * 1.6rem);
  border-radius: calc(2 / 16 * 1.6rem);
  background-color: var(--color-sub);
}
.mv_pagelink_lead::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 10px;
  right: 0;
  left: 0;
  bottom: -0.8rem;
  margin-inline: auto;
  background-color: var(--color-sub);
  -webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.mv_pagelink_lst {
  display: -ms-grid;
  display: grid;
  max-width: 960px;
  margin-inline: auto;
  gap: 1rem;
  padding: 1.6rem;
  background-color: var(--color-white);
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  border-radius: calc(5 / 16 * 1.6rem);
  box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.2);
}
.mv_pagelink_itm {
  border: 0.1rem solid var(--color-border);
  border-radius: calc(5 / 16 * 1.6rem);
  background: var(---, linear-gradient(180deg, #fff 74.52%, #ececec 100%));
  transition: color var(--transition), background var(--transition);
}
.mv_pagelink_itm a {
  position: relative;
  display: flex;
  height: 7rem;
  justify-content: center;
  align-items: center;
  padding: 0 1.6rem;
}

.mv_pagelink_itm a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--color-main);
  -webkit-mask-image: url(../../img/renewal/common/icon_arrow.svg);
  mask-image: url(../../img/renewal/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.mv_pagelink_itm.mv_pagelink_itm__arrowLower a::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (any-hover: hover) {
  .mv_pagelink_itm:hover {
    color: var(--color-white);
    background: var(--color-main);
  }
  .mv_pagelink_itm:hover span {
    color: var(--color-white);
  }

  .mv_pagelink_itm:hover a::after {
    background-color: var(--color-white);
  }
}

@media screen and (max-width: 896px) {
  .mv {
    height: 100%;
  }
  .mv_cont_txtWrap .u_pc {
    display: none !important;
  }
  .mv_cont_txtWrap .u_tbl {
    display: inline-block !important;
  }
  .mv_pagelink_lst {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .top_30th_logo {
    max-width: 104px;
  }
  .mv_slider_lst {
    aspect-ratio: 375 / 515;
  }
  .mv_cont_txtWrap {
    padding-top: 3.2rem;
  }
  .mv_cont_txt {
    padding: 0.6rem 1.6rem;
    font-size: 2rem;
  }
  .mv_pagelinkWrap {
    margin-top: 8.6rem;
  }
  .mv_pagelink_lead {
    font-size: 1.4rem;
  }
  .mv_pagelink_lst {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
  .mv_pagelink_itm a {
    padding: 1rem 1.6rem;
  }

  .mv_cont_txtWrap .u_tbl {
    display: none !important;
  }
  .mv_cont_txtWrap .u_sp {
    display: inline-block !important;
  }
}

/*=======================
  追従リンク
  =======================*/
.text__label {
  position: fixed;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 2rem 1rem;
  right: 0;
  top: auto;
  left: auto;
  bottom: 8.5rem;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark-red);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: calc(2 / 16 * 1.6rem) 0 0 calc(2 / 16 * 1.6rem);
  cursor: pointer;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 999;
}
.text__label img {
  margin-bottom: 5px;
}
.text__label span {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}
.text__label a {
  display: flex;
  align-items: center;
  color: var(--color-white);
}

@media (any-hover: hover) {
  .text__label:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
  }
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .text__label {
    display: none;
  }
}

　
/*=======================
  買いたい・売りたい
  =======================*/
.top_sec_buy {
  padding-top: 17.2rem;
}
/* スライダータブ */
input[name=top_tab_itm] {
  display: none;
}
.top_buy_slider_tab_lst {
  width: 100%;
  max-width: 1118px;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 1.6rem;
}

.top_tab_itm {
  display: inline-block;
  width: 100%;
  max-width: 14.6rem;
  margin-left: 1.6rem;
  border-radius: calc(5/16 * 1.6rem);
  border: 1px solid var(--color-border);
  background: var(---, linear-gradient(180deg, var(--color-white) 74.52%, #ECECEC 100%));
  transition: var(--transition);
}
.top_tab_itm.top_tab_itm--second {
  margin-left: 0;
}
.top_tab_itm.top_tab_itm--first {
  position: relative;
  top: -0.6rem;
}
.top_tab_itm + .top_tab_itm {
  margin-left: 1.6rem;
}
.top_sec_buy input:checked + .top_tab_itm {
  background: var(--color-main);
  color: var(--color-white);
}
.top_tab_itm span {
  display: flex;
  height: 4.6rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width:896px){
  /* h2タイトルのみ個別にセンター配置 */
  .top_sec_ttl {
    text-align: center;
    width: 100%;
    margin-bottom: 1.6rem;
  }
  /* タブ群をFlexboxで2カラム配置 */
  .top_sec_buy_inr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    overflow: hidden;
    box-sizing: border-box;
  }
  /* h2タイトルを最初に配置 */
  .top_sec_ttl {
    order: -1;
    flex: 0 0 100%;
  }
  /* タブの基本設定 */
  .top_tab_itm {
    position: relative;
    margin: 0;
    width: calc(50% - 0.4rem);
    max-width: none;
    left: 0;
    top: 0;
    flex: 0 0 calc(50% - 0.4rem);
  }
  .top_tab_itm.top_tab_itm--first {
    top: 0;
  }
  /* 各タブの順序を指定して2カラム配置 */
  .top_tab_itm.top_tab_itm--second { order: 1; }  /* 一戸建て - 1行目左 */
  .top_tab_itm.top_tab_itm--first { order: 2; }   /* 土地 - 1行目右 */
  .top_tab_itm.top_tab_itm--last { order: 3; }    /* 分譲宅地 - 2行目左 */
  .top_tab_itm.top_tab_itm--3rd { order: 4; }     /* マンション - 2行目右 */
  .top_tab_itm.top_tab_itm--4th { order: 5; }     /* 店舗・事務所 - 3行目左 */
  .top_tab_itm.top_tab_itm--5th { order: 6; }     /* 倉庫・作業所 - 3行目右 */
  .top_tab_itm.top_tab_itm--6th {
    order: 7; 
    flex: 0 0 calc(50% - 0.4rem);
    margin: 0 auto;
  } /* 収益物件 - 4行目中央 */
  
  /* スライダーコンテンツは最後に配置 */
  .top_buy_sliderWrap {
    order: 100;
    flex: 0 0 100%;
    display: none;
    margin-top: 1.6rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  /* スライダー内部の幅制御 */
  .top_buy_sliderWrap .swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  /* スライド要素の幅制御 */
  .top_buy_sliderWrap .swiper-slide {
    box-sizing: border-box;
    max-width: 100%;
  }
  
  /* ボタンも最後に配置 */
  .g_btn {
    order: 200;
    flex: 0 0 100%;
    margin-top: 1.6rem;
  }
}

/* スライダー本体 */
.top_buy_sliderWrap {
  display: none;
  margin-top: 1.6rem;
  padding: 1.6rem;
  border-radius: calc(10/16 * 1.6rem);
  background-color: var(--color-grey-02);
  overflow: visible;
}

#tab01:checked~#tab01_content,
#tab02:checked~#tab02_content,
#tab03:checked~#tab03_content,
#tab04:checked~#tab04_content,
#tab05:checked~#tab05_content,
#tab06:checked~#tab06_content,
#tab07:checked~#tab07_content {
  display: block
}

.top_buy_slider_itm {
  background-color: var(--color-white);
  border-radius: calc(5/16 * 1.6rem);
  overflow: hidden;
}
.top_buy_slider_itm--nobg{
  background: unset;

}
.top_buy_slider_itm_cont {
  position: relative;
  padding: 1.6rem 2.6rem 2.8rem 1.6rem;
}
.top_buy_slider_itm_cont::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height:1.2rem;
  bottom: 1.6rem;
  bottom: 1.6rem;
  right: 1.6rem;
  -webkit-mask-image: url(../../img/renewal/common/icon_tab.svg);
          mask-image: url(../../img/renewal/common/icon_tab.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-main);
}
.top_buy_slider_itm_img img {
  aspect-ratio: 268 / 180;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_buy_slider_itm_ttl {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: calc(0.56/16 * 1.6rem);
}
.top_buy_slider_itm_price {
  margin-top: 0.8rem;
  display: flex;
  align-items: end;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(0.88/16 * 1.6rem);
}
.top_buy_slider_itm_price_num {
  color: var(--color-red);
  font-size: 2.2rem;
  font-family: var(--font-en);
}
.top_buy_slider_itm_price_yen {
  font-family: var(--font-en);
  font-size: 1.4rem;
}
.top_buy_slider_itm_txt {
  font-size: 1.2rem;
}
.top_buy_slider_itm_sale_img{
  max-width: 670px;
}
.swiper-button-prev.js_slider_arrow__prev,
.swiper-button-next.js_slider_arrow__next {
  width: 1.2rem;
  height: 2.2rem;
  color: var(--color-main);
  background-image: unset;
  background-image: unset;
}
.swiper-button-prev.js_slider_arrow__prev {
  left: -2.2rem;
}
.swiper-button-next.js_slider_arrow__next {
  right: -2.2rem;
}
.swiper-button-prev.js_slider_arrow__prev::after,
.swiper-button-next.js_slider_arrow__next::after {
  position: absolute;
  font-size: unset;
}

@media (any-hover: hover) {
  .top_buy_slider_tab_itm > *:hover {
    background: var(--color-main);
    color: var(--color-white);
  }
}

@media screen and (max-width:896px){
  .top_sec_buy {
    padding-top: 8rem !important;
  }
  .top_buy_slider_tab_lst {
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2,1fr);
    gap: 1.2rem 1.6rem;
  }
  .swiper-button-prev.js_slider_arrow__prev {
    left: 0;
  }
  .swiper-button-next.js_slider_arrow__next {
    right: 0;
  }
  .top_buy_slider_tab_itm > * {
    height: 4rem;
  }
}

@media screen and (max-width:576px){
  .top_buy_slider_tab_lst {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }
  .top_buy_slider {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1,1fr);
  }
  .top_buy_sliderWrap {
    width: 86.5%;
  }
  .top_buy_slider_itm_ttl {
    margin-top: 0;
  }
  .top_buy_slider_itm_img img {
    aspect-ratio: 258 / 180;
  }
}



/*=======================
  お探しの方へ
  =======================*/
.top_newBuilt_link_lst {
  width: 53%;
  max-width: 616px;
}
.top_newBuilt_txtWrap .top_sec_ttl {
  padding-bottom: 2.4rem;
}
/*=======================
  借りたい
  =======================*/
.top_bsl_link_lst {
  width: 53%;
  max-width: 616px;
  flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 1.6rem auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
}
.top_bsl_link_lst > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.top_bsl_link_lst > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.top_bsl_link_lst > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.top_bsl_link_lst > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.top_newBuilt_link_itm__lg,
.top_bsl_link_itm__lg {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2 / 1 / 3 / 3;
}
.top_newBuilt_link_itm a,
.top_bsl_link_itm a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 450 / 130;
}
.top_newBuilt_link_itm a::before,
.top_bsl_link_itm a::before {
  -webkit-mask-image: url(../../img/renewal/common/icon_arrow.svg);
  mask-image: url(../../img/renewal/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 1.6rem;
  height: 1.6rem;
  right: 2.2rem;
  bottom: 2.2rem;
  background-color: var(--color-white);
  z-index: 1;
}
.top_newBuilt_link_itm.top_newBuilt_link_itm__tab a::before,
.top_bsl_link_itm.top_bsl_link_itm__tab a::before {
  -webkit-mask-image: url(../../img/renewal/common/icon_tab.svg);
  mask-image: url(../../img/renewal/common/icon_tab.svg);
}
.top_newBuilt_link_itm picture,
.top_bsl_link_itm picture {
  border-radius: calc(5 / 16 * 1.6rem);
}
.top_newBuilt_link_itm_ttl,
.top_bsl_link_itm_ttl {
  position: absolute;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: calc(0.2 / 16 * 1.6rem);
}
.top_newBuilt_txtWrap,
.top_bsl_txtWrap {
  width: 43%;
}
.top_bsl_txtWrap .top_sec_ttl {
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid var(--color-main);
}
.top_newBuilt_txt_itm,
.top_bsl_txt_itm {
  padding-left: 3rem;
}
.top_newBuilt_txt_itm::before,
.top_bsl_txt_itm::before {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: calc(5 / 16 * 1.6rem);
  left: 0;
  margin-block: auto;
  background-image: url(../../img/renewal/common/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 896px) {
  .top_newBuilt_link_lst,
  .top_bsl_link_lst {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .top_newBuilt_link_itm + .top_newBuilt_link_itm,
  .top_bsl_link_itm + .top_bsl_link_itm {
    margin-top: 1rem;
  }
  .top_newBuilt_txtWrap,
  .top_bsl_txtWrap {
    width: 100%;
  }
  .top_newBuilt_link_itm a,
  .top_bsl_link_itm a {
    aspect-ratio: unset;
  }
  .top_newBuilt_link_itm_ttl,
  .top_bsl_link_itm_ttl {
    font-size: 1.6rem;
  }
}

/*=======================
  資産活用
  =======================*/
.top_sec_asset {
  position: relative;
  margin-top: 8rem;
  padding: 6.4rem 0;
}
.top_sec_asset_cont {
  position: relative;
}
.top_asset_lst {
  max-width: 1152px;
  margin-inline: auto;
}
.top_asset_itm a {
  position: relative;
  display: block;
  padding: 1.8rem 1rem 3.6rem;
  border: 0.1rem solid var(--color-border);
  border-radius: calc(10 / 16 * 1.6rem);
  background-color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: calc(0.4 / 16 * 1.6rem);
  aspect-ratio: 270 / 230;
  transition: var(--transition);
}
.top_asset_itm a::before {
  content: "";
  display: block;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 250 / 100;
  margin: 0 auto 0.4rem;
}
.top_asset_itm:nth-child(1) a:before {
  background-image: url(../../img/renewal/top/top_asset_01.svg);
}
.top_asset_itm:nth-child(2) a:before {
  background-image: url(../../img/renewal/top/top_asset_02.svg);
}
.top_asset_itm:nth-child(3) a:before {
  background-image: url(../../img/renewal/top/top_asset_03.svg);
}
.top_asset_itm:nth-child(4) a:before {
  background-image: url(../../img/renewal/top/top_asset_04.svg);
}
.top_asset_itm a::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  margin-inline: auto;
  bottom: 1.8rem;
  right: 1rem;
  -webkit-mask-image: url(../../img/renewal/common/icon_arrow.svg);
  mask-image: url(../../img/renewal/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-main);
}

/* Asset Slider */
.asset_sliderWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
}
.asset_slider_lst {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  aspect-ratio: 1360 / 434;
}
.asset_slider_itm {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.asset_slider_itm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(101deg, #fff 6.38%, rgba(255, 255, 255, 0) 79.81%);
  pointer-events: none;
}
.asset_slider_itm picture {
  height: 100%;
}
.asset_slider_itm img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1369 / 434;
}

@media (any-hover: hover) {
  .top_asset_itm a:hover {
    border: 0.1rem solid var(--color-main);
  }
}

@media screen and (max-width: 896px) {
  .top_sec_asset {
    padding: 4rem 0;
  }
  .top_asset_itm {
    width: 100%;
    margin-inline: auto;
  }
  .top_asset_itm a {
    height: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    aspect-ratio: unset;
  }
  .top_asset_itm a::before {
    margin: 0 auto 0.8rem;
  }
  .asset_slider_itm img {
    aspect-ratio: 375 / 630;
  }
}

@media screen and (max-width: 576px) {
  .top_asset_itm {
    max-width: calc((350 / 375) * 100%);
  }
}

/*=======================
  トピックス
  =======================*/
.top_topic_itm .g_zoom_img {
  border: 0.1rem solid var(--color-border);
  border-radius: calc(5 / 16 * 1.6rem);
}
.top_topic_itm .g_zoom_img img {
  aspect-ratio: 264 / 120;
}

/*=======================
  バナーリスト
  =======================*/
.top_bnr_lst {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}
.top_bnr_itm .g_zoom_img {
  border-radius: calc(5 / 16 * 1.6rem);
}

@media screen and (max-width: 576px) {
  .top_bnr_lst {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
/*=======================
  ビルトのnote
  =======================*/
.top_note_cont {
  max-width: 774px;
  margin-inline: auto;
  border-radius: calc(5 / 16 * 1.6rem);
  border: 0.1rem solid var(--color-border);
}
.top_note_lnk {
  display: flex;
  align-items: center;
  gap: 6.4rem;
  padding: 4rem 6.4rem;
  transition: var(--transition);
}
.top_note_lnk::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  right: 2.2rem;
  bottom: 2.2rem;
  margin-inline: auto;
  -webkit-mask-image: url(../../img/renewal/common/icon_arrow.svg);
  mask-image: url(../../img/renewal/common/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-main);
}

@media (any-hover: hover) {
  .top_note_lnk:hover {
    color: var(--color-main);
  }
}

@media screen and (max-width: 576px) {
  .top_note_lnk {
    flex-direction: column-reverse;
    gap: 2.4rem;
    padding: 4rem 3.2rem;
  }
}

/*=======================
  お知らせ
  =======================*/
.top_news_cont {
  display: flex;
  gap: 16.6rem;
}
.top_sec_ttl + div {
  width: 100%;
}
.top_news_itm {
  border-top: 0.1rem solid var(--color-border);
}
.top_news_itm:last-child {
  border-bottom: 0.1rem solid var(--color-border);
}
.top_news_itm a {
  display: block;
  padding: 0.8rem 0;
  transition: var(--transition);
}
.top_news_itm_data {
  color: var(--color-grey);
}
.top_news_itm_txt {
  padding-left: 29.4rem;
}

@media (any-hover: hover) {
  .top_news_itm a:hover .top_news_itm_txt {
    color: var(--color-main);
  }
}

@media screen and (max-width: 896px) {
  .top_news_cont {
    flex-direction: column;
    gap: 3.2rem;
  }
  .top_news_itm {
    padding: 1rem 0;
  }
  .top_news_itm_txt {
    margin-top: 0.4rem;
    padding-left: 0;
  }
}
/*=======================
  30周年
  =======================*/
.top_sec_30th {
  width: 100%;
  height: 100%;
  margin-top: 8rem;
  padding: 12rem;
  background-image: url(../../img/renewal/top/top_30th_bg_01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.top_30th_txtWrap {
  line-height: 2;
}

@media screen and (max-width: 576px) {
  .top_sec_30th {
    padding: 8rem 0;
    background-image: url(../../img/renewal/top/top_30th_bg_01_sp.jpg);
  }
}

/*=======================
  お問い合わせ
  =======================*/
.top_sec_contact {
  padding: 5.4rem 0;
  background-color: var(--color-main);
}
.top_contact_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  line-height: 1;
}
.top_contact_ttl::before {
  content: "";
  width: 3rem;
  height: 2.3rem;
  margin-bottom: 1.6rem;
  background-image: url(../../img/renewal/common/icon_contact.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.top_contact_ttl_sub {
  font-size: 2.2rem;
  text-transform: uppercase;
}
.top_contact_ttl_main {
  margin-top: 1.2rem;
  font-size: 2.8rem;
  font-weight: 700;
}
.top_contact_lst {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}
.g_btn.top_contact_btn {
  width: 100%;
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-white);
}
.g_btn.top_contact_btn .u_ic::after {
  background-color: var(--color-text);
}
.g_btn.top_contact_btn > * {
  height: 7.2rem;
  padding: 0 2.6rem 0 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.65;
  transition: var(--transition);
}

.g_btn.top_contact_btn a,
.g_btn.top_contact_btn a:visited {
  color: var(--color-text);
}

@media (any-hover: hover) {
  .g_btn.top_contact_btn:hover a {
    color: var(--color-main);
  }
  .g_btn.top_contact_btn:hover .u_ic::after {
    background-color: var(--color-main);
  }
}

@media screen and (max-width: 896px) {
  .top_contact_lst {
    -ms-grid-columns: auto;
    grid-template-columns: repeat(1, auto);
    gap: 1.6rem;
  }
}

@media screen and (max-width: 576px) {
  .top_contact_ttl::before {
    margin-bottom: 1.2rem;
  }
  .top_contact_ttl_sub {
    font-size: 1.8rem;
  }
  .top_contact_ttl_main {
    font-size: 2.4rem;
  }
  .g_btn.top_contact_btn > * {
    height: 5.8rem;
  }
}

/*============================================================================================
  不動産売買
=============================================================================================*/
/* スタイル打消し */
body,
html {
  min-width: 100%;
  max-width: 100%;
}

/* contact */
input[type="text"].form__input {
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form__table input {
  box-sizing: border-box;
}

/* sale */
figure.map_img {
  margin-bottom: 41px !important;
}

/*============================================================================================
  コーポレート
=============================================================================================*/
/* スタイル打消し */
section {
  padding-top: 0;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  section {
    padding-top: 0;
    margin-top: 0;
  }
}

/* フォームレイアウト調整 */
.page-front input {
  box-sizing: border-box;
}

/*============================================================================================
  分譲
=============================================================================================*/
/* フォームレイアウト調整 */
.form input {
  box-sizing: border-box;
}

/* uタグ、strongタグのレイアウト調整 */
u {
  text-decoration: underline;
}
strong , b {
  font-weight: 700;
}