@charset "utf-8";

/* --------------------------------------------------------------------
 button
-------------------------------------------------------------------- */
.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 10px;
  width: 200px;
  height: 40px;
  font-weight: bold;
  margin-block-start: 20px;
  cursor: pointer;
  transition: 0.3s;
  background-color: #00a9c9;
  background-image: linear-gradient(90deg, #00a9c9 0%, #a9d06b 100%);
}

.link-button:hover {
  opacity: 0.7;
}

/* --------------------------------------------------------------------
 secHero
-------------------------------------------------------------------- */
#secHero {
  width: 100%;
}

#secHero .bgTopBox {
  position: relative;

  & picture {
    width: 100%;
    height: auto;
  }
}

#secHero .topImgTxt {
  position: absolute;
  top: 35%;
  left: 30%;

  & h2 {
    font: 400 50px / 1.5 "Noto Serif JP", serif;
    color: #fff;
  }
}

@media (max-width: 767px) {
  #secHero .topImgTxt {
    top: 20% !important;
    left: 9%;

    & h2 {
      font-size: 23px;
    }
  }
}

/* --------------------------------------------------------------------
 secAnniversary
-------------------------------------------------------------------- */
#secAnniversary {
  padding: 75px 0 0;
}

#secAnniversary h3 {
  font-size: 40px;
  margin-block: 25px;
}

@media (max-width: 767px) {
  #secAnniversary {
    padding: 37.5px 0 0;
  }

  #secAnniversary h3 {
    font-size: 28px;
    margin-block: 25px;
  }

  #secAnniversary .col-6 img[src$=".svg"] {
    max-width: 100%;
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------
 secLocation
-------------------------------------------------------------------- */
#secLocation {
  padding: 75px 0 0;
}

#secLocation h3 {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
}

#secLocation h3::after {
  position: absolute;
  top: 0;
  left: 100%;
  margin: 0 -0.5rem;
  content: "";
  width: 2px;
  height: 140%;
  background-color: #231815;
}

#secLocation h4 {
  font-size: 21px;
  margin-block-end: 10px;
  line-height: 1;
}

@media (max-width: 768px) {
  #secLocation {
    padding: 37.5px 0 0;
  }

  #secLocation h3 {
    margin-block-end: 30px;
  }

  #secLocation h3::after {
    top: 115%;
    left: 0;
    margin: 0 -0.5rem;
    content: "";
    width: 100%;
    height: 2px;
  }
}

/* --------------------------------------------------------------------
 secEvent
-------------------------------------------------------------------- */
#secEvent {
  padding: 75px 0;
}

#secEvent h3 {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
}

#secEvent h3::after {
  position: absolute;
  top: 0;
  left: 100%;
  margin: 0 -0.5rem;
  content: "";
  width: 2px;
  height: 140%;
  background-color: #231815;
}

#secEvent h4 {
  font-size: 21px;
  margin-block-end: 10px;
  line-height: 1;
}

#secEvent .eventTable {
  width: 100%;
  height: auto;
  font-size: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#secEvent .eventTable table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#secEvent .eventTable table th,
#secEvent .eventTable table td {
  position: relative;
  vertical-align: middle;
  padding: 10px;
  border: 1px solid #000;
  color: #000;
  text-align: justify;
  white-space: nowrap;
}

#secEvent .eventTable table td a {
  position: relative;
}

#secEvent .eventTable table td a[target="_blank"]::after {
  position: absolute;
  top: 0;
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  padding-left: 0.5em;
}

#secEvent .eventTable table th {
  background: #eaeaea;
}

@media (min-width: 768px) {
  #secEvent .eventTable {
    overflow-y: auto;
    height: 300px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
  }

  #secEvent .eventTable .sticky {
    position: sticky;
    top: 0;
    left: 0;
    border-top: none;
  }

  #secEvent .eventTable .sticky::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: #ccc;
    z-index: -1;
  }
}

@media (max-width: 768px) {
  #secEvent {
    padding: 37.5px 0;
  }

  #secEvent h3 {
    margin-block-end: 30px;
  }

  #secEvent h3::after {
    top: 115%;
    left: 0;
    margin: 0 -0.5rem;
    content: "";
    width: 100%;
    height: 2px;
  }
}

/* --------------------------------------------------------------------
 secSupport
-------------------------------------------------------------------- */
#secSupport {
  padding: 75px 0;
  background-color: #e6f4f6;
}

#secSupport h3 {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  line-height: 1;
}

#secSupport h3::after {
  position: absolute;
  top: 0;
  left: 100%;
  margin: 0 -0.5rem;
  content: "";
  width: 2px;
  height: 110%;
  background-color: #231815;
}

#secSupport h4 {
  font-size: 21px;
  margin-block-end: 10px;
  line-height: 1;
}

#secSupport h5 {
  font-size: 20px;
  margin-block: 30px 10px;
  line-height: 1;
}

#secSupport .col-5 img {
  display: block;
  max-width: 70%;
  margin: 0 auto;
}

#secSupport a {
  position: relative;
}

#secSupport a[target="_blank"]::after {
  position: absolute;
  top: 0;
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  padding-left: 0.5em;
}

#secSupport a.link-button[target="_blank"]::after {
  content: "";
}

#secSupport a[target="_blank"]::after img {
  content: "" !important;
}

@media screen and (max-width: 767px) {
  #secSupport {
    padding: 37.5px 0;
  }

  #secSupport h3 {
    margin-block-end: 30px;
  }

  #secSupport h5 {
    line-height: 1.5;
  }

  #secSupport h3::after {
    top: 135%;
    left: 0;
    margin: -15px -0.5rem;
    content: "";
    width: 100%;
    height: 2px;
  }

  #secSupport .col-3 img {
    display: block;
    max-width: 70%;
    margin: 20px auto 0;
  }

  #secSupport .col-5 img {
    display: block;
    max-width: 100%;
    margin: 20px auto 0;
  }
}

/* --------------------------------------------------------------------
 secHousing
-------------------------------------------------------------------- */
#secHousing {
  padding: 75px 0;
}

#secHousing h3 {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  line-height: 1;
}

#secHousing h3::after {
  position: absolute;
  top: 0;
  left: 100%;
  margin: 0 -0.5rem;
  content: "";
  width: 2px;
  height: 210%;
  background-color: #231815;
}

#secHousing h4 {
  font-size: 21px;
  margin-block-end: 10px;
  line-height: 1;
}

#secHousing .list_modelHouse {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#secHousing .list_modelHouse li {
  list-style: none;
  width: calc(100% / 3 - 20px);
}

#secHousing .list_modelHouse .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#secHousing .list_modelHouse .img {
  aspect-ratio: 6 / 4;
  margin: 0 0 1.25em;
}

#secHousing .list_modelHouse .ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0.5em;
  color: #003a57;
}

#secHousing .list_modelHouse .tel {
  margin: 0 0 1em;
}

#secHousing .list_modelHouse .kids {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 5px;
}

#secHousing .list_modelHouse .kids span {
  min-width: 130px;
  color: #fff;
  font-size: 0.87em;
  line-height: 2;
  text-align: center;
  padding: 0 1em;
  margin: 0 5px 5px 0;
  background-color: #003a57;
}

#secHousing .list_modelHouse .point {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1em;
}

#secHousing .list_modelHouse .point span {
  font-size: 0.75em;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0 0.75em;
  margin: 0 5px 5px 0;
  border-radius: 10px;
  background-color: #f3f3f3;
}

#secHousing .list_modelHouse .link {
  display: flex;
  justify-content: space-between;
}

#secHousing .list_modelHouse .link a {
  display: block;
  width: 48.5%;
  padding: 0.75em;
  font-size: 1.12em;
  font-weight: 700;
  text-align: center;
}

#secHousing .list_modelHouse .link a.detail {
  border: 1px solid #003a57;
}

#secHousing .list_modelHouse .link a.detail:hover {
  background-color: rgba(0, 169, 201, 0.1);
}

#secHousing .list_modelHouse .link a.detail span {
  background-image: url(../images/common/icon_search_navy.svg);
}

#secHousing .list_modelHouse .link a.reserve {
  background-color: #00a9c9;
  border: 1px solid #00a9c9;
}

#secHousing .list_modelHouse .link a.reserve:hover {
  background-color: rgba(0, 169, 201, 0.8);
}

#secHousing .list_modelHouse .link a.reserve span {
  background-image: url(../images/common/icon_house_white.svg);
  color: #fff;
}

#secHousing .list_modelHouse .link a span {
  display: inline-block;
  padding: 0 0 0 25px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: 22px 22px;
  transition: 0.4s;
}

@media screen and (max-width: 767px) {
  #secHousing {
    padding: 37.5px 0;
  }

  #secHousing h3 {
    margin-block-end: 30px;
  }

  #secHousing h3::after {
    top: 125%;
    left: 0;
    margin: 0 -0.5rem;
    content: "";
    width: 100%;
    height: 2px;
  }

  #secHousing .list_modelHouse {
    gap: 50px;
  }

  #secHousing .list_modelHouse li {
    width: 100%;
  }

  #secHousing .list_modelHouse .ttl {
    font-size: 1.5em;
  }

  #secHousing .list_modelHouse .kids span {
    min-width: 0;
  }

  #secHousing .list_modelHouse .link a {
    font-size: 1em;
  }

  #secHousing .list_modelHouse .link a span {
    padding: 0 0 0 20px;
    background-size: 18px 18px;
  }
}

/* --------------------------------------------------------------------
 secLnad_House
-------------------------------------------------------------------- */
#secLnad_House {
  padding: 75px 0 0;
  background-color: #e5e5e5;
}

#secLnad_House h3 {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  line-height: 1;
}

#secLnad_House h3::after {
  position: absolute;
  top: 0;
  left: 100%;
  margin: 0 -0.5rem;
  content: "";
  width: 2px;
  height: 210%;
  background-color: #231815;
}

#secLnad_House h4 {
  font-size: 21px;
  margin-block-end: 10px;
  line-height: 1;
}

#secLnad_House .estate {
  display: flex;
  justify-content: space-between;
}

#secLnad_House .estate a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50%);
  padding: 40px 0;
  aspect-ratio: 6 / 2;
}

#secLnad_House .estate a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00a9c9;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s;
}

#secLnad_House .estate a.land {
  background: url(../images/common/bg_land.jpg) no-repeat center/cover;
}

#secLnad_House .estate a.build {
  background: url(../images/common/bg_build.jpg) no-repeat center/cover;
}

#secLnad_House .estate a:hover::before {
  opacity: 0.2;
}

#secLnad_House .estate a:hover .arrow {
  background-color: #00a9c9;
}

#secLnad_House .estate a:hover .arrow::after {
  background-image: url(../images/common/arrow_button_white.svg);
}

#secLnad_House .estate div {
  text-align: center;
  position: relative;
}

#secLnad_House .estate .ttl {
  color: #fff;
  font-size: 2.12em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 0 0.5em;
}

#secLnad_House .estate .txt {
  color: #fff;
  text-align: center;
  margin: 0 0 2em;
}

#secLnad_House .estate .arrow {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 60px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}

#secLnad_House .estate .arrow::after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: url(../images/common/arrow_button_blue.svg) no-repeat center/12px 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: 0.4s;
}

@media screen and (max-width: 767px) {
  #secLnad_House {
    padding: 37.5px 0;
  }

  #secLnad_House h3 {
    margin-block-end: 30px;
  }

  #secLnad_House h3::after {
    top: 115%;
    left: 0;
    margin: 0 -0.5rem;
    content: "";
    width: 100%;
    height: 2px;
  }

  #secLnad_House .estate {
    display: block;
    width: 100%;
    margin: 30px auto 0;
  }

  #secLnad_House .estate a {
    width: 100%;
  }

  #secLnad_House .estate a.land {
    margin: 0 0 2px;
  }

  #secLnad_House .estate .ttl {
    font-size: 1.75em;
  }

  #secLnad_House .estate .txt {
    margin: 0 0 1.5em;
  }

  #secLnad_House .estate .arrow {
    width: 50px;
    height: 50px;
  }

  #secLnad_House .estate .arrow::after {
    width: 50px;
    height: 50px;
  }
}