/*------------------------------------------------------------
common
------------------------------------------------------------*/
body {
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
}

#aboutus {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #5E666B;
  overflow: hidden;
  background: #fff;
  position: relative;
}

#aboutus * {
  box-sizing: border-box;
}

#aboutus *:focus {
  outline: none;
}

#aboutus a {
  color: inherit;
  transition: opacity .3s;
}

#aboutus a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#aboutus a:hover {
  text-decoration: none;
}

#aboutus a:focus-visible {
  outline: none;
}

#aboutus img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#aboutus .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#aboutus .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#aboutus .pc-br {
  display: none;
}

#aboutus .sp-br {
  display: inline;
}

#aboutus .inline-block {
  display: inline-block;
}

#aboutus .inner {
  position: relative;
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

#aboutus .font-sofia {
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 500;
  font-style: normal;
}

#aboutus .font-rounded {
  font-family: "m-plus-rounded-2c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

#aboutus .blue {
  color: #18B5EB;
}

#aboutus .main {
  position: relative;
}

#aboutus .main .content-main {
  position: absolute;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding-top: calc(100vw / 750 * 80);
}

#aboutus .main .content-main .en {
  font-size: 18px;
  font-weight: 700;
}

#aboutus .main .content-main .ja {
  font-size: 24px;
}

#aboutus .index {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(232,248,253,1) 100%);
  padding-top: 16px;
  padding-bottom: 8px;
}

#aboutus .index .ttl {
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
}

#aboutus .index .ttl::before {
  position: absolute;
  content: "";
  background: url("../images/aboutus/aboutus_index_icon_blue.svg") no-repeat center center / contain;
  width: 30px;
  height: 30px;
  left: 0;
  top: calc(50% - 15px);
}

#aboutus .index-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 315px;
  margin: 0 auto;
}

#aboutus .index-item {
  font-size: 13px;
  margin: auto 10px 8px;
}

#aboutus .content-wrap {
  position: relative;
  padding: 60px 0;
}

#aboutus .content-heading {
  position: relative;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 36px;
}

#aboutus .content-heading::before {
  position: absolute;
  content: "";
  background: url("../images/aboutus/aboutus_heading_icon_pink.svg") no-repeat center center / contain;
  width: 20px;
  height: 20px;
  top: 0;
  left: calc(50% - 10px);
}

#aboutus .content-heading .ja {
  display: block;
  font-size: 22px;
}

#aboutus .content-heading .en {
  display: block;
  font-size: 12px;
  line-height: initial;
}

#aboutus .description-txt {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

#aboutus .shadow {
  box-shadow: 0px 2px 10px 0px rgba(15, 114, 187, 0.5);
}

@media print, screen and (min-width: 768px) {
  #aboutus {
    font-size: 18px;
  }
  
  #aboutus .sp-br {
    display: none;
  }
  
  #aboutus .pc-br {
    display: inline;
  }
  
  #aboutus .main .content-main {
    padding-top: calc(100vw / 1920 * 80);
  }
  
  #aboutus .main .content-main .en {
    font-size: 24px;
  }
  
  #aboutus .main .content-main .ja {
    font-size: 46px;
  }
  
  #aboutus .index {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
  }
  
  #aboutus .index-content {
    width: 960px;
    display: flex;
    align-items: center;
  }
  
  #aboutus .index .ttl {
    margin-bottom: 0;
    padding-left: 40px;
  }
  
  #aboutus .index .ttl::before {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
  }
  
  #aboutus .index-list {
    max-width: fit-content;
    margin-left: 40px;
    margin-right: 0;
  }
  
  #aboutus .index-item {
    font-size: 18px;
    font-weight: 500;
    margin: 0 32px 0 0;
    transition: all .3s;
  }
  
  #aboutus .index-item:last-of-type {
    margin-right: auto;
  }
  
  #aboutus .content-wrap {
    padding: 120px 0;
  }
  
  #aboutus .content-heading {
    padding-top: 34px;
    margin-bottom: 72px;
  }
  
  #aboutus .content-heading::before {
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
  }
  
  #aboutus .content-heading .ja {
    font-size: 40px;
  }
  
  #aboutus .content-heading .en {
    font-size: 16px;
  }
  
  #aboutus .description-txt {
    font-size: 36px;
    margin-bottom: 80px;
  }
  
  #aboutus .shadow {
    box-shadow: 0px 4px 20px 0px rgba(15, 114, 187, 0.5);
  }
}
@media print, screen and (min-width: 1201px) {
  #aboutus .index-item:hover {
    color: #0F72BB;
  }
}

/*------------------------------------------------------------
contents
------------------------------------------------------------*/
/*----------content-top----------*/
#aboutus .content-top {
  margin: 60px auto 24px;
}

#aboutus .introduction .ttl {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
}

#aboutus .introduction-list {
  width: calc(100% - 11px);
  margin: 0 auto;
}

#aboutus .introduction-item:not(:last-of-type) {
  margin-bottom: 40px;
}

#aboutus .introduction-item .img {
  text-align: center;
}

/*----------philosophy----------*/
#aboutus .content-philosophy {
  padding: 40px 0;
}

#aboutus .content-philosophy .content-heading {
  margin-bottom: 40px;
}

#aboutus .philosophy-list {
  width: calc(100% - 11px);
  margin: 0 auto 40px;
}

#aboutus .philosophy-item:not(:last-of-type) {
  margin-bottom: 28px;
}

#aboutus .philosophy-item .ttl {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
}

#aboutus .philosophy-item .ttl .num {
  display: inline-block;
  width: 25px;
  height: 25px;
  color: #E8F8FD;
  background-color: #18B5EB;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  margin-right: 8px;
}

#aboutus .philosophy-item .txt {
  line-height: 1.6;
}

#aboutus .philosophy-img {
  text-align: center;
}

/*----------message----------*/
#aboutus .message-wrap .txt-block {
  width: calc(100% - 11px);
  margin: 0 auto;
}

#aboutus .message-wrap .ttl {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 28px;
}

#aboutus .message-wrap .name {
  text-align: right;
  font-size: 18px;
  margin: 28px auto;
}

#aboutus .message-wrap .name .post {
  display: block;
  font-size: 14px;
}

#aboutus .message-img {
  text-align: center;
}

#aboutus .message-img img {
  border-radius: 15px;
}

/*----------service----------*/
#aboutus .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50px 50px 0 0;
  padding: 20px 0;
  margin-bottom: 24px;
}

#aboutus .service-item:last-of-type {
  margin-bottom: 0;
}

#aboutus .service-item .img-block {
  position: relative;
}

#aboutus .service-item .img-block img {
  border-radius: 50%;
}

#aboutus .service-item .img-block .info {
  position: absolute;
  width: 200px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background-color: #18B5EB;
  border-radius: 8px;
  padding: 2px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

#aboutus .service-item .ttl {
  font-size: 15px;
  line-height: 1.5;
  margin: 8px auto;
}

#aboutus .service-item .txt {
  width: calc(100% - 51px);
  line-height: 1.6;
}

/*----------company----------*/
#aboutus .content-company {
  background: linear-gradient(200deg,rgba(255,255,255,.6) 25%,rgba(232,248,253,.6) 35%,rgba(226,247,235,.6) 50%,rgba(209,240,251,.6) 60%,rgba(255,255,255,.6) 80%);
  padding-bottom: 110px
}

#aboutus .table-list {
  background: #fff;
  border-radius: 30px;
  font-size: 13px;
  padding: 44px 18px;
}

#aboutus .table-list .ttl {
  padding: 16px 8px 8px;
  font-weight: 700;
}

#aboutus .table-list .txt {
  padding: 0 8px 16px;
  background-image : linear-gradient(to right, #ccc 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  line-height: 1.6;
}

#aboutus .table-list .txt .txt-item {
  line-height: 1.4;
  margin-bottom: 1.35em;
}

#aboutus .table-list .txt .txt-item:last-of-type {
  margin-bottom: 0;
}

/*#aboutus .table-list .map {
  position: relative;
  height: 0;
  padding-top: calc((120 / 300) * 100%);
  margin-top: 8px;
  overflow: hidden;
}

#aboutus .table-list .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}*/

#aboutus .map {
  aspect-ratio: 300/120;
  margin-top: 8px;
}

#aboutus .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

#aboutus .map-link {
  position: relative;
  font-size: 13px;
  text-align: right;
  padding-right: 13px;
  margin-top: 4px;
  transition: all .3s;
}

#aboutus .map-link::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 11px;
  background: url("../images/aboutus/aboutus_link_icon.svg") no-repeat center center / contain;
  right: 0;
  top: calc(50% + 2px);
  transform: translateY(-50%);
}

#aboutus .company-wrap .txt-item .link-txt {
  display: flex;
  align-items: center;
  width: fit-content;
}

#aboutus .company-wrap .txt-item .link-txt::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/aboutus/aboutus_pdf_icon.svg") no-repeat center center / contain;
}

/*----------history----------*/
#aboutus .content-history::before {
  position: absolute;
  content: "";
  width: 330px;
  height: 306px;
  background: url("../images/aboutus/aboutus_history_bg_top_sp.png") no-repeat center center / contain;
  left: 0;
  top: 26px;
}

#aboutus .content-history::after {
  position: absolute;
  content: "";
  width: 220px;
  height: 358px;
  background: url("../images/aboutus/aboutus_history_bg_bottom_sp.png") no-repeat center center / contain;
  right: 0;
  bottom: -65px;
}


/*----------access----------*/
#aboutus .content-access.content-wrap {
  padding-top: 20px;
}

#aboutus .access .content-heading {
  margin-bottom: 28px;
}

#aboutus #access-index {
  padding-top: 25px;
  margin-top: -25px;
}

#aboutus #access-index .index {
  border-radius: 25px;
  margin-bottom: 60px;
  padding: 12px;
}

#aboutus #access-index .index .ttl {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

#aboutus .access-wrapper:not(:last-of-type) {
  margin-bottom: 90px;
}

#aboutus .access-wrap {
  border-radius: 30px;
  padding: 36px 13px 44px;
}

#aboutus .access-heading {
  font-size: 20px;
  line-height: 1.5;
  padding: 0 6px;
  margin-bottom: 28px;
}

#aboutus .access-item {
  padding-top: 70px;
  margin-top: -70px;
  pointer-events: none;
}

#aboutus .access-item:first-of-type {
  padding-top: 70px;
  margin-top: -70px;
}

#aboutus .access-item:not(:last-of-type) {
  padding-bottom: 40px;
}

#aboutus .access-item .name-block {
  border-bottom: solid 1px #ccc;
  padding-bottom: 4px;
}

#aboutus .access-item .type {
  color: #6FAAD6;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
}

#aboutus #access02 .access-item .type {
  color: #D66FAA;
}

#aboutus #access03 .access-item .type {
  color: #D69B6F;
}

#aboutus .access-item .name {
  position: relative;
  font-weight: 500;
  padding-left: 28px;
}

#aboutus .access-item .name::before {
  position: absolute;
  content: "";
  background: url("../images/aboutus/aboutus_access_icon_blue.svg") no-repeat center center / contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 4px;
}

#aboutus #access02 .access-item .name::before {
  background-image: url("../images/aboutus/aboutus_access_icon_pink.svg");
}

#aboutus #access03 .access-item .name::before {
  background-image: url("../images/aboutus/aboutus_access_icon_orange.svg");
}

#aboutus .access-item .name .name-sub {
  display: block;
  font-size: 13px;
  font-weight: 400;
}

#aboutus .access-item .info {
  font-size: 13px;
  padding: 20px 0;
}

#aboutus .access-item .info .ttl {
  color: #18B5EB;
  font-weight: 500;
  padding: 8px 8px 0;
}

#aboutus .access-item .info .txt {
  padding: 8px;
  background-image: linear-gradient(to right, #ccc 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

#aboutus .access-item img {
  border-radius: 10px;
}

#aboutus .access-item .img-wrap .img {
  margin-top: 20px;
}

#aboutus .access-item .map-block {
  margin-top: 20px;
  border-bottom: solid 1px #ccc;
  padding-bottom: 12px;
  pointer-events: auto;
}

#aboutus .access-item .map {
  aspect-ratio: 325/117;
  margin-top: auto;
}

#aboutus .access-item .link-access-top {
  position: relative;
  display: flex;
  width: fit-content;
  font-size: 13px;
  padding-right: 33px;
  margin: 17px auto 17px;
  pointer-events: auto;
}

#aboutus .access-item .link-access-top::before {
  position: absolute;
  content: "";
  background: url("../images/aboutus/aboutus_access_arrow_pink_sp.svg") no-repeat center center / contain;
  width: 25px;
  height: 25px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}


@media print, screen and (min-width: 768px) {
  /*----------content-top----------*/
  #aboutus .content-top {
    margin-top: 120px;
    margin-bottom: 48px;
  }
  
  #aboutus .introduction .ttl {
    font-size: 36px;
  }
  
  #aboutus .introduction-list {
    width: 100%;
  }
  
  #aboutus .introduction-item:not(:last-of-type) {
    margin-bottom: -80px;
  }
  
  #aboutus .introduction-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
  }
  
  #aboutus .introduction-item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
  
  #aboutus .introduction-item .img {
    flex-shrink: 0;
  }
  
  #aboutus .introduction-item .txt {
    font-size: 20px;
  }
  
  /*----------philosophy----------*/
  #aboutus .content-philosophy {
    padding: 80px 0;
  }
  
  #aboutus .content-philosophy::before {
    position: absolute;
    content: "";
    width: 960px;
    height: 100%;
    background: url("../images/aboutus/aboutus_philosophy_bg_left_pc.png") no-repeat center center / contain;
    left: 0;
    top: 0;
  }

  #aboutus .content-philosophy::after {
    position: absolute;
    content: "";
    width: 960px;
    height: 100%;
    background: url("../images/aboutus/aboutus_philosophy_bg_right_pc.png") no-repeat center center / contain;
    right: 0;
    top: 0;
  }
  
  #aboutus .content-philosophy .content-heading {
    margin-bottom: 80px;
  }
  
  #aboutus .content-philosophy .description-txt {
    margin-bottom: 40px;
  }
  
  /*#aboutus .philosophy-wrap {
    display: flex;
  }*/
  
  #aboutus .philosophy-list {
    width: auto;
    margin: auto 20px auto auto;
  }
  
  #aboutus .philosophy-img {
    flex-shrink: 0;
  }
  
  #aboutus .philosophy-item:not(:last-of-type) {
    margin-bottom: 56px;
  }
  
  #aboutus .philosophy-item .ttl {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  #aboutus .philosophy-item .ttl .num {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 16px;
  }
  
  /*----------message----------*/
  #aboutus .message-wrap {
    display: flex;
  }
  
  #aboutus .message-wrap .txt-block {
    width: auto;
    margin-right: 40px;
  }
  
  #aboutus .message-wrap .ttl {
    font-size: 36px;
    margin-bottom: 56px;
  }
  
  #aboutus .message-wrap .name {
    text-align: left;
    font-size: 20px;
    margin-top: 56px;
  }
  
  #aboutus .message-wrap .name .post {
    display: inline-block;
    font-size: 18px;
    margin-right: 24px;
  }
  
  #aboutus .message-img {
    flex-shrink: 0;
  }
  
  #aboutus .message-img img {
    border-radius: 30px;
  }
  
  /*----------service----------*/
  #aboutus .service-list {
    display: flex;
    justify-content: space-between;
  }
  
  #aboutus .service-item {
    width: calc((100% - 60px) / 3);
    margin-bottom: 0;
    border-radius: 60px 60px 0px 0px;
    padding: 40px 0;
  }
  
  #aboutus .service-item .img-block .info {
    width: 260px;
    font-size: 16px;
    border-radius: 16px;
    padding: 4px;
  }
  
  #aboutus .service-item .ttl {
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  
  #aboutus .service-item .txt {
    width: calc(100% - 80px);
    font-size: 16px;
  }
  
  /*----------company----------*/
  #aboutus .content-company {
    padding-bottom: 180px
  }
  
  #aboutus .table-list {
    display: flex;
    flex-wrap: wrap;
    border-radius: 60px;
    font-size: 18px;
    padding: 72px 120px 88px;
  }
  
  #aboutus .table-list .ttl {
    width: 240px;
    border-bottom: solid 1px #18B5EB;
    padding: 24px 40px;
  }
  
  #aboutus .table-list .txt {
    width: calc(100% - 240px);
    line-height: 1.8;
    padding: 24px 40px;
  }
  
  #aboutus .table-list .txt .txt-item {
    line-height: 1.2;
    margin-bottom: 1.25em;
  }
  
  #aboutus .map-link {
    font-size: 16px;
    padding-right: 18px;
    margin-top: 8px;
  }

  #aboutus .map-link::before {
    width: 12px;
    height: 13px;
  }
  
  #aboutus .company-wrap .txt-item .link-txt::after {
    width: 30px;
    height: 30px;
    transition: all .3s;
  }
  
  /*----------history----------*/
  #aboutus .content-history::before {
    width: 612px;
    height: 612px;
    background-image: url("../images/aboutus/aboutus_history_bg_top_pc.png");
    top: 50px;
    left: auto;
    right: calc(50vw + 350px);
  }

  #aboutus .content-history::after {
    width: 716px;
    height: 716px;
    background-image: url("../images/aboutus/aboutus_history_bg_bottom_pc.png");
    bottom: -126px;
    right: auto;
    left: calc(50vw + 288px);
  }
  
  
  /*----------access----------*/
  #aboutus .content-access.content-wrap {
    padding-top: 60px;
  }
  
  #aboutus .access .content-heading {
    margin-bottom: 56px;
  }
  
  #aboutus #access-index {
    padding-top: 50px;
    margin-top: -50px;
  }
  
  #aboutus #access-index .index {
    justify-content: flex-start;
    border-radius: 50px;
    padding: 16px 0 0 100px;
    margin-bottom: 120px;
  }
  
  #aboutus #access-index .index .ttl {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  #aboutus .access:not(:last-of-type) {
    margin-bottom: 80px;
  }
  
  #aboutus .access-wrap {
    border-radius: 60px;
    padding: 72px 120px;
  }
  
  #aboutus .access-heading {
    font-size: 36px;
    padding: 0;
    margin-bottom: 32px;
  }
  
  #aboutus .access-item:not(:last-of-type) {
    padding-bottom: 56px;
  }
  
  #aboutus .access-item .name-block {
    padding-bottom: 8px;
  }
  
  #aboutus .access-item .type {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  #aboutus .access-item .name {
    font-size: 20px;
    padding-left: 40px;
  }
  
  #aboutus .access-item .name::before {
    width: 24px;
    height: 24px;
    top: 8px;
  }
  
  #aboutus .access-item .name .name-sub {
    font-size: 16px;
  }
  
  #aboutus .access-item .info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 24px;
  }
  
  #aboutus .access-item .info {
    display: flex;
    flex-wrap: wrap;
    width: 520px;
    font-size: 16px;
    margin-right: 40px;
    padding: 0;
  }
  
  #aboutus .access-item .info .ttl {
    width: 150px;
    color: inherit;
    font-weight: 400;
    border-bottom: solid 1px #18B5EB;
    padding: 8px 16px;
  }
  
  #aboutus .access-item .info .txt {
    width: calc(100% - 150px);
    line-height: 1.6;
    padding: 8px 16px;
  }
  
  #aboutus .access-item .info-block .img {
    flex-shrink: 0;
    width: calc(100% - 560px);
    max-width: 400px;
  }
  
  #aboutus .access-item img {
    border-radius: 20px;
  }
  
  #aboutus .access-item .img-wrap {
    width: 100%;
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
  }
  
  #aboutus .access-item .img-wrap .img {
    flex-shrink: initial;
    margin-top: 48px;
  }
  
  #aboutus .access-item .map-block {
    margin-top: 24px;
    padding-bottom: 8px;
  }
  
  #aboutus .access-item .map {
    aspect-ratio: 960/200;
  }
  
  #aboutus .access-item .link-access-top {
    font-size: 14px;
    margin: 12px auto 4px;
    padding-right: 34px;
  }
  
  #aboutus .access-item .link-access-top::before {
    background-image: url("../images/aboutus/aboutus_access_arrow_pink_pc.svg");
    width: 30px;
    height: 30px;
    transition: all .3s;
  }
  
  #aboutus .access-item .link-access-top::after {
    position: absolute;
    content: "";
    background: url("../images/aboutus/aboutus_access_arrow_coral_pc.svg") no-repeat center center / contain;
    width: 30px;
    height: 30px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .3s;
  }
  
  
}
@media print, screen and (min-width: 1201px) {
  #aboutus .company-wrap .txt-item .link-txt:hover {
    opacity: 0.6;
  }
  
  #aboutus .map-link:hover {
    opacity: .6;
  }
  
  #aboutus .access-item .link-access-top:hover::before {
    opacity: 0;
  }
  #aboutus .access-item .link-access-top:hover::after {
    opacity: 1;
  }
  
  
}
