:root {
  --primary: #8e8d5c;
  --secondary: #3c5064;
  --tertiary: #bdbda9;
  --black: #282828;
  --grayBg: #e9ebeb;
  --headline: #a9a995;
}

i {
  display: inline-block;
}

i,
em {
  font-style: normal;
}

.p-bg {
  background-image: url(../../../../../items/img/mansion/acg/stone_bg.png);
  background-size: cover;
}

.u-sec {
  padding: 10rem 0;
}
@media (max-width: 520px) {
  .u-sec {
    padding: 5rem 0;
  }
}
.u-sec__half {
  padding: 6rem 0;
}
@media (max-width: 520px) {
  .u-sec__half {
    padding: 4rem 0;
  }
}

.c-sec__ttl {
  font-size: 2.8rem;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 520px) {
  .c-sec__ttl {
    font-size: 2.2rem;
  }
}
.c-sec__ttl__line {
  width: 10rem;
  height: 1px;
  background: #a2a28e;
  margin-inline: auto;
  font-style: normal;
  margin-top: 0.5em;
}
.c-sec__ttl small {
  font-size: 0.6em;
}

.c-sec__lead {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1em;
}
@media (max-width: 520px) {
  .c-sec__lead {
    font-size: 1.6rem;
  }
}

.c-scgNav {
  background: #d7d3cb;
  padding: 5rem 0;
}
.c-scgNav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 520px) {
  .c-scgNav__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.c-scgNav__list__item {
  width: 100%;
  border-radius: 30rem;
  background: #fff;
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  align-items: center;
  gap: 1.5rem;
  transition: 0.3s;
}
.c-scgNav__list__item:hover {
  background: var(--primary);
}
.c-scgNav__list__item:hover .c-scgNav__list__txt {
  color: #fff;
}
.c-scgNav__list__item:hover .c-scgNav__list__arr::before, .c-scgNav__list__item:hover .c-scgNav__list__arr::after {
  background-color: #fff;
}
.c-scgNav__list__icon {
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 8rem;
  height: 8rem;
  border: solid 2px #fff;
}
.c-scgNav__list__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-scgNav__list__txt {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--black);
  transition: 0.3s;
  letter-spacing: 0.1em;
}
.c-scgNav__list__arr {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  transition: 3s;
}
.c-scgNav__list__arr::before, .c-scgNav__list__arr::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 1.69rem;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0.5px) 50%;
  transition: fill 0.3s ease;
}
.c-scgNav__list__arr::before {
  transform: rotate(46.25deg);
}
.c-scgNav__list__arr::after {
  transform: rotate(-46.25deg);
}

.c-cap {
  padding-block: 5rem;
  font-size: 1.3rem;
}
@media (max-width: 520px) {
  .c-cap {
    padding-block: 2.5rem;
    font-size: 1.2rem;
  }
}

.c-mv {
  height: 58rem;
  width: 100%;
  position: relative;
}
@media (max-width: 520px) {
  .c-mv {
    height: 25rem;
  }
}
.c-mv__img {
  width: 78vw;
  height: 90%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 5rem;
  overflow: hidden;
}
.c-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-mv__bg {
  width: 78vw;
  height: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 5rem 0;
  overflow: hidden;
}
.c-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-mv__txt {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  font-size: 4.5rem;
  margin-left: 10vw;
  color: var(--primary);
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 6px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 15px #fff;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-mv__txt {
    font-size: 2.2rem;
  }
}
.c-mv__txt h2 {
  font-weight: 500;
}

#contactcenter .p-contact {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
  background: rgba(212, 212, 202, 0.2);
  padding: 5rem 8rem;
  position: relative;
}
@media (max-width: 520px) {
  #contactcenter .p-contact {
    padding: 1rem 1rem 2rem;
  }
}
#contactcenter .p-contact__glid {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-rows: min-content 1fr;
  gap: 2rem;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__glid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
}
#contactcenter .p-contact__24 {
  background: #fff;
  padding: 4rem 2rem;
  border-radius: 1rem;
  grid-area: 1/1/3/2;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__24 {
    grid-area: unset;
  }
}
#contactcenter .p-contact__24__ttl {
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__24__ttl {
    font-size: 2rem;
  }
}
#contactcenter .p-contact__24__icon {
  width: 100%;
  height: auto;
  max-width: 235px;
  margin-inline: auto;
  margin-top: 1rem;
}
#contactcenter .p-contact__24__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contactcenter .p-contact__24__txt {
  font-size: 2.3rem;
  text-align: center;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__24__txt {
    font-size: 1.9rem;
  }
}
#contactcenter .p-contact__ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  border-left: 3px solid var(--primary);
  padding-left: 0.8em;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__ttl {
    border-left: none;
    text-align: center;
    position: relative;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
  #contactcenter .p-contact__ttl::after {
    content: "";
    width: 10rem;
    height: 2px;
    background: var(--primary);
    position: absolute;
    bottom: -0.5em;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#contactcenter .p-contact__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  grid-area: 2/2/3/3;
  position: relative;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__points {
    gap: 1rem;
    grid-area: unset;
  }
}
#contactcenter .p-contact__points__point {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fff;
  border-radius: 1rem;
  gap: 1em;
  padding: 1rem 2rem;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__points__point {
    gap: 1em;
    font-size: 1.4rem;
    padding: 1rem;
  }
}
#contactcenter .p-contact__points__check {
  width: 1.2em;
  height: 2em;
}
#contactcenter .p-contact__points__check img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#contactcenter .p-contact__img {
  width: 17rem;
  height: auto;
  aspect-ratio: 1/1;
  bottom: -10%;
  right: -10%;
  position: absolute;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__img {
    right: -5%;
  }
}
#contactcenter .p-contact__txt {
  margin-top: 4rem;
}
@media (max-width: 520px) {
  #contactcenter .p-contact__txt {
    padding: 0 1rem;
  }
}
#contactcenter .p-tel {
  width: 90%;
  max-width: 800px;
  margin-block: 10rem;
  margin-inline: auto;
  border: var(--primary) solid 2px;
  padding: 4rem 2rem;
}
@media (max-width: 520px) {
  #contactcenter .p-tel {
    margin-block: 5rem;
    padding: 4rem 1rem;
  }
}
#contactcenter .p-tel__ttl {
  display: flex;
  gap: 1rem;
  font-size: 2.4rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 520px) {
  #contactcenter .p-tel__ttl {
    font-size: 2rem;
  }
}
#contactcenter .p-tel__ttl__icon {
  width: 1.5em;
  height: 1.5em;
}
#contactcenter .p-tel__ttl__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#contactcenter .p-tel__number {
  display: grid;
  grid-template-columns: min-content 1fr;
  font-size: 5.8rem;
  margin-top: 2rem;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 520px) {
  #contactcenter .p-tel__number {
    font-size: 4.5rem;
  }
}
#contactcenter .p-tel__number__free {
  width: 7.5rem;
  height: auto;
}
@media (max-width: 520px) {
  #contactcenter .p-tel__number__free {
    width: 5rem;
  }
}
#contactcenter .p-tel__number__free img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#contactcenter .p-tel__number__txt {
  position: relative;
  line-height: 1;
  line-height: 1.7;
}
#contactcenter .p-tel__number__txt small {
  position: absolute;
  font-size: 0.25em;
}
#contactcenter .p-tel__number__txt small:nth-of-type(1) {
  top: 0%;
  left: 0.5em;
  transform: translate(0%, 0%);
}
#contactcenter .p-tel__number__txt small:nth-of-type(2) {
  top: 0%;
  left: calc(50% + 1em);
  transform: translate(-50%, 0%);
}
#contactcenter .p-tel__number__txt small:nth-of-type(3) {
  top: 0%;
  right: 1em;
  transform: translate(0, 0%);
}
#contactcenter .p-tel__txt {
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 520px) {
  #contactcenter .p-tel__txt {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */