@charset "UTF-8";
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--color-wht);
  width: 100%;
  height: var(--header_h);
}
.header-logo {
  height: 100%;
  padding: 0.5em 1.5em;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-cta {
  width: 100%;
  height: var(--header_h);
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
}
.header-cta a {
  flex: 1;
  padding: 0.5em;
  text-align: center;
  font-weight: 700;
  place-content: center;
  color: var(--color-wht);
}
.justify-center {
  justify-content: center;
}
.btn a {
  display: inline-block;
  font-weight: 700;
  background-color: var(--color-gray-dark);
  color: var(--color-wht);
  border-radius: 100vmax;
  text-decoration: none;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}
.btn.has-arw a {
  width: 100%;
  max-width: 350px;
  font-size: 1.2em;
  padding: 1em 2em;
  text-align: center;
  position: relative;
}
.btn.has-arw a::after {
  content: "\f054";
  font-family: "icomoon";
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.btn.btn-orange a {
  background-color: var(--color-secondary);
}
@media (any-hover: hover) {
  a {
    transition: all 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
  .btn.has-arw a:hover::after {
    transform: translate(5px, -50%);
  }
}
.sec-ttl {
  background-color: var(--color-primary);
  color: var(--color-wht);
  font-size: 1.7em;
  font-weight: 700;
  text-align: center;
  padding: 0.75em 0.5em;
}
.main-ttl {
  font-size: 1.4em;
  margin-bottom: 0.5em;
}
.sub-ttl {
  font-size: 1.3em;
  margin-bottom: 1em;
}
.has-fukidashi {
  display: flex;
  justify-content: center;
  gap: 0.75em;
  font-weight: 700;
  align-items: flex-end;
}
.has-fukidashi::before,
.has-fukidashi::after {
  content: "";
  display: block;
  width: 3px;
  height: 1.5em;
  border-radius: 100px;
  background-color: currentColor;
  flex-shrink: 0;
}
.has-fukidashi::before {
  transform: rotate(-10deg);
}
.has-fukidashi::after {
  transform: rotate(10deg);
}
.text {
  line-height: 2;
  margin-bottom: 2.2em;
}
.text-center {
  text-align: center;
}
.mainvisual {
  position: relative;
}
.mv {
  width: 100%;
  aspect-ratio: 1400/768;
  min-height: 400px;
  position: relative;
}
.mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
}
.catch h1 {
  font-size: 10vw;
  font-weight: 900;
}
.reco-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.reco-list-item {
  font-weight: 700;
  background-color: var(--color-wht);
  width: 120px;
  height: 120px;
  border-radius: 100vmax;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.5;
  position: relative;
}

.reco-list figure {
  margin: 1em;
}

.reco-list li:nth-of-type(odd) {
}
.reco-list-item:nth-of-type(even) {
  transform: translateY(1.5em);
}

.guide-ttl {
  padding: 0.5em 1em;
  border-radius: 10px;
  position: relative;
}
.guide-ttl::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.guide-ttl.bg-orange::before {
  background-color: var(--color-secondary);
}
.guide-ttl.bg-primary::before {
  background-color: var(--color-primary);
}
.guide-list {
  margin-bottom: 3em;
}
.guide-list-item {
  background: var(--color-wht);
  padding: 4% 5% 5%;
  border-radius: 10px;
  border: 2px solid var(--color-secondary);
  margin-bottom: 1.5em;
}
.guide-ttl.bg-primary + .guide-list .guide-list-item {
  border-color: var(--color-primary);
}

ol.guide-list {
  counter-reset: num;
}

ol.guide-list .guide-list-item {
  counter-increment: num;
}

ol.guide-list .guide-list-item::before {
  content: cadetblue;
}
ol.guide-list h4 {
  display: flex;
  gap: 0.5em;
  padding-top: 0.5em;
}
ol.guide-list h4::before {
  content: counter(num, decimal-leading-zero);
  font-size: 2em;
  line-height: 1;
  margin-top: -0.3em;
}

.notice-wrapper {
  background: var(--color-wht);
  padding: 4% 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-block: 3px solid var(--color-primary);
  margin-top: 3em;
}

.notice-list li {
  display: flex;
  gap: 0.75em;
  margin-bottom: 0.75em;
}
.notice-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  margin-top: 0.6em;
  background-color: var(--color-primary);
  flex-shrink: 0;
}
.property-list {
  display: grid;
  gap: 2.5em 5%;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 4em;
}
.property-list-item h4 span {
  font-size: 0.8em;
  display: block;
}
.property-list-item figure {
  width: 100%;
  aspect-ratio: 220/180;
  margin-bottom: 0.5em;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
}
.property-list-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-list-item .btn a {
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.cntct-wrapper {
  background-color: var(--color-wht);
  padding: 4% 5vw 5%;
  border-radius: 20px;
  border: 2px solid var(--color-primary);
  max-width: max-content;
  margin: 0 auto 2em;
}
.cntct-wrapper h3 {
  text-decoration: underline;
  text-underline-offset: -0.25em;
  text-decoration-thickness: 0.5em;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: #faf394;
}
.cntct-wrapper p {
  font-weight: 700;
  margin-bottom: 0;
}

.copyright {
  font-size: 0.85em;
  padding: 0.75em;
}
.main-footer {
  font-weight: 500;
}
.main-footer .sec-ttl {
  padding: 0;
  margin-bottom: 1em;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  justify-content: space-evenly;
}
.footer__cta {
  width: 100%;
  text-align: center;
}
span.tel a {
  display: inline-block;
  color: var(--color-point);
  font-size: 2.8em;
  font-weight: 700;
  text-decoration: none;
}
span.tel {
  display: block;
  margin: 0.5em auto 0.215em;
}
.openhours {
  display: flex;
  gap: 1em;
}
.pagetop {
  width: 4em;
  height: 4em;
  margin-bottom: 1em;
  position: sticky;
  bottom: calc(var(--header_h) + 0.5em);
  left: 95%;
  opacity: 0.8;
  z-index: 10;
  margin-top: -4em;
  transform: translateX(-50%);
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background-color: var(--color-gray-dark);
  border-radius: 5px;
  font-size: 2em;
  color: var(--color-wht);
}
@media screen and (max-width: 479px) {
  .main-footer {
    padding-bottom: var(--header_h);
  }
}
@media screen and (min-width: 480px), print {
  .main-header {
    display: flex;
    justify-content: space-between;
  }
  .header-cta {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
  }
  .header-cta a {
    min-width: 150px;
  }
  .catch h1 {
    font-size: 7vw;
  }
  .catch br {
    display: none;
  }
  .footer__cta {
    width: auto;
    min-width: 300px;
  }
  .reco-list-item {
    width: 150px;
    height: 150px;
  }
  .property-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pagetop {
    bottom: 1em;
  }
}
@media screen and (min-width: 600px), print {
  .guide-list-item {
    grid-template-columns: 75% 25%;
    grid-template-rows: auto 1fr;
    display: grid;
    gap: 0 1em;
    padding: 4% 5%;
  }
  .guide-list-item p {
    margin-bottom: 0;
  }
  .guide-list-item figure {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    place-content: center;
  }
}
@media screen and (min-width: 768px), print {
  .reco-list-item::after {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    background-color: var(--color-wht);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  .reco-list-item:first-of-type::after,
  .reco-list-item:nth-of-type(2)::after {
    transform: translate(-50%, 100%) rotate(-30deg);
    left: 75%;
    bottom: 0.7em;
  }
  .reco-list-item:nth-of-type(3)::after,
  .reco-list-item:nth-of-type(4)::after {
    transform: translate(50%, 100%) rotate(30deg);
    left: auto;
    right: 75%;
    bottom: 0.7em;
  }
  .property-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1025px), print {
  .header-logo {
    padding: 0.75em 1.5em;
  }
  .catch h1 {
    font-size: 70px;
  }
  .reco-list {
    position: relative;
  }
  .reco-list-item {
    position: absolute;
    top: -2em;
  }
  .reco-list-item:first-of-type {
    left: 0;
    top: -4em;
  }
  .reco-list-item:nth-of-type(2) {
    left: 120px;
  }

  .reco-list-item:nth-of-type(3) {
    right: 120px;
    transform: translateY(2em);
  }
  .reco-list-item:nth-of-type(4) {
    top: -4em;
    right: 0;
    transform: translateY(0);
  }
  .reco-list-item:first-of-type::after,
  .reco-list-item:nth-of-type(4)::after {
    content: none;
  }
}
