@charset "UTF-8";

.section {
  padding: 50px 0 70px;
}
.bg-gray {
  background: #f4f4f4;
}

.headingH2 {
  color: #fff;
  background: #00519c;
  padding: 10px;
}
.headingH2 h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.headingH3 {
  margin-bottom: 40px;
}
.headingH3 h3 {
  font-size: 30px;
  font-weight: bold;
  color: #00519c;
  text-align: center;
}
.headingH3 h3 span {
  display: inline-block;
  border-bottom: 2px solid;
  padding-bottom: 2px;
}

.headingH4 h4 {
  font-size: 24px;
  font-weight: bold;
  color: #00519c;
  text-align: center;
}


/* --------------- .KV ------------- */
#kv {
  position: relative;
}
#kv .kv-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: calc(100%*(500/1600));
}
#kv .kv-img img,
#kv .kv-txt img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.problem {
  background: #e8edf7;
  position: relative;
}
.problem .headingH3 {
  margin-bottom: 40px;
}
.problem .headingH3 h3 {
  color: #e94e4a;
  border-color: #e94e4a;
  padding-bottom: 0;
}
.problem-item {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  margin: 0 0 30px;
  padding: 20px 20px 20px 140px;
  min-height: 126px;
  font-weight: bold;
}
.problem-item:before {
  content: "";
  width: 30px;
  height: 27px;
  background: url("../img_v4/icon_boxarrow.webp")
    no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -27px;
  left: calc(50% - 15px);
  transform: rotate(180deg);
}
.problem-item ._text {
  font-size: 18px;
}
.problem-item ._text strong {
  font-size: 22px;
  color: #e94e4a;
}
.problem-item ._label {
  width: 129px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.problem-item ._label img {
  width: 100%;
  display: inline-block;
}
.problem-item ._lead {
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 10px;
}
.problem-item ._lead img {
  width: 114px;
  vertical-align: bottom;
}
.problem-solve {
  padding-top: 40px;
  text-align: center;
}
.problem-solve ._ttl {
  font-size: 50px;
  color: #004697;
}
.problem-solve ._lead {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.anchorArea {
  max-width: 1100px;
  margin: auto;
  position: relative;
  margin-bottom: 50px;
}
.anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.anchor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}
.anchor-grid .grid-map {
  position: relative;
}
.proposal-list li {
  background: #f7f7f7;
  padding: 20px;
  cursor: pointer;
}
.proposal-list li + li {
  margin-top: 20px;
}
.proposal-list li.hovered {
  background: #ccc;
}
.proposal-list li > a {
  text-decoration: none;
  color: #000;
}
.proposal-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.proposal-item .label-img {
  width: 80px;
  margin-right: 20px;
}
.proposal-item .label-ttl {
  width: calc(100% - 100px);
  font-size: 20px;
  font-weight: bold;
  padding-left: 34px;
  position: relative;
}
.proposal-item .proposal-num {
  font-family: 'Anton', sans-serif;
  font-weight: normal !important;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #004697;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  margin-right: 8px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
}

@media (min-width: 768px) {
  .problem {
    padding: 60px 0 70px;
  }
  .problem-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: -35px;
    margin-left: -35px;
  }
  .problem-grid > * {
    width: calc((100% - 105px) / 3);
    margin-left: 34.99px;
    margin-top: 35px;
  }
  .problem-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .proposal-list li > a:hover img {
    opacity: 1;
  }
  .anchor-grid > * {
    width: calc((100% - 40px)/2);
  }
  .anchor-list {
    margin-left: -40px;
  }
  .anchor-list > * {
    width: 454px;
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .headingH2 h2 {
    font-size: 26px;
  }
  .headingH3 h3 {
    font-size: 24px;
  }
  .headingH4 h4 {
    font-size: 20px;
  }

  #kv .kv-img {
    padding-top: calc(100%*(1070/720));
  }

  .problem {
    padding: 40px 0;
  }
  .problem .headingH3 h3 {
    font-size: 22px;
  }
  .problem-item {
    padding: 15px 15px 15px 130px;
    min-height: 120px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  .proposal-item .label-ttl {
    font-size: 18px;
  }
  .problem-item ._text {
    font-size: 16px;
  }
  .problem-item ._text strong {
    font-size: 20px;
  }
  .problem-item ._label {
    width: 119px;
  }
  .problem-solve {
    padding-top: 20px;
  }
  .problem-solve ._ttl {
    font-size: 22px;
  }
  .problem-solve ._lead {
    font-size: 32px;
  }

  .anchor-grid .grid-map {
    margin-bottom: 40px;
  }
  .anchor-list {
    margin-top: 30px;
  }
  .anchor-list > * + * {
    margin-top: 20px;
  }
}


.cnv {
  background: #00519c url("../img_v4/bg_dots_white.webp");
  padding: 40px 0;
}
.cnv .cnv-ttl {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-top: -20px;
  margin-bottom: 20px;
}
.cnv .cnv-wrap {
  padding: 0 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cnv .cnv-wrap > .cnv-block {
  background: #eaeff9;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
}
.cnv .cnv-wrap > .cnv-block .cnv-body {
  background: #fff;
  border-radius: 5px;
  height: 100%;
  overflow: hidden;
  padding: 20px;
}
.cnv .cnv-cap {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: #eaeff9;
  margin: -20px -20px 30px -20px;
  padding: 5px 0 10px;
}
.cnv .btn-document {
  border-bottom: 5px solid #a10808;
  height: 80px;
  width: 90%;
  margin: 0 auto;
}
.cnv .btn-estimate:before {
  content: "";
  background: url(../img_v4/icon_btn_estimate_w.webp) no-repeat;
  background-size: auto 100%;
}
.cnv .btn-document:before {
  content: "";
  background: url(../img_v4/icon_btn_document_w.webp) no-repeat;
  background-size: auto 100%;
}

@media (min-width: 768px) {
  .cnv .cnv-wrap > .cnv-block {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  .cnv .cnv-wrap {
    padding: 0 20px;
  }
  .cnv .cnv-ttl {
    font-size: 20px;
    padding: 0 20px;
  }
  .cnv .cnv-cap {
    margin: -15px -15px 20px -15px;
    font-size: 16px;
    padding: 10px 0;
  }
  .cnv .cnv-wrap > .cnv-block {
    padding: 5px;
    width: 100%;
  }
  .cnv .cnv-wrap > .cnv-block + .cnv-block {
    margin-top: 25px;
  }
  .cnv .cnv-wrap > .cnv-block .cnv-body {
    padding: 15px;
  }
  .cnv .btn-document,
  .cnv .btn-estimate {
    height: 50px;
  }
  .cnv .btn-document:before,
  .cnv .btn-estimate:before {
    left: 20px;
  }
}


.frame03 + .frame03 {
  margin-top: 40px;
}
.frame03-head {
  border-radius: 10px 10px 0 0;
  background: #00519c;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.frame03-head h3 {
  font-size: 28px;
}
.frame03-body {
  border-radius: 0 0 10px 10px;
  background: #eaeff9;
  padding: 30px;
}
.frame03-body .row {
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}
.frame03-body .row + .row {
  margin-top: 20px;
}

.heading-txt02 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.heading-txt02 strong {
  color: #e94e4a;
  font-size: 24px;
}

@media (min-width: 768px) {
  .frame03-body .row .grid02 {
    display: flex;
    align-items: center;
  }
  .frame03-body .row .grid02 .grid02_unit.w-img {
    width: 26%;
  }
  .frame03-body .row .grid02 .grid02_unit.w-text {
    width: 74%;
  }
  .frame03-body .row .grid02 .grid02_unit.w-img02 {
    width: 30%;
  }
  .frame03-body .row .grid02 .grid02_unit.w-text02 {
    width: 70%;
  }
  .frame03-head .image02 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  .img-anc02 .image02  {
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translate(-100%, -50%);
  }

  .frame03-head_label {
    position: relative;
    display: inline-block;
    padding: 0 20px;
  }

  #anc01 .frame03-head {
    background: #00519c url(../img_v4/bg_framehead_01.webp) no-repeat;
    background-position: 95% 1px;
  }
  #anc02 .frame03-head {
    background: #00519c url(../img_v4/bg_framehead_02.webp) no-repeat;
    background-position: 95% 1px;
  }
  #anc03 .frame03-head {
    background: #00519c url(../img_v4/bg_framehead_03.webp) no-repeat;
    background-position: 95% 1px;
  }
}

@media (max-width: 767px) {
  .frame03 + .frame03 {
    margin-top: 40px;
  }
  .frame03-head {
    font-size: 20px;
    padding: 17px 15px;
  }
  .frame03-head h3 {
    font-size: 20px;
  }
  .frame03-body {
    padding: 20px 10px;
  }
  .frame03-body .row {
    border-radius: 10px;
    background: #fff;
    padding: 20px;
  }
  .frame03-body .row + .row {
    margin-top: 20px;
  }
  .heading-txt02 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .heading-txt02 strong {
    font-size: 20px;
  }

  .frame03-head {
    text-align: left;
  }
  .frame03-head_label {
    position: relative;
    display: flex;
    align-items: center;
  }
  #anc01 .frame03-head_label .image02 {
    width: 60px;
  }
  #anc02 .frame03-head_label .image02 {
    width: 67px;
  }
  #anc03 .frame03-head_label .image02 {
    width: 67px;
  }
  #anc01 .frame03-head {
    background: #00519c url(../img_v4/bg_framehead_01-sp.webp) no-repeat;
    background-position: 100% 0px;
    background-size: calc(100%*(306/640)) auto;
  }
  #anc02 .frame03-head {
    background: #00519c url(../img_v4/bg_framehead_02-sp.webp) no-repeat;
    background-position: 100% 0px;
    background-size: calc(100%*(315/640)) auto;
  }
  #anc03 .frame03-head {
    background: #00519c url(../img_v4/bg_framehead_03-sp.png) no-repeat;
    background-position: 100% 0px;
    background-size: calc(100%*(352/640)) auto;
  }
}


.qa02-list {
  margin-top: 50px;
}
.qa02-list > * {
  margin-bottom: 30px;
}
.qa02-set .qa02 {
  background: none;
  border: none;
}
.qa02-set .qa02 > .qa02-q {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  background: #f4f4f4;
  padding: 15px 80px 15px 70px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
.qa02-set .qa02 > .qa02-q:before {
  background: none;
  color: #00519c;
  font-size: 30px;
  height: 36px;
  width: 30px;
  line-height: 1;
  top: calc(50% - 18px);
}
.qa02-set .qa02 > .qa02-q:after {
  color: #fff;
  background: #00519c;
  width: 60px;
  height: 100%;
  top: 0;
  right: 0;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qa02-set .qa02 > .qa02-a .qa02-a_body {
  background: #fff;
  padding: 20px 20px 5px 70px;
}
.qa02-set .qa02 > .qa02-a .qa02-a_body:before {
  background: none;
  color: #009fa7;
  font-size: 30px;
  height: 30px;
  width: 30px;
  line-height: 1;
  top: 20px;
}

@media (max-width: 767px) {
  .qa02-set .qa02 > .qa02-q {
    font-size: 16px;
    padding: 15px 50px 15px 45px;
  }
  .qa02-set .qa02 > .qa02-q:before {
    font-size: 26px;
    width: 26px;
    height: 30px;
    left: 10px;
  }
  .qa02-set .qa02 > .qa02-q:after {
    width: 40px;
  }
  .qa02-set .qa02 > .qa02-a .qa02-a_body {
    padding: 20px 20px 5px 50px;
  }
  .qa02-set .qa02 > .qa02-a .qa02-a_body:before {
    font-size: 26px;
    width: 26px;
    height: 26px;
    left: 10px;
  }
}


.list-notes,
.txt-notes,
.notes-num01 {
  color: #666666;
  font-size: 14px;
}

.font-red01 {
  color: #e94e4a !important;
}

._image {
  height: auto;
  vertical-align: top;
  width: 100%;
}

@media (min-width: 768px) {
  .wrap-s-pc {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    min-width: 1100px;
  }

  .facility-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: -40px;
  }
  .facility-grid > * {
    width: calc((100% - 71px) / 3);
    margin-right: 35px;
    margin-top: 40px;
  }
  .facility-grid > *:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  #contents {
    padding-top: 0;
  }
  .section {
    padding: 30px 0 40px;
  }

  .facility-grid > * + * {
    margin-top: 30px;
  }

  *[class*="heightLine"] {
    height: auto !important;
  }
}

.bg-blue {
  background: #eaf4ff;
  padding: 30px 60px;
}
.heightLine-cnvCap01 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 54px;
}
.m-title {
  color: #004697;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.m-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: #004697;
  width: 55px;
  height: 2px;
}

.frame04 {
  margin: auto;
}

.frame04-box {
  background: #fff;
  box-sizing: border-box;
  border: 2px solid #2774cd;
  box-shadow: 10px 10px #719ccd;
  padding: 35px 45px;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.frame04-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 55px solid transparent;
  border-left: 55px solid #6194cf;
  z-index: 100;
}
.b-inner {
  width: 100%;
}
.b-inner img {
  width: 100%;
}

.b-inner h5 {
  border-top: 1px solid #004697;
  border-bottom: 1px solid #004697;
  padding: 10px 0;
}

.b-inner ul li {
  width: 32%;
  text-align: center;
  font-size: 15px;
}

.img-box {
  box-shadow: 0 0 8px 2px rgb(0 0 0 / 7%);
}

.b-inner .b-txt {
  line-height: 1.5;
  font-weight: bold;
  margin-top: 15px;
}

.font-55 {
  font-size: 55px;
}

.frame04-box:nth-child(2) ul {
  background: url(../img_v4/w-img07.webp) 0 0 no-repeat;
  background-size: 100% auto;
  width: 340px;
  height: 112px;
}
.frame04-box:nth-child(3) ul {
  background: url(../img_v4/w-img08.webp) 0 0 no-repeat;
  background-size: 100% auto;
  width: 230px;
  height: 110px;
}
.frame04-box:nth-child(2) ul,
.frame04-box:nth-child(3) ul {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.ul02 {
  background: linear-gradient(transparent 70%, #ffef42 70%);
  padding-bottom: 0;
}

.font-43 {
  font-size: 43px;
}
.font-45 {
  font-size: 45px;
}

.btn-estimate {
  border: none;
  border-bottom: 5px solid #a10808;
  background-color: #e70012;
  color: #fff;
  height: 80px;
  width: 90%;
  margin: 0 auto;
}

.btn-estimate:hover {
  opacity: 1;
  background-color: #fb707d;
  color: #fff;
  border: none;
  border-bottom: 5px solid #a10808;
}

@media screen and (max-width: 767px) {
  .bg-blue {
    padding: 30px 15px 30px 10px;
  }
  .frame04-box {
    padding: 25px 30px;
    box-shadow: 5px 5px #719ccd;
    flex-direction: column;
    align-items: unset;
  }

  .frame04-box:nth-child(2) ul,
  .frame04-box:nth-child(3) ul {
    width: 100%;
    height: 0;
    padding-top: 43%;
    margin-top: 10px;
  }
  .frame04-box:nth-child(2) ul {
    padding-top: 32.08%;
  }
  .m-title {
    font-size: 30px;
  }

  .img-frame03-sp {
    background-color: #004697;
    padding: 20px 0;
  }
}


svg:not(:root) {
  overflow: hidden;
  position: absolute;
  top: -9.5%;
  left: 0;
}
@media screen and (max-width: 767px) {
  svg:not(:root) {
    overflow: hidden;
    position: absolute;
    top: 0;
  }
}
circle {
  background-color: transparent;
  fill: transparent;
}

.round_img {
  border: none !important;
  border-radius: 15px !important;
}

.hovered circle,
.anchor-list .hovered {
  background-color: rgba(255,255,255,0.5);
  fill: rgba(255,255,255,0.5);
}

.note-contract {
  position: absolute;
  bottom: 5px;
  right: 0;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .note-contract {
    font-size: 10px;
  }
}

@media (min-width: 768px), print {
.special {
    padding: 0px 40px;
    position: relative;
}
}
@media (max-width: 767px) {
.special {
    padding: 0;
    margin-top: 50px;
}
}
@media (min-width: 768px), print {
.special .special-step {
    display: flex;
    flex-wrap: nowrap;
    margin-left: -50px;
}
}
.special-item {
  position: relative;
}
@media (min-width: 768px), print {
.special .special-step > * {
    width: calc((100% - 150px)/3);
    margin-left: 49.99px;
}
}
@media (max-width: 767px) {
  .special .special-step > * {
      margin-bottom: 50px;
  }
  .special .special-step > *:last-child {
      margin-bottom: 20px;
  }
  .special .special-step > *:not(:last-child) {
      padding-bottom: 40px;
  }
  .special .special-step > *:not(:last-child):before {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 20px 40px 0 40px;
      border-color: #004697 transparent transparent transparent;
      position: absolute;
      bottom: 10px;
      left: calc(50% - 40px);
  }
}
@media (min-width: 768px), print {
  .special .special-step > * + * .image02 {
      position: relative;
  }
  .special .special-step > * + * .image02:before {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 40px 0 40px 20px;
      border-color: transparent transparent transparent #004697;
      position: absolute;
      top: calc(50% - 40px);
      left: -30px;
  }
}
.special-item .txt-number {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  color: #004697;
  font-family: 'Anton', sans-serif;
  font-style: italic;
  text-shadow: 2px 2px 10px #fff;
  z-index: 11;
}
@media screen and (min-width: 768px) {
.is-gutter60-pc {
    margin-right: -30px;
    margin-left: -30px;
}
}
@media screen and (min-width: 768px) {
.is-gutter60-pc > .grid01_unit {
    padding-right: 30px;
    padding-left: 30px;
}
.is-col2-pc > .grid01_unit {
    width: 50%;
    margin-bottom: 50px;
}
}
@media screen and (max-width: 767px) {
  .is-col2-pc > .grid01_unit:first-child {
    margin-bottom: 45px;
  }
}
.movie-title {
  background: #eaeff9;
  width: 50%;
  margin: 0 auto 10px;
  border-radius: 5px;
}
.movie-title p {
  text-align: center;
  padding: 8px;
}
.movie-title-02 {
  background: #eaeff9;
  width: 25%;
  margin: 0 auto 10px;
  border-radius: 5px;
}
.movie-title-02 p {
  text-align: center;
  padding: 8px;
}
@media (max-width: 767px) {
  .movie-title-02 {
    width: 50%;
  }
}
.movie-title-03 {
  margin-bottom: 10px;
}
.movie-title-03 p {
  text-align: center;
  padding: 8px;
}

.modal-close {
  background-color: #004697;
}

#movie {
  padding-bottom: 0;
}

@media (min-width: 768px) {
.u-equality-02-pc .video-box {
    margin-bottom: 50px;
    padding-right: 30px;
    padding-left: 30px;
}
}
@media (min-width: 768px) {
.u-equality-01-center-pc .video-box {
    width: 50%;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
}
}

.movie02-bus_movie a {
  position: relative;
  display: block;
  background: #000;
}
@media (min-width: 768px) {
.movie02-bus_movie a:hover {
  opacity: .5;
  text-decoration: none;
}
}

.movie02-bus_movie a::before {
  content: "デモ動画サイトへ遷移する";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: block;
  margin: auto;
  background: #00519c;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  border-bottom: 5px solid #191970;
  width: 80%;
}
@media (min-width: 768px) {
  .movie02-bus_movie a::before {
    height: 80px;
    border-radius: 35px;
    padding-top: 24px;
    padding-right: 33px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .movie02-bus_movie a::before {
    height: 50px;
    border-radius: 22px;
    padding-top: 12px;
    padding-right: 23px;
    font-size: 1rem;
  }
}

.movie02-bus_movie img {
  width: 100%;
  height: auto;
  opacity: .5;
}

.movie02-bus_movie a::after {
  font-family: "icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  content: "\e912";
  position: absolute;
  display: block;
  line-height: 1;
  color: #ffffff;
  z-index: 9;
}
@media (min-width: 768px) {
  .movie02-bus_movie a::after {
    font-size: 1.125rem;
    width: 18px;
    height: 18px;
    right: 98px;
    top: calc(50% - 9px);
  }
}
@media (max-width: 767px) {
  .movie02-bus_movie a::after {
    font-size: 1rem;
    width: 16px;
    height: 16px;
    right: 58px;
    top: calc(50% - 9px);
  }
}

.notes-row