@charset "UTF-8";
label.search {
  border: 2px solid var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.1em 0.5em;
}
label.search::after {
  flex-shrink: 0;
  content: "";
  display: block;
  --size: 19px;
  width: var(--size);
  height: var(--size);
  background: url(../../dist/img/icon-search.svg) center/contain no-repeat;
}

.search-form_wrapper {
  position: relative;
}

div.search {
  width: 200px;
}
div.search button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 30px;
}
div.search label input {
  width: 150px;
}

input[type=search] {
  display: block;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.icon .text {
  font-size: 0.5625rem;
}

.btn {
  --color: var(--white);
  --bg: var(--black);
  width: fit-content;
  display: block;
  padding: 0.5em 2em;
  color: var(--color);
  background: var(--bg);
  border-radius: 10rem;
  border: 3px solid var(--black);
}

.btn.__round {
  border-radius: 10rem;
  white-space: nowrap;
}

.btn.__white {
  --color: var(--green);
  --bg: var(--white);
  border: 3px solid var(--green);
}

.hl-theme {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 991.98px) {
  .hl-theme {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991.98px) {
  .hl-theme .img img {
    height: 18px;
  }
}
.hl-theme .link {
  margin-left: auto;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
@media screen and (max-width: 991.98px) {
  .hl-theme .link {
    flex: 0 0 100%;
    font-size: 0.75rem;
  }
}
.hl-theme .sub {
  border-left: 4px solid var(--black);
  font-size: 1.25rem;
  padding-left: 1em;
  letter-spacing: 0.1rem;
  display: block;
}
@media screen and (max-width: 991.98px) {
  .hl-theme .sub {
    font-size: 1rem;
  }
}

.hl-lv01 {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5em;
}
@media screen and (max-width: 991.98px) {
  .hl-lv01 {
    font-size: 1.25rem;
  }
}

.hl-lv02 {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.8em;
}
@media screen and (max-width: 991.98px) {
  .hl-lv02 {
    font-size: 1.125rem;
  }
}

.hl-lv03 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5em;
}
@media screen and (max-width: 991.98px) {
  .hl-lv03 {
    font-size: 1rem;
  }
}

.hl-lv04 {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5em;
}
@media screen and (max-width: 991.98px) {
  .hl-lv04 {
    font-size: 0.875rem;
  }
}

.text-small00 {
  font-size: 1.125rem;
}
@media screen and (max-width: 991.98px) {
  .text-small00 {
    font-size: 1rem;
  }
}

.text-small01 {
  font-size: 1rem;
}
@media screen and (max-width: 991.98px) {
  .text-small01 {
    font-size: 0.875rem;
  }
}

.text-small02 {
  font-size: 0.875rem;
}
@media screen and (max-width: 991.98px) {
  .text-small02 {
    font-size: 0.8125rem;
  }
}

.box {
  border: 2px solid var(--black);
  border-radius: 20px;
  background: var(--white);
  padding: 20px 24px;
}

.box.__blue .hl-lv01,
.box.__blue .hl-lv02,
.box.__blue .hl-lv03,
.box.__blue .hl-lv04 {
  color: var(--blue);
}

.box.__green .hl-lv01,
.box.__green .hl-lv02,
.box.__green .hl-lv03,
.box.__green .hl-lv04 {
  color: var(--green);
}

.box.__beige .hl-lv01,
.box.__beige .hl-lv02,
.box.__beige .hl-lv03,
.box.__beige .hl-lv04 {
  color: var(--beige);
}

.box.__bg_green {
  background: var(--green);
  color: var(--white);
}
.box.__bg_green .hl-lv01,
.box.__bg_green .hl-lv02,
.box.__bg_green .hl-lv03,
.box.__bg_green .hl-lv04 {
  color: var(--white);
}

.box.__bg_lGreen {
  background: var(--lGreen);
  color: var(--black);
}
.box.__bg_lGreen .hl-lv01,
.box.__bg_lGreen .hl-lv02,
.box.__bg_lGreen .hl-lv03,
.box.__bg_lGreen .hl-lv04 {
  color: var(--black);
}

.box.__bg_lBeige {
  background: var(--lBeige);
  color: var(--black);
}
.box.__bg_lBeige .hl-lv01,
.box.__bg_lBeige .hl-lv02,
.box.__bg_lBeige .hl-lv03,
.box.__bg_lBeige .hl-lv04 {
  color: var(--black);
}

.box.__bg_beige {
  background: var(--beige);
  color: var(--black);
}
.box.__bg_beige .hl-lv01,
.box.__bg_beige .hl-lv02,
.box.__bg_beige .hl-lv03,
.box.__bg_beige .hl-lv04 {
  color: var(--black);
}

.box.__bg_black {
  background: var(--black);
  color: var(--white);
}
.box.__bg_black .hl-lv01,
.box.__bg_black .hl-lv02,
.box.__bg_black .hl-lv03,
.box.__bg_black .hl-lv04 {
  color: var(--white);
}

.box.__button {
  padding: 0.2em 1.5em;
}

.category .box .title {
  border-right: 4px solid var(--white);
  padding-right: 1em;
  margin-right: 1em;
  white-space: nowrap;
}
.category .category-wrap {
  flex-wrap: wrap;
}

a.link {
  text-decoration: underline;
}
a.link:hover {
  text-decoration: none;
}

.tag-wrap {
  display: flex;
  justify-content: center;
  gap: 5px;
}
@media screen and (max-width: 991.98px) {
  .tag-wrap {
    flex-wrap: wrap;
  }
}

.tag {
  font-size: 0.8125rem;
  font-weight: bold;
  background: var(--black);
  color: white;
  border-radius: 10rem;
  padding: 0.1em 1.25em;
  white-space: nowrap;
}
@media screen and (max-width: 991.98px) {
  .tag {
    font-size: 0.6875rem;
    padding: 0.1em 0.5em;
  }
}

.inline-b {
  display: inline-block;
}

.__blue .tag {
  background: var(--blue);
}

.__green .tag {
  background: var(--green);
}

.__beige .tag {
  background: var(--beige);
}

.back-gray {
  background-color: var(--lGray);
}

.swiper {
  max-width: 100%;
}
.swiper picture {
  display: block;
}
.swiper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.normal-slider .swiper-slide img {
  height: 420px;
  object-fit: cover;
}

.list-news {
  padding-inline: 30px;
}
@media screen and (max-width: 991.98px) {
  .list-news {
    padding-inline: 0;
  }
}
.list-news li {
  padding-block: 0.25em;
}
.list-news a {
  display: grid;
  grid-template-columns: auto 100px 1fr;
  gap: 1em;
  padding-block: 0.5em;
}
@media screen and (max-width: 991.98px) {
  .list-news a {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991.98px) {
  .list-news a .title {
    width: 100%;
  }
}
.list-news li + li {
  border-top: 1px solid var(--black);
}
.list-news .tag-box {
  padding-top: 0.2em;
}
.list-news .tag {
  display: block;
  height: fit-content;
  width: fit-content;
}
.list-news .tag.__orange {
  background: var(--orange);
}
.list-news .tag.__green {
  background: var(--green);
}
.list-news .tag.__lGreen {
  background: var(--lGreen);
}

.list-check li + li {
  margin-top: 0.5em;
}

.footer {
  background: url(../../dist/img/bg-footer.jpg) center/cover no-repeat;
}

.footer-menu .list-nav {
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 2.5em;
}
@media screen and (max-width: 991.98px) {
  .footer-menu .list-nav {
    font-size: 0.875rem;
    padding-inline: 2em;
    justify-content: flex-start;
  }
}
.footer-menu .list-nav a {
  color: var(--white);
}

.section-mv {
  position: relative;
}
.section-mv #section-mv1 {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background: url(../../dist/img/bg-mv1.jpg) center/cover no-repeat;
  clip-path: polygon(0 0, 49.5% 0, 49.5% 49.5%, 0% 98%);
  z-index: -1;
  width: 100%;
  height: 100%;
}
.section-mv #section-mv2 {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background: url(../../dist/img/bg-mv2.jpg) center/cover no-repeat;
  clip-path: polygon(50.5% 0, 100% 0, 100% 98%, 50.5% 49.5%);
  z-index: -1;
  width: 100%;
  height: 100%;
}
.section-mv #section-mv3 {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background: url(../../dist/img/bg-mv3.jpg) center/cover no-repeat;
  clip-path: polygon(50% 51%, 0% 100%, 100% 100%);
  z-index: -1;
  width: 100%;
  height: 100%;
}
.section-mv .box {
  width: fit-content;
  padding-inline: 40px;
  background: rgba(255, 255, 255, 0.83);
}
@media screen and (max-width: 991.98px) {
  .section-mv .box {
    padding: 10px;
    max-width: 250px;
  }
}
.section-mv .box.__blue {
  margin-right: auto;
}
.section-mv .box.__beige {
  margin-left: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 991.98px) {
  .section-mv .box.__beige {
    margin-top: auto;
  }
}
.section-mv .box.__green {
  margin: 0 auto;
}
.section-mv .box-wrap {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991.98px) {
  .section-mv .box-wrap {
    min-height: 450px;
  }
}

.section-service {
  background: url(../../dist/img/bg-service.jpg) center/cover no-repeat;
}
.section-service .box-bottom {
  margin-inline: auto;
}

@media screen and (max-width: 991.98px) {
  .section-information .flex {
    flex-wrap: wrap;
  }
}

.grid-service .box {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.grid-service .box .title {
  border-left: 4px solid var(--black);
  margin-left: 1em;
  padding-left: 1em;
}
.grid-service .box.__has_image {
  padding: 0;
  overflow: hidden;
}
.grid-service .box.__has_image .title {
  margin: 1em;
  line-height: 1.5em;
  font-size: 16px;
}
@media screen and (max-width: 991.98px) {
  .grid-service .box.__has_image .title {
    font-size: 14px;
  }
}

.section-on_sale .button-wrap {
  flex-wrap: wrap;
}
@media screen and (max-width: 991.98px) {
  .section-on_sale .button-wrap {
    gap: 10px 5px;
  }
}

.grid-news .box {
  padding: 10px;
}
.grid-news .box h2 {
  font-size: 1.2em;
}
.grid-news .box .date {
  font-size: 0.75rem;
}
.grid-news .box .date-wrap {
  align-items: flex-end;
}
.grid-news .box .type {
  color: var(--beige);
}
.grid-news .box .img {
  border-radius: 13px;
  overflow: hidden;
}
.grid-news .box .price {
  text-align: right;
}
.grid-news .box .price span {
  font-size: 0.7em;
}

.grid-news.grid-2 .img {
  flex: 0 0 130px;
  aspect-ratio: 130/120;
}
.grid-news.grid-2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-news.grid-2 .date {
  margin-top: auto;
}
.grid-news.grid-2 .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.grid-news.grid-2 .description {
  flex-grow: 1;
}

.grid-news a {
  display: block;
}

.section-information2 {
  background: rgba(152, 152, 152, 0.16);
}

.section-case {
  border-bottom: 7px solid var(--beige);
}

.grid-case .img {
  width: 104px;
}
.grid-case .img .text-small01 {
  white-space: nowrap;
}
.grid-case .item {
  background-color: var(--lBeige);
}
.grid-case .item:nth-child(4n-3), .grid-case .item:nth-child(4n) {
  background-color: var(--lBeige);
}
@media screen and (max-width: 991.98px) {
  .grid-case h3 {
    font-size: 1.17rem;
  }
}

@media screen and (max-width: 991.98px) {
  .company-layout {
    flex-direction: column;
  }
}
.company-layout .img {
  flex: 0 0 330px;
}
.company-layout .btn {
  min-height: 56px;
  min-width: 418px;
  display: grid;
  gap: 10px;
  justify-content: center;
  align-items: center;
  grid-template-columns: 32px 1fr;
}
@media screen and (max-width: 991.98px) {
  .company-layout .btn {
    min-width: 300px;
    margin-inline: auto;
  }
}
.company-layout .btn .text {
  text-align: center;
}
.company-layout .btn span {
  display: block;
}

.company-table {
  width: 100%;
  margin-top: 40px;
  border-collapse: separate;
  border-spacing: 0px 10px;
}
.company-table th {
  color: var(--beige);
  font-weight: bold;
  font-size: 0.9em;
  padding: 8px 20px;
  border-right: 3px solid var(--beige);
}
@media screen and (max-width: 991.98px) {
  .company-table th {
    padding: 8px 10px;
  }
}
.company-table td {
  font-size: 0.9em;
  padding: 8px 20px;
}
@media screen and (max-width: 991.98px) {
  .company-table td {
    padding: 8px 10px;
  }
}

/*KASOU*/
.page-mv h1 {
  margin: 0 auto;
}
.page-mv #company {
  background: url("../../dist/img/page/pagetop-company.png") no-repeat top center;
  background-size: cover;
}
.page-mv #business {
  background: url("../../dist/img/page/pagetop-business.png") no-repeat top center;
  background-size: cover;
}
.page-mv #estate {
  background: url("../../dist/img/page/pagetop-estate.png") no-repeat top center;
  background-size: cover;
}
.page-mv #suburb {
  background: url("../../dist/img/page/pagetop-farm.png") no-repeat top center;
  background-size: cover;
}
.page-mv #contact {
  background: url("../../dist/img/page/pagetop-contact.png") no-repeat top center;
  background-size: cover;
}
.page-mv #column {
  background: url("../../dist/img/page/pagetop-column.png") no-repeat top center;
  background-size: cover;
}

.sub-nav {
  margin-top: 8px;
}
.sub-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  .sub-nav ul {
    gap: 10px;
  }
}
.sub-nav ul li {
  padding: 15px 0;
}
.sub-nav ul li.current {
  color: var(--black);
}
.sub-nav ul li a {
  color: var(--white);
}
.sub-nav ul li a::before {
  content: url("../../dist/img/page/arrow.png");
  display: inline-block;
  margin-right: 6px;
  vertical-align: -4px;
}
@media screen and (max-width: 991.98px) {
  .sub-nav ul li {
    font-size: 13px;
  }
}

.sub-nav.company {
  background-color: var(--gray);
}

.sub-nav.business {
  background-color: var(--beige);
}

.sub-nav.estate {
  background-color: var(--blue);
}

.sub-nav.suburb {
  background-color: var(--green);
}

.kasou .company-table {
  padding: 30px 10px;
  border-top: 5px solid var(--beige);
  border-bottom: 5px solid var(--beige);
}
.kasou .company-table th {
  width: 30%;
}
.kasou .company-table td {
  width: 70%;
}

.rela {
  position: relative;
}

.greeting-layout {
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .greeting-layout .greeting {
    width: 55%;
  }
}
.greeting-layout .greeting p {
  padding-bottom: 14px;
  font-size: 0.9em;
}
@media screen and (min-width: 992px) {
  .greeting-layout .img {
    width: 450px;
    position: absolute;
    right: 0;
  }
}

.staff-ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}
@media screen and (min-width: 992px) {
  .staff-ul li img {
    width: 35%;
    border-radius: 20px;
  }
  .staff-ul li .detail {
    width: 60%;
    padding: 10px;
  }
  .staff-ul li .detail .position {
    color: var(--beige);
    margin-bottom: 10px;
  }
  .staff-ul li .detail dl {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .staff-ul li .detail dl dt {
    width: 80px;
    border-right: 2px solid var(--beige);
  }
  .staff-ul li .detail dl dd {
    padding-left: 20px;
  }
  .staff-ul li .detail dl.name {
    font-weight: bold;
  }
  .staff-ul li .detail dl.name span {
    display: inline-block;
    font-size: 0.8em;
    margin-left: 20px;
  }
}
.staff-ul dl.comment {
  margin-top: 30px;
  flex-wrap: wrap;
}
.staff-ul dl.comment dt {
  background-color: var(--beige);
  color: #fff;
  border-radius: 10px;
  padding: 2px 20px;
  border: none;
  margin-bottom: 10px;
  width: 100% !important;
}
.staff-ul dl.comment dd {
  width: 100%;
}
.staff-ul img {
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  .staff-ul.kozue img {
    width: 15%;
  }
}
@media screen and (max-width: 991.98px) {
  .staff-ul.kozue img {
    width: 50%;
    margin: 0 auto;
  }
}
.staff-ul.kozue img {
  height: auto;
}

/*business*/
.onayami-wrap {
  margin-top: 60px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background-color: var(--lBeige);
  border-radius: 20px;
  border: 2px solid #000;
}
.onayami-wrap li {
  text-align: left;
}
@media screen and (min-width: 992px) {
  .onayami-wrap > img {
    width: 35%;
  }
}
@media screen and (max-width: 991.98px) {
  .onayami-wrap {
    padding: 20px 10px;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 992px) {
  .onayami-wrap2 {
    width: 700px;
    margin-inline: auto;
  }
}
.onayami-wrap2 {
  margin-top: 60px;
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 20px;
  border: 2px solid #000;
}
@media screen and (max-width: 991.98px) {
  .onayami-wrap2 {
    padding: 30px 10px;
  }
}
.onayami-wrap2 li {
  text-align: left;
}
.onayami-wrap2 li:before {
  content: "■";
}

@media screen and (min-width: 992px) {
  .onayami-wrap3 {
    width: 500px;
    margin-inline: auto;
  }
}
.onayami-wrap3 {
  margin-top: 40px;
  text-align: center;
  padding: 30px;
  background-color: var(--green);
  border-radius: 20px;
  color: #fff;
  border: 2px solid #000;
}
@media screen and (max-width: 991.98px) {
  .onayami-wrap3 {
    padding: 30px 10px;
  }
}
.onayami-wrap3 li {
  text-align: left;
}

#reason ul li .midashi {
  display: block;
  color: var(--beige);
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
}
#reason ul li .midashi span {
  font-size: 2em;
  margin-right: 10px;
  display: inline-block;
}
#reason ul li .midashi.__blue {
  color: var(--blue);
}
#reason ul li .midashi.__green {
  color: var(--green);
}
#reason ul li .description {
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  #reason ul li .flex img {
    width: 35%;
  }
}
@media screen and (max-width: 991.98px) {
  #reason ul li .flex {
    flex-wrap: wrap;
  }
}

.office {
  flex-wrap: wrap;
}
.office li {
  width: calc(25% - var(--gap));
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .office li {
    width: calc(50% - var(--gap));
  }
}

#business-support ul {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  #business-support ul {
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  #business-support ul {
    width: 600px;
    margin: 0 auto;
  }
}
#business-support ul li {
  background-color: var(--lBeige);
  border-radius: 20px;
  padding: 0 20px 30px 20px;
  width: calc(50% - 30px);
}
@media screen and (max-width: 991.98px) {
  #business-support ul li {
    width: calc(50% - 20px);
  }
}
#business-support ul li img {
  display: block;
  margin-inline: auto;
}
#business-support ul li p {
  font-size: 0.9em;
  text-align: center;
  font-weight: bold;
  margin-inline: auto;
}

#farm-support ul {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  #farm-support ul {
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  #farm-support ul {
    width: 800px;
    margin: 0 auto;
  }
}
#farm-support ul li {
  background-color: var(--lGreen);
  border-radius: 20px;
  padding: 30px 20px 30px 20px;
  width: calc(50% - 30px);
}
@media screen and (max-width: 991.98px) {
  #farm-support ul li {
    width: 100%;
  }
}
#farm-support ul li img {
  display: block;
  margin-inline: auto;
}
#farm-support ul li h3 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.3em;
}
#farm-support ul li p {
  font-size: 0.9em;
  font-weight: bold;
  margin-inline: auto;
}

#estate-support ul {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  #estate-support ul {
    gap: 20px;
    padding-top: 0;
  }
}
#estate-support ul li {
  background-color: var(--blue);
  border-radius: 20px;
  padding: 0 10px 20px 10px;
  width: calc(33.3333333333% - 30px);
}
@media screen and (max-width: 991.98px) {
  #estate-support ul li {
    width: calc(50% - 20px);
  }
}
#estate-support ul li img {
  display: block;
  padding: 10px;
  margin-inline: auto;
}
#estate-support ul li p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-inline: auto;
}
@media screen and (max-width: 991.98px) {
  #estate-support ul li p {
    font-size: 0.9em;
  }
}

/*マーカー*/
.marker {
  background: linear-gradient(transparent 50%, rgb(201, 205, 255) 50%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s;
}

.marker.on {
  background-size: 100% 100%;
}

#estate {
  background: url("../../dist/img/page/house.jpg") no-repeat center top;
  background-size: contain;
}
@media screen and (max-width: 991.98px) {
  #estate {
    background-size: cover;
  }
}
#estate p {
  color: #fff;
}

#reform {
  background: url("../../dist/img/page/reform2.jpg") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 991.98px) {
  #reform {
    background-size: cover;
  }
}
#reform .onayami .arrow {
  margin-left: 20px;
  font-size: 1.6em;
  font-weight: bold;
  color: var(--blue);
  display: inline-block;
  vertical-align: -6px;
}
#reform .onayami .blue {
  color: var(--blue);
}

#suburb-merit {
  background: url("../../dist/img/page/suburb.jpg") no-repeat center top;
  background-size: cover;
  color: #fff;
}
#suburb-merit ul {
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 991.98px) {
  #suburb-merit ul {
    gap: 20px;
  }
}
#suburb-merit ul li {
  background-color: #fff;
  color: #000;
  padding: 70px 30px;
  border-radius: 100px;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  #suburb-merit ul li {
    width: calc(50% - 20px);
    padding: 50px 10px;
  }
}

@media screen and (min-width: 992px) {
  .arukeredo img {
    width: 140px;
    height: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 991.98px) {
  .arukeredo img {
    width: 100px;
    height: auto;
  }
}
.arukeredo img {
  display: inline-block;
}
.arukeredo {
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow_design10 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow10 {
  padding-left: 0;
}

.flow10 > li {
  list-style-type: none;
  border: 2px solid #4D9BC1;
  padding: 20px;
  border-radius: 20px;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #4D9BC1;
}

.flow10 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.flow10 > li .icon10 {
  color: #4D9BC1;
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
}

/*お問い合わせ*/
.formTable {
  margin-top: 60px;
  margin-bottom: 30px;
  width: 100%;
}
.formTable th, .formTable td {
  padding-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .formTable th, .formTable td {
    padding-bottom: 10px;
  }
}
.formTable th {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  width: 25%;
  vertical-align: top;
}
@media screen and (max-width: 991.98px) {
  .formTable th {
    display: block;
    width: 100%;
  }
}
.formTable td {
  padding-left: 20px;
}
@media screen and (max-width: 991.98px) {
  .formTable td {
    display: block;
    width: 100%;
  }
}
.formTable span.hissu {
  font-size: 12px;
  display: inline-block;
  margin-left: 10px;
  color: var(--beige);
}
.formTable input, .formTable textarea, .formTable select {
  background-color: #fff;
  width: 85%;
  border: 2px solid #000;
  padding: 6px 20px;
  font-size: 1.1rem;
  color: #000;
}
@media screen and (max-width: 991.98px) {
  .formTable input, .formTable textarea, .formTable select {
    width: 95%;
  }
}
.formTable textarea {
  height: 200px;
}

.submit input {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background-color: var(--black);
  width: 300px;
  border-radius: 50px;
  padding: 8px 10px;
}
@media screen and (max-width: 991.98px) {
  .submit input {
    width: 100%;
  }
}
.submit input {
  margin: 0 auto;
  align-items: center;
}

.kasou .link {
  margin-left: auto;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

/*ハンバーガー内*/
.js-menu .menu .list-nav li a {
  display: block;
  padding: 8px;
  border-bottom: 1px solid var(--beige);
}

.bukken .grid-news .img {
  aspect-ratio: 300/197;
}
.bukken .grid-news .title {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 2em;
}
.bukken .grid-news .date-wrap .description {
  font-size: 0.9em;
}
.bukken .grid-news .date-wrap dl {
  font-size: 0.8em;
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}
.bukken .grid-news .date-wrap dl dt {
  width: 30%;
}
.bukken .grid-news .date-wrap dl dd {
  width: 70%;
}

/*シングル*/
.single-wrap .single-inner {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}
@media screen and (max-width: 991.98px) {
  .single-wrap .single-inner {
    flex-direction: column-reverse;
  }
}
.single-wrap .single-inner .img {
  display: block;
}
@media screen and (min-width: 992px) {
  .single-wrap .single-inner .img {
    width: 76%;
  }
}
.single-wrap .single-inner .img {
  margin-top: 10px;
}
.single-wrap .single-inner .img img {
  border-radius: 20px;
}
.single-wrap .single-inner .kind {
  font-weight: bold;
  color: var(--blue);
}
.single-wrap .single-inner h2 {
  font-weight: bold;
  font-size: 2em;
}
.single-wrap .single-inner dl dt {
  font-size: 0.8em;
}
.single-wrap .single-inner dl dd {
  font-size: 2em;
  font-weight: bold;
}
.single-wrap .single-inner dl dd span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 10px;
}
.single-wrap .detail .swiper-slide img {
  object-fit: contain;
}
.single-wrap .detail table {
  font-size: 0.8em;
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  border: 1px solid var(--blue);
}
.single-wrap .detail table th, .single-wrap .detail table td {
  padding: 10px 20px;
  border: 1px solid var(--blue);
  font-weight: normal;
}
.single-wrap .detail table th {
  background-color: #E8ECFF;
}

@media screen and (max-width: 991.98px) {
  .kanren .news-wrap > div {
    width: 47%;
  }
}
@media screen and (min-width: 992px) {
  .kanren .news-wrap > div {
    width: 30%;
  }
}

.news-wrap.flex {
  flex-wrap: wrap;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mt-05 {
  margin-top: calc(var(--gap) / 2) !important;
}

.mb-05 {
  margin-bottom: calc(var(--gap) / 2) !important;
}

.mt-1 {
  margin-top: var(--gap) !important;
}

.mb-1 {
  margin-bottom: var(--gap) !important;
}

.mt-2 {
  margin-top: calc(var(--gap) * 2) !important;
}

.mb-2 {
  margin-bottom: calc(var(--gap) * 2) !important;
}

.mt-3 {
  margin-top: calc(var(--gap) * 3) !important;
}

.mb-3 {
  margin-bottom: calc(var(--gap) * 3) !important;
}

.mt-4 {
  margin-top: calc(var(--gap) * 4) !important;
}

.mb-4 {
  margin-bottom: calc(var(--gap) * 4) !important;
}

.mt-5 {
  margin-top: calc(var(--gap) * 5) !important;
}

.mb-5 {
  margin-bottom: calc(var(--gap) * 5) !important;
}

@media screen and (max-width: 991.98px) {
  .mt-0-sp {
    margin-top: 0 !important;
  }
  .mb-0-sp {
    margin-bottom: 0 !important;
  }
  .pt-0-sp {
    padding-top: 0 !important;
  }
  .pb-0-sp {
    padding-bottom: 0 !important;
  }
  .mt-05-sp {
    margin-top: calc(var(--gap) / 2) !important;
  }
  .mb-05-sp {
    margin-bottom: calc(var(--gap) / 2) !important;
  }
  .mt-1-sp {
    margin-top: var(--gap) !important;
  }
  .mb-1-sp {
    margin-bottom: var(--gap) !important;
  }
  .mt-2-sp {
    margin-top: calc(var(--gap) * 2) !important;
  }
  .mb-2-sp {
    margin-bottom: calc(var(--gap) * 2) !important;
  }
  .mt-3-sp {
    margin-top: calc(var(--gap) * 3) !important;
  }
  .mb-3-sp {
    margin-bottom: calc(var(--gap) * 3) !important;
  }
  .mt-4-sp {
    margin-top: calc(var(--gap) * 4) !important;
  }
  .mb-4-sp {
    margin-bottom: calc(var(--gap) * 4) !important;
  }
  .mt-5-sp {
    margin-top: calc(var(--gap) * 5) !important;
  }
  .mb-5-sp {
    margin-bottom: calc(var(--gap) * 5) !important;
  }
}
.mi-auto {
  margin-inline: auto;
}

.bg-white {
  background-color: var(--white);
}

.bg-black {
  background-color: var(--black);
}

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black);
}

.fw-bold {
  font-weight: bold;
}

.fw-light {
  font-weight: lighter;
}

.fw-normal {
  font-weight: normal;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

@media screen and (max-width: 991.98px) {
  .ta-center-sp {
    text-align: center;
  }
  .ta-right-sp {
    text-align: right;
  }
  .ta-left-sp {
    text-align: left;
  }
}/*# sourceMappingURL=bundle.css.map */