@charset "utf-8";

:root {
  /* color */
  --blue_1: #6699cc;
  --blue_2: #a1c5d8;
  --blue_3: #d0e2eb;
  --blue_4: #e8f0f5;
  --blue_5: #ecf3f7;
  --blue_6: #e1ecf2;
  --blue_7: #bdd6e4;
  --orange: #ef7d36;
  --green_1: #8cc668;
  --green_2: #bcd698;
  --green_3: #eaf2de;
  --green_4: #b0c8c0;
  --green_5: #ebf3e0;
  --green_6: #e9f1dd;
  --text-color_1: #231815;
  --text-color_2: #4c4c4c;

  /* font */
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-open-sans: "Open Sans", sans-serif;

  /* animation */
  --hamburger-transition: 0.4s;
  --hover-transition: 0.5s;
  --hover-opacity: 0.7;
}

/* ------------------------------
  common(sp)
------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-color_1);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.pc {
  display: none;
}

.sp {
  display: inline-block;
}

html {
  scroll-padding-top: 70px;
}

.container {
  padding: 0 8vw;
}

.text-space {
  margin-left: 1em;
}

/* ------------------------------
  header(sp)
------------------------------ */
.header-nav-pc-wrap {
  display: none;
}

.header-nav-sub-pc-wrap {
  display: none;
}

.header {
  /* position: fixed; */
  position: sticky;
  z-index: 20;
  top: 0;
  /* left: 0; */
  width: 100%;
  height: 70px;
  background-color: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 12px;
}

.header-logo a {
  display: flex;
  justify-content: space-between;
  width: calc(100vw - 118px);
  max-width: 250px;
}

.header-logo a img:nth-of-type(1) {
  width: 60.4%;
  max-width: 140px;
  flex-shrink: 0;
}

.header-logo a img:nth-of-type(2) {
  width: 45.6%;
  max-width: 114px;
	display:none;
}

.header-btn-sp-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
}

.header-tel-sp {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.hamburger {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
}

.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 34px;
  height: 2px;
  background-color: var(--orange);
  border-radius: 1px;
  transition: var(--hamburger-transition);
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background-color: var(--orange);
  border-radius: 1px;
  transition: var(--hamburger-transition);
}

.hamburger::before {
  top: calc(50% - 10px);
}

.hamburger::after {
  top: calc(50% + 10px);
}

.nav-active .hamburger span {
  visibility: 0;
  opacity: 0;
  transition: var(--hamburger-transition);
}

.nav-active .hamburger::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: var(--hamburger-transition);
}

.nav-active .hamburger::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: var(--hamburger-transition);
}

.header-nav-sp-wrap {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  width: 100vw;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  padding: 0 0 40px 0;
  background-color: #fff;
}

.nav-active .header-nav-sp-wrap {
  opacity: 1;
  visibility: visible;
}

.header-nav-sp-1-wrap {
  background-color: var(--blue_2);
  padding: 10px 0;
}

.header-nav-sp-1 {
  max-width: 300px;
  margin-inline: auto;
  color: #fff;
}

.header-nav-sp-1 > li:not(:first-of-type) {
  border-top: dashed 1px #fff;
}

.header-nav-sp-1 > li > span,
.header-nav-sp-1 > li > a {
  display: inline-flex;
  align-items: center;
  height: 60px;
  font-size: 15px;
  font-weight: 700;
}

.header-nav-sp-1 > li > span {
  display: flex;
  justify-content: space-between;
  background: url("../images/real_estate/nav_bg_arrow.png") no-repeat right
    center / 15px auto;
}

.header-nav-sp-1-child {
  display: none;
  padding-bottom: 15px;
}

.header-nav-sp-1-child > li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-left: 15px;
}

.header-nav-sp-1-child > li:not(:first-of-type) {
  margin: 0.8em 0 0.8em 15px;
}

.header-nav-sp-1-child > li > a {
  padding: 0.5em 0;
}

.header-nav-sp-2 {
  max-width: 300px;
  margin-inline: auto;
  padding: 20px 0;
  font-size: 15px;
  color: #000;
}

.header-nav-sp-2 li {
  margin: 1em 0;
}

.header-nav-sp-2 li a {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 0;
}

.header-nav-sp-2 li a::before {
  content: "●";
  color: var(--blue_2);
  margin-right: 0.2em;
}

.header-nav-sp-2 li:not(:first-of-type) a::after {
  content: "";
  width: 13px;
  height: 10px;
  background: url("../images/real_estate/nav_bg_window_blue.svg") no-repeat
    center / 13px auto;
  margin-left: 0.5em;
}

.header-nav-sp-3 {
  max-width: 300px;
  margin-inline: auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue_2);
}

.header-nav-sp-3 li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-top: dashed 1px var(--blue_1);
  border-bottom: dashed 1px var(--blue_1);
}

.header-nav-sp-3 a {
  display: inline-block;
  padding: 0.5em 0;
}

.header-nav-sp-contents {
  width: fit-content;
  margin: 40px auto 0;
  color: var(--text-color_2);
}

.header-nav-sp-contents .tel {
  display: flex;
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.header-nav-sp-contents .tel::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("../images/real_estate/icon_tel_gray.svg") no-repeat center /
    32px auto;
  margin-right: 10px;
}

.header-nav-sp-contents p:nth-child(1) {
  font-size: 18px;
  font-weight: 700;
}

.header-nav-sp-contents p:nth-child(3) {
  font-size: 14px;
}

.header-nav-sp-contents .button-round {
  margin: 30px auto 0;
}

/* ------------------------------
  footer(sp)
------------------------------ */
.footer {
  margin-top: 40px;
  background-color: #fff;
  color: var(--text-color_2);
}

.footer-contact {
  padding: 40px 0;
}

.footer-contact-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.footer-contact-btn-list {
  width: fit-content;
  margin: 40px auto 0;
}

.footer-contact-btn-mail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 300px;
  height: 70px;
  border: solid 1px #627782;
  background-color: #fff;
  border-radius: 35px;
  font-size: 15px;
  font-weight: 700;
}

.footer-contact-btn-tell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 300px;
  height: 70px;
  border: solid 1px #627782;
  background-color: #fff;
  border-radius: 35px;
  margin-top: 25px;
  font-size: 14px;
  letter-spacing: normal;
}

.footer-contact-btn-tell span {
  display: flex;
  align-items: center;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 8px;
  transform: translateX(-6px);
  letter-spacing: 0.06em;
}

.footer-contact-btn-tell span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 2px 6px 0 0;
  background: url("../images/office/icon_tel_gray.svg") no-repeat center / cover;
}

.footer-contact-privacy {
  font-size: 15px;
  text-align: center;
  margin-top: 40px;
}

.footer-contact-banner {
  width: 100vw;
  max-width: 300px;
  margin: 50px auto 0;
}

.footer-contact-banner a {
  display: block;
}

.footer-contact-banner a:nth-child(n+2) {
  margin-top:20px;
}

.footer-sns {
  padding: 50px 0;
  background-color: #f0f1f1;
}

.footer-sns-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
}

.sns-list li {
  width: 50%;
}

.sns-list li:nth-of-type(n + 3) {
  margin-top: 35px;
}

.sns-list li:nth-of-type(odd) {
  padding-right: 25px;
}

.sns-list li:nth-of-type(even) {
  padding-left: 25px;
}

.sns-list li:nth-of-type(odd) a {
  margin-left: auto;
}

.sns-list li:nth-of-type(even) a {
  margin-right: auto;
}

.sns-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.sns-list li span {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
}

.sns-list li p {
  font-size: 14px;
}

.sns-list .instagram {
  width: 38px;
}

.sns-list .line {
  width: 42px;
}

.sns-list .youtube {
  width: 50px;
}

.footer-map {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 133%;
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-contents {
  padding: 40px 0 50px;
  background-color: #727171;
  line-height: 1.8;
  color: #fff;
}

.footer-contents-inner {
  padding: 0 8vw;
}

.footer-info-title {
  font-size: 18px;
  margin-bottom: 0.5em;
}

.footer-info-title::before {
  content: "■";
}

.footer-info-pic {
  width: 100%;
  max-width: 467px;
}

.footer-info address {
  font-size: 14px;
}

.footer-info address p:nth-of-type(1) {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1em;
}

.footer-info address p:nth-of-type(2) {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0.2em 0 0.6em;
}

.footer-info address p:nth-of-type(2) a {
  display: flex;
  align-items: center;
}

.footer-info address p:nth-of-type(2) a::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../images/real_estate/icon_tel_white.svg") no-repeat center /
    cover;
  margin: 3px 10px 0 0;
}

.footer-info .button-round {
  margin-top: 30px;
}

.footer-nav {
  display: none;
}

.pagetop {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;

  position: fixed;
  z-index: 11;
  right: 10px;
  bottom: 60px;
  display: block;
  width: 30px;
  height: 128px;
  background: url("../images/office/btn_pagetop.png") no-repeat center / 18px
    auto;
}

.pagetop {
  opacity: 0;
  visibility: hidden;
  transition: var(--hover-transition);
}

.pagetop.active {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------
  parts(sp)
------------------------------ */
.button-round {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0 55px 0 40px;
  height: 42px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background-color: var(--blue_1);
}

.button-round::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, calc(-50% - 2px));
  width: 20px;
  height: 8px;
  background: url("../images/housing/icon_arrow_white.svg") no-repeat center /
    20px auto;
}

/* ------------------------------
  フロントページ(sp)
------------------------------ */
.main {
  padding-top: 15px;
  background: linear-gradient(
    180deg,
    var(--blue_2) 0,
    var(--blue_2) 40px,
    var(--blue_6) 40px,
    var(--blue_6) 162px,
    transparent 162px,
    transparent 100%
  );
}

.page_real_estate .main {
  background: none;
}

.hero-slide {
  width: 100%;
}

.hero-slide img {
  width: 100%;
}

/* サービスのご案内_フロントページ(sp) */
.home-service {
  margin: 50px 0 0 0;
  padding: 0 0 120px 0;
  background: url("../images/real_estate/home_service_bg_sp.svg") no-repeat 50%
    76px / 413px auto;
}

.home-service-inner {
  padding: 0 8vw;
}

.home-title-main {
  display: block;
  font-weight: 700;
  text-align: center;
  font-size: 58px;
  letter-spacing: 0.1em;
  color: var(--blue_7);
}

.home-section-title .home-title-main {
  font-size: 64px;
}

.home-title-sub {
  display: block;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--blue_1);
  margin-top: 0.3em;
}

.home-section-title .home-title-sub {
  font-size: 25px;
}

.home-service-lead {
  width: fit-content;
  margin-inline: auto;
  font-size: 36px;
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue_1);
  margin-top: 55px;
}

.home-service-text-1 {
  width: fit-content;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  margin: 2em auto 0;
}

.home-service-text-2 {
  display: none;
}

.home-service .button-round {
  margin: 40px auto 0;
}

/* おすすめ不動産情報_フロントページ(sp) */
.home-reccomend {
  padding-bottom: 40px;
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 30px,
    var(--blue_6) 30px,
    var(--blue_6) 100%
  );
}

.home-reccomend .home-title-main {
  font-size: 50px;
  margin-bottom: 0.5em;
}

.home-reccomend-title {
  display: block;
  font-weight: 700;
  text-align: center;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--blue_1);
  margin-bottom: 1em;
}

.home-reccomend-title span {
  font-size: 20px;
}

.home-reccomend .button-round {
  margin: 20px auto 0;
}

.home-reccomend .reccomend-banner {
  margin-top: 40px;
  border-bottom: dashed 1px #fff;
}

.home-reccomend .reccomend-banner div {
  border-top: dashed 1px #fff;
  padding: 30px 0 40px;
}

.home-reccomend-sns-title {
  display: block;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--blue_1);
  margin: 30px 0 0.8em 0;
}

/* エクステリア_フロントページ(sp) */
.home-exterior {
  padding-top: 60px;
}

.home-exterior-title {
  margin-bottom: -50px;
}

.home-exterior .home-title-main {
  color: var(--green_2);
}

.home-exterior .home-title-sub {
  color: #fff;
}

.home-exterior-lead-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../images/real_estate/home_exterior_bg_sp.jpg") no-repeat
    center / cover;
  width: 100%;
  height: 574px;
}

.home-exterior-lead-1 img {
  display: block;
  width: 298px;
  margin-top: 160px;
}

.home-exterior-lead-2 {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-top: 1em;
}

.home-exterior-contents {
  padding-bottom: 40px;
  background-color: var(--green_3);
}

.home-exterior-text-1 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  padding-top: 1em;
}

.home-exterior-text-2 {
  font-weight: 16px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  padding: 0.2em 0 1.6em;
}

.home-exterior .button-round {
  margin: 0 auto 30px;
  background-color: var(--green_1);
}

.home-exterior-banner-title {
  font-size: 35px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  color: var(--green_4);
  margin: 40px 0 0.5em;
}

.home-exterior-banner {
  display: block;
  padding: 0 8vw;
  margin-inline: auto;
}

.home-exterior-banner img {
  width: 100%;
}

/* ニュース_フロントページ(sp) */
.home-news {
  margin-top: 60px;
  padding-bottom: 40px;
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 40px,
    var(--blue_6) 40px,
    var(--blue_6) 100%
  );
}

.home-news .home-title-sub {
  margin-top: 1em;
}

.home-news .nopost {
  margin-top: 1.5em;
  text-align:center;
  font-size:14px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.page_real_estate .news-list {
  margin: 40px auto 40px;
}

.news-list-item a {
  display: block;
}

.news-list-item-thumb {
  position: relative;
}

.news-list-item-thumb img {
  display: block;
  width: 100%;
}

.news-list-item-thumb .tag-new {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 42px;
}

.news-list-item-date {
  display: block;
  font-size: 12px;
  margin: 1.2em 0 0.5em;
  padding-bottom: 1em;
  border-bottom: solid 1px var(--text-color_2);
}

.news-list-item-title {
  font-size: 14px;
  line-height: 1.8;
}

.home-news .button-round {
  margin-inline: auto;
}

/* 保険の取り扱い(sp) */
.home-insurance {
  margin: 40px 0;
  padding: 0 8vw;
}

.home-insurance-contents {
  border: solid 3px #f0f1f1;
  padding: 30px 20px 200px;
  background: url("../images/real_estate/pic_man.png") no-repeat left 50% bottom
    30px / 172px auto;
}

.home-insurance-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 1.2em;
}

.home-insurance-text-1 {
  font-size: 14px;
  line-height: 2.2;
}

.home-insurance-list {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 1em;
}

.home-insurance-list dt::after {
  content: "：";
}

.home-insurance-list dd:not(:last-of-type)::after {
  content: "、";
}

/* ------------------------------
  サービスのご案内(sp)
------------------------------ */
.page-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 8vw);
  height: 230px;
  border-radius: 5px;
  margin: 0 auto;
  color: #fff;
}

.page-title-main {
  display: block;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  text-align: center;
}

.page-title-sub {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
  margin-top: 0.5em;
}

.service .page-title-wrap {
  background: url("../images/real_estate/service_title_bg_sp.jpg") no-repeat
    center top / cover;
}

.service .page-title-sub {
  font-size: 20px;
}

.service-button-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0 8vw;
  margin: 40px 0 0 0;
}

.service-button-list li {
  width: calc(50% - 13px);
}

.service-button-list a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 104px;
  font-size: 17px;
  font-weight: bold;
  color: var(--blue_1);
  border: solid 2px var(--blue_2);
  border-radius: 10px;
  vertical-align: bottom;
}

.service-button-list a::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: center;
  width: 20px;
  height: 8px;
  background: url("../images/real_estate/service_button_list_bg.svg") no-repeat
    center / cover;
}

.service-button-list li:nth-of-type(1) a,
.service-button-list li:nth-of-type(2) a,
.service-button-list li:nth-of-type(5) a {
  font-size: 14px;
}

.service-button-list a > span {
  display: block;
  vertical-align: baseline;
  transform: translateY(-0.4em);
  text-align: center;
}

.service-button-list span span {
  display: block;
  font-size: 20px;
  margin-top: 0.3em;
}

.service-item-wrap {
  margin-top: 30px;
}

.service-item {
  padding: 40px 8vw;
}

.service-item-title {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: var(--blue_1);
  border-bottom: solid 1px var(--blue_1);
  padding: 0 0 0.4em 0;
  margin: 0 0 30px;
}

.service-item-pic img {
  width: 100%;
  border-radius: 5px;
}

.service-item-lead {
  font-size: 24px;
  line-height: 1.8;
  font-weight: bold;
  margin: 1em 0;
}

.service-item-text {
  font-size: 14px;
  line-height: 2.2;
}

.service-item-wrap .service-item:nth-of-type(even) {
  background-color: var(--blue_5);
}

.page_service .footer {
  margin-top: 20px;
}

.service-item .reccomend-banner {
  margin-top: 40px;
  padding: 0;
}

.service-item .button-round {
  margin: 30px auto 0;
  background-color: var(--green_1);
}

.exterior-pars {
  padding: 30px;
  margin-top: 60px;
  background-color: #fff;
}

.exterior-pars-title span:nth-of-type(1) {
  display: block;
  width: fit-content;
  font-size: 15px;
  border: solid 1px #000;
  padding: 0.6em;
  margin: 0 auto;
}

.exterior-pars-title span:nth-of-type(2) {
  display: block;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  margin: 1em 0;
}

.exterior-pars-text {
  font-size: 13px;
  line-height: 2.2;
  margin-bottom: 3em;
}

.exterior-pars-pic img {
  width: 100%;
}

.exterior-pars-contact-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin: 3em 0 1em;
}

.exterior-pars-contact-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 260px;
  height: 60px;
  border: solid 1px #627782;
  background-color: #fff;
  border-radius: 9999px;
  margin-top: 25px;
  font-size: 12px;
  margin: 0 auto;
  letter-spacing: normal;
  color: var(--text-color_2);
}

.exterior-pars-contact-btn span {
  display: flex;
  align-items: center;
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.3em;
  transform: translateX(-0.2em);
}

.exterior-pars-contact-btn span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 1px 4px 0 0;
  background: url("../images/office/icon_tel_gray.svg") no-repeat center / cover;
}

/* ------------------------------
  エクステリアのご提案(sp)
------------------------------ */
.about-exterior .page-title-wrap {
  background: url("../images/real_estate/about_exterior_title_bg_sp.jpg")
    no-repeat center / cover;
}

.about-exterior-problem-inner {
  display: flex;
  gap: 0 7px;
  max-width: 305px;
  margin: 40px auto 20px;
}

.about-exterior-problem-inner > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(33% - 14px);
  height: 28px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: var(--orange);
  border-radius: 9999px;
}

.about-exterior-problem-main {
  position: relative;
  display: block;
  width: fit-content;
  font-size: 29px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
  color: var(--orange);
  margin-inline: auto;
  padding: 0 30px;
}

.about-exterior-problem-main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 70px;
  background-color: var(--orange);
  transform: rotate(-22deg);
}

.about-exterior-problem-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 70px;
  background-color: var(--orange);
  transform: rotate(22deg);
}

.about-exterior-problem-example-wrap {
  margin-top: 30px;
}

.about-exterior-problem-example {
  width: fit-content;
  margin-inline: auto;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #8999cd;
  padding-bottom: 160px;
}

.about-exterior-problem-example.example-1 {
  background: url("../images/real_estate/about_exterior_bg_1.png") no-repeat
    center bottom / 168px auto;
}

.about-exterior-problem-example.example-2 {
  background: url("../images/real_estate/about_exterior_bg_2.png") no-repeat
    center bottom / 168px auto;
}

.about-exterior-problem-example.example-3 {
  background: url("../images/real_estate/about_exterior_bg_3.png") no-repeat
    center bottom / 168px auto;
}

.about-exterior-problem-example-wrap
  .about-exterior-problem-example:nth-of-type(odd) {
  transform: translateX(-50px);
}

.about-exterior-problem-example-wrap
  .about-exterior-problem-example:nth-of-type(even) {
  transform: translateX(50px);
}

.about-exterior-consult-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  margin-top: 30px;
}

.about-exterior-consult-text::after {
  content: "";
  display: block;
  width: 86px;
  height: 28px;
  background: url("../images/real_estate/arrow_orange.svg") no-repeat center /
    cover;
  margin: 1em auto 0;
}

.about-exterior-point {
  margin-top: 80px;
  padding-bottom: 60px;
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 64px,
    #def2f2 64px,
    #def2f2 100%
  );
}

.about-exterior-point-title {
  max-width: 290px;
  margin: 0 auto 0;
}

.about-exterior-point-title img {
  width: 100%;
}

.about-exterior-point-lead {
  position: relative;
  display: block;
  width: fit-content;
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
  color: var(--orange);
  padding: 0 30px;
  margin: 1em auto 0;
}

.about-exterior-point-lead::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background-color: var(--orange);
  transform: rotate(-22deg);
}

.about-exterior-point-lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 60px;
  background-color: var(--orange);
  transform: rotate(22deg);
}

.about-exterior-point-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-exterior-point-list-item-title {
  display: flex;
  align-items: center;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1em;
}

.about-exterior-point-list-item-title img {
  display: block;
  width: 52px;
  margin-right: 16px;
}

.about-exterior-point-list-item-text {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 2.5em;
}

.about-exterior-point-list-item-pic img {
  border-radius: 8px;
}

.about-exterior-case {
  margin-top: 80px;
  padding-bottom: 60px;
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 96px,
    var(--green_3) 96px,
    var(--green_3) 100%
  );
}

.about-exterior-case-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--green_1);
}

.about-exterior-case-lead {
  max-width: 289px;
  margin: 20px auto 40px;
}

.about-exterior-case-lead img {
  width: 100%;
}

.about-exterior-case .exterior-archive-list {
  gap: 40px 0;
}

.about-exterior-case .exterior-archive-list-item {
  background-color: #fff;
}

.about-exterior-case .exterior-archive-list-item-title {
  padding: 1.5em;
}

.about-exterior-case .button-round {
  margin: 40px auto 0;
  background-color: var(--green_1);
}

.about-exterior .home-exterior-banner-title {
  margin-top: 60px;
}

/* ------------------------------
  ニュース(sp)
------------------------------ */
.news {
  color: var(--text-color_2);
}

/* ニュース_一覧(sp) */
.news .page-title-wrap {
  background: url("../images/real_estate/news_title_bg_sp.jpg") no-repeat center /
    cover;
}

.post-type-archive-news_real_estate .news-list {
  margin: 60px 0 0 0;
}

/* ニュース_詳細(sp) */
.news-single article {
  margin-top: 40px;
}

.news-article-date {
  font-size: 12px;
}

.news-article-title {
  font-size: 16px;
  line-height: 1.8;
  padding: 1em 0 1em;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--text-color_1);
}

.news-article-contents {
  font-size: 14px;
  line-height: 2;
}

.news-article-contents p{margin-bottom:1em;}

.single-btn-return {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  color: #627782;
  padding: 0.5em 1.5em;
  border-radius: 9999px;
  background-color: #e6e6e6;
  margin-top: 60px;
}

/* ページネーション(sp) */
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
}

.pagination .page-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #e6e6e6;
  transition: var(--hover-transition);
}

.pagination .page-numbers .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 32px;
  padding: 0 0.2em;
}

.pagination .page-numbers .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 32px;
}

.pagination .page-numbers li:not(:first-of-type) {
  margin-left: 10px;
}

.news .pagination {
  margin-top: 40px;
}

/* ------------------------------
  エクステリア_実例(sp)
------------------------------ */
.exterior {
  color: var(--text-color_2);
}

.main.exterior,
.main.about-exterior {
  padding-top: 15px;
  background: linear-gradient(
    180deg,
    var(--blue_2) 0,
    var(--blue_2) 40px,
    var(--green_5) 40px,
    var(--green_5) 162px,
    transparent 162px,
    transparent 100%
  );
}

.exterior .page-title-wrap {
  background: url("../images/real_estate/exterior_title_bg_sp.jpg") no-repeat
    center / cover;
}

.exterior-page-title-text {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.6em;
}

/* エクステリア_実例_一覧(sp) */
.exterior-cat-list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  background-color: var(--green_6);
  padding: 30px;
  border-radius: 35px;
  margin-top: 60px;
}

.exterior-cat-list li {
  text-align: center;
}

.exterior-cat-list a {
  font-size: 16px;
  line-height: 1.6;
}

.exterior-cat-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 50px 0 40px;
}

.exterior-cat-title::before {
  content: "";
  flex-grow: 1;
  display: block;
  margin-right: 1em;
  border-bottom: solid 1px var(--text-color_2);
}

.exterior-cat-title::after {
  content: "";
  flex-grow: 1;
  display: block;
  margin-left: 1em;
  border-bottom: solid 1px var(--text-color_2);
}

.exterior-archive-list {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.exterior-archive-list-item-pic {
  position: relative;
}

.exterior-archive-list-item-pic img {
  display: block;
  width: 100%;
  aspect-ratio: 465/352;
  object-fit: cover;
}

.exterior-archive-list-item-pic .exterior-cat-tag-list {
  position: absolute;
  top: 10px;
  left: 10px;
}

.exterior-cat-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exterior-cat-tag-list-item {
  font-size: 12px;
  padding: 0.8em 1.2em;
  border-radius: 4px;
  background-color: var(--orange);
  color: #fff;
}

.exterior-archive-list-item a {
  display: block;
}

.exterior-archive-list-item-title {
  font-size: 15px;
  line-height: 1.8;
  padding: 1em 0 0 0;
}

.exterior .pagination {
  margin-top: 40px;
}

/* エクステリア_実例_詳細(sp) */
.exterior-single-title {
  margin-top: 60px;
}

.exterior-single-title .exterior-cat-tag-list {
  margin-bottom: 1em;
}

.exterior-single-title .title {
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 1em;
  margin-bottom: 2em;
  border-bottom: dashed 1px var(--text-color_2);
}

.exterior-single-contents {
  font-size: 14px;
  line-height: 2;
}

.exterior-single-contents p{margin-bottom:1em;}

/* ------------------------------
  おすすめ不動産物件(sp)
------------------------------ */
.reccomend {
  color: var(--text-color_2);
}

.reccomend .page-title-wrap {
  background: url("../images/real_estate/reccomend_title_bg_sp.jpg") no-repeat
    center / cover;
  margin-bottom: 40px;
}

.reccomend-page-title-main {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.reccomend-page-title-sub {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
  margin-top: 1em;
}

.reccomend-list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}

.reccomend-list-item {
  display: block;
  margin-inline: auto;
}

.reccomend-list-item-date {
  display: block;
  font-size: 12px;
  margin: 0 0 0.8em 2em;
}

.reccomend-list-item-thumb-wrap {
  position: relative;
}

.reccomend-list-item-thumb-wrap .tag-new {
  aspect-ratio: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 54px;
}

.reccomend-list-item-thumb-wrap img {
  display: block;
  width: 81.33%;
  aspect-ratio: 392/298;
  object-fit: cover;
  border-radius: 10px;
}

.reccomend-list-item-text-wrap {
  position: relative;
  padding: 0 30px;
  transform: translateY(-25px);
}

.reccomend-list-item-text-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -25px;
  width: 92px;
  height: 86px;
  background: url("../images/real_estate/pic_comment_woman.png") no-repeat
    center top / 92px auto;
}

.reccomend-list-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 128px;
  border: solid 3px var(--blue_1);
  border-radius: 10px;
  background-color: #fff;
  padding: 15px 70px 15px 20px;
}

.reccomend-list-item-text-title {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--blue_1);
}

.reccomend-list-item-text-comment {
  font-size: 15px;
  line-height: 2;
  margin-top: 0.6em;
  min-height: 60px;
}

.reccomend-list-item .button-round {
  height: 40px;
  margin: 0 auto;
  font-size: 16px;
}

.reccomend-archive .pagination {
  margin-top: 40px;
}

/* おすすめ不動産物件バナー(sp) */
.reccomend-banner-wrap {
  background-color: var(--blue_6);
  margin-top: 80px;
  padding: 50px 0 60px;
}

.reccomend-banner {
  padding: 0 8vw;
}

.reccomend-archive .reccomend-banner div:not(:first-child) {
  margin-top: 50px;
}

.reccomend-banner-title {
  display: block;
  margin: 0 -8vw;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  color: var(--blue_1);
  margin-bottom: 0.8em;
}

.reccomend-banner dd {
  padding: 0 5vw;
}

.reccomend-banner a {
  display: block;
  margin-inline: auto;
}

.reccomend-banner a img {
  width: 100%;
}

@media (min-width: 1000px) {
  /* ------------------------------
    common(pc)
  ------------------------------ */
  .pc {
    display: inline-block;
  }

  .sp {
    display: none;
  }

  html {
    scroll-padding-top: 160px;
  }

  body {
    overflow-x: hidden;
    min-width: 1000px;
  }

  .container {
    padding: 0;
    width: 1000px;
    margin-inline: auto;
  }

  /* ------------------------------
    header(pc)
  ------------------------------ */
  .header-btn-sp-wrap {
    display: none !important;
  }

  .header-nav-sp-wrap {
    display: none !important;
  }

  .header {
    height: 160px;
    letter-spacing: normal;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    margin-inline: auto;
    height: 100px;
    padding: 0;
  }

  .header-logo {
    flex-shrink: 0;
  }

  .header-logo a {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    max-width: initial;
  }

  .header-logo a img:nth-of-type(1) {
    width: 190px;
    max-width: initial;
  }

  .header-logo a img:nth-of-type(2) {
    width: 145px;
    margin-left: 20px;
    max-width: initial;
display:none;
  }

  .header-nav-pc-wrap {
    display: block;
  }

  .header-nav-pc {
    display: flex;
    justify-content: space-between;
    width: 750px;
    font-size: 14px;
  }

  .header-nav-pc > li {
    position: relative;
  }

  .header-nav-pc > li > a {
    display: flex;
    align-items: center;
    height: 40px;
    color: var(--text-color);
  }

  .header-nav-pc > li > a:hover {
    border-bottom: solid 1px var(--blue_2);
  }

  .header-nav-pc > li a::before {
    content: "●";
    display: block;
    margin-right: 2px;
    color: var(--blue_2);
  }

  .header-nav-sub-pc-wrap {
    display: block;
    height: 60px;
    background-color: var(--blue_2);
  }

  .header-nav-sub-pc {
    display: flex;
    width: 1000px;
    margin-inline: auto;
    font-size: 15px;
    color: #fff;
  }

  .header-nav-sub-pc > li {
    position: relative;
    width: 250px;
    flex-shrink: 0;
  }

  .header-nav-sub-pc > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 1px;
    height: 22px;
    background-color: #fff;
  }

  .header-nav-sub-pc > li:last-of-type::after {
    content: "";
    position: absolute;
    right: 0;
    top: 19px;
    width: 1px;
    height: 22px;
    background-color: #fff;
  }

  .header-nav-sub-pc > li > a,
  .header-nav-sub-pc > li > span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
  }

  .header-nav-sub-pc-child {
    position: absolute;
    top: 60px;
    left: 0;
  }

  .header-nav-sub-pc-child li {
    border-top: solid 2px #fff;
  }

  .header-nav-sub-pc-child li:first-of-type {
    width: 250px;
  }

  .header-nav-sub-pc-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: var(--blue_1);
    background-color: var(--blue_4);
  }

  /* ------------------------------
    footer(pc)
  ------------------------------ */
  .footer {
    margin-top: 80px;
  }

  .footer-contact-title {
    font-size: 28px;
  }

  .footer-contact-btn-list {
    display: flex;
    justify-content: space-between;
    max-width: initial;
    width: 740px;
  }

  .footer-contact-btn-mail {
    max-width: initial;
    width: 350px;
  }

  .footer-contact-btn-tell {
    max-width: initial;
    width: 350px;
    margin-top: 0;
  }

  .footer-contact-banner {
    width: 510px;
    max-width: initial;
    margin: 60px auto 0;
  }

  .footer-sns {
    padding: 60px 0;
  }

  .footer-sns-title {
    font-size: 28px;
  }

  .sns-list li {
    width: auto;
  }

  .sns-list li:nth-of-type(n + 3) {
    margin-top: 0;
  }

  .sns-list li:nth-of-type(odd) {
    padding-right: 0;
  }

  .sns-list li:nth-of-type(even) {
    padding-left: 0;
  }

  .sns-list li:nth-of-type(odd) a {
    margin-left: 0;
  }

  .sns-list li:nth-of-type(even) a {
    margin-right: 0;
  }

  .sns-list li:nth-of-type(1) {
    order: 2;
    margin-left: 60px;
  }

  .sns-list li:nth-of-type(2) {
    order: 3;
    margin-left: 60px;
  }

  .sns-list li:nth-of-type(3) {
    order: 1;
  }

  .sns-list li:nth-of-type(4) {
    order: 4;
    margin-left: 70px;
  }

  .footer-contents-inner {
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 1000px;
    margin-inline: auto;
  }

  .footer-info {
    width: fit-content;
  }

  .footer-info-title {
    font-size: 18px;
  }

  .footer-info-pic {
    width: 322px;
    max-width: initial;
  }

  .footer-nav {
    display: flex;
    width: 500px;
    font-size: 14px;
  }

  .footer-nav > ul:first-of-type > li > a::before,
  .footer-nav > ul:first-of-type > li > span:before {
    content: "●";
    display: inline-block;
    margin-right: 2px;
  }

  .footer-nav ul ul li {
    margin-left: 1em;
  }

  .footer-nav ul ul li a::before {
    content: "› ";
  }

  .footer-nav li {
    margin-top: 1em;
  }

  .footer-nav ul:nth-of-type(2) {
    margin-left: 70px;
  }

  .footer-nav ul:nth-of-type(2) li:not(:first-of-type) a::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 10px;
    background: url(../images/real_estate/nav_bg_window_white.svg) no-repeat
      center / 13px auto;
    margin-left: 0.5em;
  }

  .footer-map {
    padding-top: 32%;
  }

  .pagetop {
    right: 20px;
    bottom: 120px;
  }

  .footer-fixed-nav-sp {
    display: none;
  }

  /* ------------------------------
    parts(pc)
  ------------------------------ */
  .button-round {
    padding: 0 75px 0 50px;
    height: 50px;
    font-size: 16px;
  }

  .button-round::after {
    right: 30px;
    width: 22px;
    background-size: 22px auto;
  }

  /* ------------------------------
    フロントページ(pc)
  ------------------------------ */
  .page_real_estate .main {
    background: none;
  }

  .main {
    padding-top: 30px;
    background: linear-gradient(
      180deg,
      var(--blue_5) 0,
      var(--blue_5) 334px,
      transparent 334px,
      transparent 100%
    );
  }

  .hero-slide {
    max-width: 1208px;
  }

  /* サービスのご案内_フロントページ(pc) */
  .home-service {
    margin: 110px 0 0 0;
    padding: 0 0 160px 0;
    background: url("../images/real_estate/home_service_bg_pc.svg") no-repeat
      calc(50% + 10px) 65px / 1033px auto;
  }

  .home-service-inner {
    padding: 0;
  }

  .home-title-main {
    font-size: 90px;
  }

  .home-section-title .home-title-main {
    font-size: 90px;
  }

  .home-title-sub {
    font-size: 28px;
  }

  .home-section-title .home-title-sub {
    font-size: 28px;
  }

  .home-service-lead {
    font-size: 44px;
    margin-top: 80px;
  }

  .home-service-text-1 {
    width: 670px;
    font-size: 15px;
    text-align: left;
  }

  .home-service-text-2 {
    width: 670px;
    display: block;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.1em;
    margin: 1em auto 0;
  }

  .home-service .button-round {
    margin: 60px auto 0;
  }

  /* おすすめ不動産情報_フロントページ(pc) */
  .home-reccomend {
    padding-bottom: 80px;
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 60px,
      var(--blue_6) 60px,
      var(--blue_6) 100%
    );
  }

  .home-reccomend .home-title-main {
    font-size: 90px;
  }

  .home-reccomend-title {
    font-size: 30px;
  }

  .home-reccomend-title span {
    font-size: 30px;
  }

  .home-reccomend .button-round {
    margin: 40px auto 0;
  }

  .home-reccomend .reccomend-banner {
    margin-top: 60px;
  }

  .home-reccomend .reccomend-banner div {
    padding: 40px 0 50px;
  }

  .home-reccomend-sns-title {
    font-size: 28px;
    margin: 40px 0 0.8em 0;
  }

  /* エクステリア_フロントページ(pc) */
  .home-exterior {
    padding-top: 100px;
  }

  .home-exterior-title {
    margin-bottom: -72px;
  }

  .home-exterior-lead-wrap {
    background: url("../images/real_estate/home_exterior_bg_pc.jpg") no-repeat
      center / cover;
    width: 100%;
    height: 480px;
  }

  .home-exterior-lead-1 img {
    width: 694px;
    margin-top: 194px;
  }

  .home-exterior-lead-2 {
    font-size: 23px;
  }

  .home-exterior-contents {
    padding-bottom: 80px;
  }

  .home-exterior-text-1 {
    font-size: 29px;
  }

  .home-exterior-text-2 {
    font-size: 24px;
  }

  .home-exterior-banner-title {
    margin: 60px 0 0.5em;
  }

  .home-exterior-banner {
    padding: 0;
    max-width: 755px;
  }

  /* ニュース_フロントページ(pc) */
  .home-news {
    margin-top: 100px;
    padding-bottom: 70px;
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 60px,
      var(--blue_6) 60px,
      var(--blue_6) 100%
    );
  }

  .home-news .home-title-sub {
    font-size: 24px;
  }

  .news-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 50px;
    width: 1000px;
  }

  .news-list-item a {
    flex-shrink: 0;
    width: 300px;
  }

  .news-list-item-date {
    font-size: 14px;
  }

  .news-list-item-title {
    font-size: 15px;
  }

  /* 保険の取り扱い(pc) */
  .home-insurance {
    padding: 0;
    margin: 90px 0;
  }

  .home-insurance-contents {
    width: 1000px;
    margin-inline: auto;
    border: solid 4px #f0f1f1;
    padding: 40px 280px 40px 40px;
    background: url("../images/real_estate/pic_man.png") no-repeat right 20px
      bottom 50% / 208px auto;
  }

  .home-insurance-title {
    font-size: 28px;
    margin-left: 240px;
  }

  .home-insurance-list {
    flex-direction: row;
  }

  /* ------------------------------
    サービスのご案内(pc)
  ------------------------------ */
  .page-title-wrap {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    border-radius: 10px;
  }

  .page-title-main {
    font-size: 70px;
  }

  .page-title-sub {
    font-size: 22px;
  }

  .service .page-title-wrap {
    background: url("../images/real_estate/service_title_bg_pc.jpg") no-repeat
      center / cover;
  }

  .service .page-title-sub {
    font-size: 30px;
  }

  .service-button-list {
    padding: 0;
    width: 800px;
    margin: 60px auto 0;
    gap: 30px 25px;
  }

  .service-button-list li {
    width: 250px;
  }

  .service-button-list a {
    height: 80px;
    font-size: 18px;
    border-radius: 15px;
  }

  .service-button-list a::after {
    bottom: 12px;
  }

  .service-button-list li:nth-of-type(1) a,
  .service-button-list li:nth-of-type(2) a {
    font-size: 16px;
  }

  .service-button-list li:nth-of-type(5) a {
    font-size: 18px;
  }

  .service-button-list li:nth-of-type(5) span span {
    font-size: 18px;
  }

  .service-button-list span span {
    display: inline;
    font-size: 22px;
    margin-top: 0;
  }

  .service-item {
    padding: 90px 0 100px;
  }

  .service-item-title {
    font-size: 40px;
    width: fit-content;
    min-width: 480px;
    padding: 0 1em 0.4em 1em;
    margin: 0 auto 60px;
  }

  .service-item-inner {
    display: flex;
  }

  .service-item-pic {
    width: 50%;
    padding: 10px 50px 0 0;
  }

  .service-item-pic img {
    display: block;
    width: 100%;
    max-width: 590px;
    margin: 0 0 0 auto;
    border-radius: 10px;
  }

  .service-item-contents {
    width: 50%;
    max-width: 500px;
    padding-left: 50px;
  }

  .service-item-lead {
    font-size: 30px;
    margin: 0 0 1em 0;
  }

  .service-item-text {
    font-size: 15px;
  }

  .service-item-wrap .service-item:nth-of-type(even) .service-item-pic {
    order: 2;
    padding: 10px 0 0 50px;
  }

  .service-item-wrap .service-item:nth-of-type(even) .service-item-pic img {
    margin: 0;
  }

  .service-item-wrap .service-item:nth-of-type(even) .service-item-contents {
    order: 1;
    max-width: initial;
    padding: 0 50px 0 0;
  }

  .service-item-wrap
    .service-item:nth-of-type(even)
    .service-item-contents-inner {
    width: 450px;
    margin-left: auto;
  }

  .page_service .footer {
    margin-top: 30px;
  }

  .service-item .reccomend-banner {
    margin-top: 80px;
  }

  .service-item .button-round {
    margin: 50px auto 0;
  }

  .exterior-pars {
    width: 1000px;
    margin: 120px auto 0;
    padding: 60px 90px;
  }

  .exterior-pars-title span:nth-of-type(1) {
    font-size: 18px;
  }

  .exterior-pars-title span:nth-of-type(2) {
    font-size: 26px;
  }

  .exterior-pars-text {
    font-size: 14px;
  }

  .exterior-pars-contact-title {
    font-size: 18px;
  }

  .exterior-pars-contact-btn {
    max-width: initial;
    width: 350px;
    height: 76px;
    font-size: 14px;
  }

  .exterior-pars-contact-btn span {
    font-size: 27px;
  }

  .exterior-pars-contact-btn span::before {
    width: 24px;
    height: 24px;
    margin: 2px 6px 0 0;
  }

  /* ------------------------------
    エクステリアのご提案(pc)
  ------------------------------ */
  .about-exterior .page-title-wrap {
    background: url("../images/real_estate/about_exterior_title_bg_pc.jpg")
      no-repeat center / cover;
  }

  .about-exterior-problem-inner {
    display: flex;
    justify-content: space-between;
    max-width: 550px;
    margin: 60px auto 30px;
  }

  .about-exterior-problem-inner > span {
    width: 176px;
    height: 50px;
    font-size: 25px;
  }

  .about-exterior-problem-main {
    font-size: 40px;
    padding: 0 25px;
  }

  .about-exterior-problem-main::before {
    bottom: -10px;
    height: 60px;
    width: 2px;
  }

  .about-exterior-problem-main::after {
    bottom: -10px;
    height: 60px;
    width: 2px;
  }

  .about-exterior-problem-example-wrap {
    padding-left: 10px;
  }

  .about-exterior-problem-example {
    display: flex;
    align-items: center;
    width: 960px;
    height: 210px;
    margin-inline: 0;
    font-size: 28px;
    padding: 0 0 0 240px;
  }

  .about-exterior-problem-example.example-1 {
    background: url("../images/real_estate/about_exterior_bg_1.png") no-repeat
      left center / 210px auto;
  }

  .about-exterior-problem-example.example-2 {
    background: url("../images/real_estate/about_exterior_bg_2.png") no-repeat
      right center / 210px auto;
    margin-top: -50px;
  }

  .about-exterior-problem-example.example-3 {
    background: url("../images/real_estate/about_exterior_bg_3.png") no-repeat
      left center / 210px auto;
    margin-top: -50px;
  }

  .about-exterior-problem-example-wrap
    .about-exterior-problem-example:nth-of-type(odd) {
    transform: translateX(0);
  }

  .about-exterior-problem-example-wrap
    .about-exterior-problem-example:nth-of-type(even) {
    transform: translateX(0);
  }

  .about-exterior-consult-text {
    font-size: 22px;
    margin-top: 20px;
  }

  .about-exterior-consult-text::after {
    width: 108px;
    height: 35px;
    margin: 1em auto 0;
  }

  .about-exterior-point {
    margin-top: 120px;
    padding-bottom: 100px;
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 115px,
      #def2f2 115px,
      #def2f2 100%
    );
  }

  .about-exterior-point-title {
    max-width: 1000px;
    padding-left: 165px;
  }

  .about-exterior-point-title img {
    width: 802px;
  }

  .about-exterior-point-lead {
    font-size: 40px;
    padding: 0 25px;
    margin: 0.8em auto 0;
  }

  .about-exterior-point-lead::before {
    bottom: -10px;
    height: 60px;
    width: 2px;
  }

  .about-exterior-point-lead::after {
    bottom: -10px;
    height: 60px;
    width: 2px;
  }

  .about-exterior-point-list {
    margin-top: 70px;
    gap: 120px;
  }

  .about-exterior-point-list
    .about-exterior-point-list-item:nth-of-type(even)
    .about-exterior-point-list-item-contents {
    order: 2;
  }

  .about-exterior-point-list
    .about-exterior-point-list-item:nth-of-type(even)
    .about-exterior-point-list-item-pic {
    order: 1;
  }

  .about-exterior-point-list-item {
    display: flex;
    justify-content: space-between;
  }

  .about-exterior-point-list-item-title {
    font-size: 30px;
  }

  .about-exterior-point-list-item-title img {
    display: block;
    width: 66px;
    margin-right: 20px;
  }

  .about-exterior-point-list-item-text {
    width: 412px;
    font-size: 16px;
    margin-bottom: 0;
  }

  .about-exterior-point-list-item-pic {
    width: 500px;
  }

  .about-exterior-point-list-item-pic img {
    border-radius: 12px;
  }

  .about-exterior-case {
    margin-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(
      180deg,
      transparent 0,
      transparent 115px,
      var(--green_3) 115px,
      var(--green_3) 100%
    );
  }

  .about-exterior-case-title {
    font-size: 40px;
  }

  .about-exterior-case-lead {
    max-width: 803px;
    margin: 30px auto 60px;
  }

  .about-exterior-case .exterior-archive-list {
    gap: 70px;
  }

  .about-exterior-case .button-round {
    margin: 60px auto 0;
  }

  .about-exterior .home-exterior-banner-title {
    margin-top: 80px;
  }

  /* ------------------------------
    ニュース(pc)
  ------------------------------ */
  /* ニュース_詳細(pc) */
  .news .page-title-wrap {
    background: url("../images/real_estate/news_title_bg_pc.jpg") no-repeat
      center / cover;
  }

  .post-type-archive-news_real_estate .news-list {
    margin: 100px 0 0 0;
  }

  /* ニュース_詳細(pc) */
  .news-single article {
    margin-top: 60px;
  }

  .news-article-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .news-article-contents {
    font-size: 15px;
  }

  .single-btn-return {
    font-size: 16px;
    margin-top: 80px;
  }

  .news .pagination {
    margin-top: 70px;
  }

  /* ------------------------------
    エクステリア_実例(pc)
  ------------------------------ */
  .main.exterior,
  .main.about-exterior {
    padding-top: 30px;
    background: linear-gradient(
      180deg,
      var(--green_5) 0,
      var(--green_5) 334px,
      transparent 334px,
      transparent 100%
    );
  }

  .exterior .page-title-wrap {
    background: url("../images/real_estate/exterior_title_bg_pc.jpg") no-repeat
      center / cover;
  }

  .exterior-page-title-text {
    font-size: 29px;
  }

  /* エクステリア_実例_一覧(pc) */
  .exterior-cat-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 70px;
    padding: 0;
    border-radius: 9999px;
    margin-top: 80px;
  }

  .exterior-cat-list li a {
    padding: 0 20px;
  }

  .exterior-cat-list li:not(:first-of-type) {
    border-left: solid 1px var(--text-color_2);
  }

  .exterior-cat-title {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
    font-size: 20px;
    padding: 70px 0 60px;
  }

  .exterior-cat-title::before {
    flex-shrink: 0;
    width: 60px;
    margin-right: 1em;
  }

  .exterior-cat-title::after {
    flex-shrink: 0;
    width: 60px;
    margin-left: 1em;
  }

  .exterior-archive-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 70px;
  }

  .exterior-archive-list-item {
    flex-shrink: 0;
    width: 465px;
  }

  .exterior-archive-list-item-pic .exterior-cat-tag-list {
    top: 15px;
    left: 15px;
  }

  .exterior-cat-tag-list {
    gap: 10px;
  }

  .exterior-cat-tag-list-item {
    font-size: 14px;
    border-radius: 5px;
  }

  .exterior .pagination {
    margin-top: 70px;
  }

  /* エクステリア_実例_詳細(pc) */
  .exterior-single-title {
    margin-top: 80px;
  }

  /* ------------------------------
    おすすめ不動産物件(pc)
  ------------------------------ */
  .reccomend .page-title-wrap {
    height: 430px;
    margin-bottom: 60px;
    background: url("../images/real_estate/reccomend_title_bg_pc.jpg") no-repeat
      center / cover;
  }

  .reccomend-page-title-main {
    font-size: 50px;
    padding-top: 64px;
  }

  .reccomend-page-title-sub {
    font-size: 22px;
  }

  .reccomend .page-title-wrap {
    position: relative;
  }

  .reccomend .page-title-wrap::after {
    content: "";
    position: absolute;
    top: 160px;
    right: 200px;
    width: 166px;
    height: 180px;
    background: url("../images/real_estate/pic_title_woman.png") no-repeat
      center / cover;
  }

  .reccomend-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px 0;
    width: 1000px;
    margin-inline: auto;
  }

  .reccomend-list-item {
    max-width: initial;
    width: 460px;
  }

  .reccomend-list-item-date {
    margin: 0 0 0.8em 0;
  }

  .reccomend-list-item-thumb-wrap img {
    width: 392px;
  }

  .reccomend-list-item-text-wrap {
    padding: 0 30px 0 70px;
  }

  .reccomend-archive .pagination {
    margin-top: 70px;
  }

  /* おすすめ不動産物件バナー(pc) */
  .reccomend-banner-wrap {
    margin-top: 100px;
    padding: 60px 0 80px;
  }

  .reccomend-banner {
    padding: 0;
  }

  .reccomend-archive .reccomend-banner div:not(:first-child) {
    margin-top: 70px;
  }

  .reccomend-banner-title {
    font-size: 28px;
  }

  .reccomend-banner div {
    width: 1000px;
    margin-inline: auto;
  }

  .reccomend-banner dd {
    padding: 0;
  }

  .reccomend-banner a {
    max-width: 754px;
  }
}

/* ------------------------------
  animation
------------------------------ */
/* hover */
@media (any-hover: hover) {
  .hover {
    transition: var(--hover-transition);
  }

  .hover:hover {
    opacity: var(--hover-opacity);
  }

  .header-nav-pc > li > a {
    transition: var(--hover-transition);
    border-bottom: solid 1px #fff;
  }

  .header-nav-pc > li > a:hover {
    border-bottom: solid 1px var(--blue_2);
  }

  .header-nav-sub-pc-child-button .header-nav-sub-pc-child {
    transition: var(--hover-transition);
    visibility: hidden;
    opacity: 0;
  }

  .header-nav-sub-pc-child-button:hover .header-nav-sub-pc-child {
    visibility: visible;
    opacity: 1;
  }

  .header-nav-sub-pc-child a {
    transition: var(--hover-transition);
  }

  .header-nav-sub-pc-child a:hover {
    background-color: var(--blue_3);
  }

  .footer-nav a {
    transition: var(--hover-transition);
  }

  .footer-nav a:hover {
    opacity: var(--hover-opacity);
  }

  a.button-round::after,
  .reccomend-list-item .button-round::after {
    transition: var(--hover-transition);
  }

  a.button-round:hover::after,
  .reccomend-list-item:hover .button-round::after {
    transform: translate(20%, calc(-50% - 2px));
  }

  .service-button-list a {
    transition: var(--hover-transition);
  }

  .service-button-list a:hover {
    background-color: #e9f2f6;
    border-color: #e9f2f6;
  }

  .marker {
    background-image: linear-gradient(#ffe794, #ffe794);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 14%;
  }

  .aos-animate.marker {
    background-size: 100% 14%;
  }
}
