@charset "UTF-8";
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 3.9%;
  --primary: 0 0% 9%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96.1%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96.1%;
  --muted-foreground: 0 0% 45.1%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 89.8%;
  --input: 0 0% 89.8%;
  --ring: 0 0% 3.9%;
  --radius: 0.5rem;
  --brand: 87, 31%, 28%;
  --marker: 35, 85%, 41%;
  --point: 109, 14%, 51%;
  --swiper-navigation-size: 30px;
  --swiper-theme-color: #333333;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: transparent;
  transition: background-color 0.3s, height 0.3s;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo {
  transform: scale(0.8);
}

header #logo {
  height: 36px;
  width: 224px;
  transition: transform 0.3s ease;
}

/* ログインボタン */
html.index-page .login-button.default-login {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border-color: black;
}

.login-button.default-login {
  background-color: white;
  color: black;
  border-color: black;
}

/* メニューコンテンツ */
#menu-content {
  overflow-y: scroll;
}

.nav-right {
  margin: 10% 6%;
}

.menu-swiper-container {
  visibility: hidden;
}

.menu-swiper-container.swiper-initialized {
  visibility: visible;
}

.menu-swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
}

.menu-swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 18s ease;
}

.menu-swiper-container .swiper-slide.swiper-slide-active img {
  transform: scale(1.2);
}

.swiper-controls {
  position: relative;
  top: -60px;
  pointer-events: auto;
  left: 50px;
  z-index: 10;
}

.swiper-controls svg {
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 50%;
  background-color: white;
  color: black;
  border: 1px solid #000;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.swiper-controls svg:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  transform: scale(1.1);
  cursor: pointer;
}

.swiper-controls .swiper-prev {
  margin-right: 10px;
}

#loginButton {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#loginButton:hover {
  background-color: white !important;
  color: black !important;
}

/* ヘッダーリンク */
.heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1.75rem;
  color: white;
  transition: color 0.3s ease;
}

.heading a {
  text-decoration: none;
}

.heading:hover {
  color: #9ca3af;
}

.heading:hover a {
  color: #9ca3af;
}

/* リスト */
.list {
  list-style: none;
  margin-bottom: 3rem;
  padding: 0;
}

.list .list-item {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  font-size: 14px;
  color: white;
}

.list .list-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: white;
}

.list .list-item:hover {
  color: #9ca3af;
}

.list .list-item:hover:before {
  background-color: #9ca3af;
}

.list .list-item a {
  text-decoration: none;
  color: inherit;
}

.list .list-item a:hover {
  color: inherit;
}

.member-hover {
  background-color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.member-hover:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border-color: rgba(0, 0, 0, 0.8);
}

/* 共通ユーティリティ */
.mt-170 {
  margin-top: 170px;
}

.position-t-60 {
  top: 60%;
}

.bg-white {
  background-color: white !important;
}

.text-black {
  color: black !important;
}

.bg-black-30 {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.text-white {
  color: white !important;
}

.nav-sns {
  padding-bottom: 90px;
  justify-content: center;
}

/* メディアクエリ */
@media (max-width: 640px) {
  header #logo {
    width: 160px;
  }
  .swiper-controls {
    bottom: auto;
    left: 0;
    top: -420px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
  }
  .swiper-controls .swiper-prev {
    position: absolute;
    left: 0;
  }
  .swiper-controls .swiper-next {
    position: absolute;
    right: 0;
  }
  .mt-170 {
    margin-top: 40px;
  }
  .w-330 {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .nav-sns {
    justify-content: left;
  }
}

@media (min-width: 900px) {
  .w-330 {
    width: 330px;
  }
  .w-400 {
    width: 400px;
  }
}

.flow-content {
  border: 1px solid #9ca3af;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  /* 白背景 + 透明度 */
  backdrop-filter: blur(4px);
  /* 背景にぼかし効果 */
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 30px;
}

.flow-content .box-border {
  padding: 10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-bottom: 10px;
  background-color: hsl(var(--brand));
  color: #ffffff;
}

.qanda-q {
  background-color: hsl(var(--brand));
  color: #ffffff;
  padding: 10px 30px;
  margin-bottom: 20px;
  position: relative;
}

.qanda-q::before {
  content: "Q.";
  position: absolute;
  left: 10px;
}

.qanda-a {
  margin-bottom: 50px;
  padding-left: 30px;
  position: relative;
}

.qanda-a::before {
  content: "A.";
  position: absolute;
  left: 10px;
}

.support-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.support-item {
  flex: 1 1 calc(50% - 15px);
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.support-item-image {
  margin-bottom: 20px;
}

.support-item-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.support-item-description dt {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.support-item-description dd {
  margin: 0;
}

.support-item-description dd .support-item-sublist {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
}

.support-item-description dd .support-item-sublist li {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .support-item {
    flex: 1 1 100%;
  }
}

.process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.process-list .process-item {
  flex: 1 1 calc(33.333% - 20px);
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-list .process-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 4px;
}

.process-list .process-item .process-info {
  width: 100%;
}

.process-list .process-item .process-info .process-date {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.process-list .process-item .process-info .process-description {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 1024px) {
  .process-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .process-item {
    flex: 1 1 100%;
  }
}

.is-layout-flex {
  display: flex;
  margin-bottom: 100px;
}

@media (max-width: 600px) {
  .is-layout-flex {
    display: block;
  }
}

.single-property-listings_gallery .swiper-slide {
  position: relative;
  overflow: hidden;
  background-color: #ececec;
}

.single-property-listings_gallery .swiper-slide img {
  width: 100%;
  height: 308px;
  object-fit: contain;
}

.single-property-listings_gallery .swiper-slide-visible img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.contract .contract-content {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contract .contract-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}

.contract .wpcf7-form {
  width: 800px;
  margin: 0 auto;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .contract .wpcf7-form {
    width: 100%;
  }
  .contract .wpcf7-form .w-40 {
    width: 30% !important;
  }
}

.contract .wpcf7-form .form-flex {
  display: flex;
  justify-content: space-between;
}

.contract .wpcf7-form .form-flex div {
  width: calc(49% - 0px);
}

.contract .wpcf7-form .form-flex3 {
  display: flex;
}

.contract .wpcf7-form .form-flex3 div {
  margin-left: 10px;
}

.contract .wpcf7-form .form-flex3 div:first-child {
  margin-left: 0;
}

.contract .wpcf7-form .form-flex-b {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  width: fit-content;
  margin: 50px auto 0 auto;
}

@media screen and (max-width: 768px) {
  .contract .wpcf7-form .form-flex-b {
    width: 100%;
  }
}

.contract .wpcf7-form .form-flex-b .wpcf7-previous {
  border-radius: 50px;
  background-color: #9e9e9e;
  color: #FFF;
  font-size: 14px;
  padding: 16px 20px 16px 20px;
  text-decoration: none;
  border: none;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 10px 0 10px;
}

@media screen and (max-width: 768px) {
  .contract .wpcf7-form .form-flex-b .wpcf7-previous {
    width: 100%;
  }
}

.contract .wpcf7-form .form-flex-b .wpcf7-submit {
  margin: 0 10px 0 10px;
}

@media screen and (max-width: 768px) {
  .contract .wpcf7-form .form-flex-b .wpcf7-submit {
    width: 100%;
  }
}

.contract .wpcf7-form .form-flex-b .wpcf7-spinner {
  display: none;
}

.contract .wpcf7-form label {
  font-weight: bold;
  display: block;
  font-size: 14px;
}

.contract .wpcf7-form label span {
  font-size: 12px;
  font-weight: normal;
}

.contract .wpcf7-form input[type="text"],
.contract .wpcf7-form input[type="email"],
.contract .wpcf7-form input[type="tel"],
.contract .wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

.contract .wpcf7-form input[type="text"]:focus,
.contract .wpcf7-form input[type="email"]:focus,
.contract .wpcf7-form input[type="tel"]:focus,
.contract .wpcf7-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contract .wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.contract .wpcf7-form .wpcf7-number {
  width: 50%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.contract .wpcf7-form button {
  padding: 10px 20px;
  background-color: #3a9661;
  color: #ffffff;
  border: none;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  font-size: 14px;
  display: block;
  border-radius: 100px;
}

.contract .wpcf7-form button:hover {
  background-color: #70b68e;
}

.contract .wpcf7-form .form-item {
  margin-bottom: 20px;
  width: 100%;
  font-size: 16px;
}

.contract .wpcf7-form .accordion__list {
  width: 800px;
  box-sizing: border-box;
  padding: 0;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .contract .wpcf7-form .accordion__list {
    width: 100%;
  }
}

.contract .wpcf7-form .accordion__list .accordion__item {
  background: #ffffff;
}

.contract .wpcf7-form .accordion__list .accordion__body {
  display: block;
}

.contract .wpcf7-form .wpcf7-submit {
  border-radius: 50px;
  background-color: #D54C4C;
  color: #FFF;
  font-size: 14px;
  padding: 16px 20px 16px 20px;
  text-decoration: none;
  border: none;
  text-align: center;
  display: block;
  width: 300px;
  margin: 50px auto 0px auto;
}

.contract .form-step {
  display: flex;
  width: 800px;
  margin: 0px auto 30px auto;
  text-align: center;
  background-color: #b1c5a8;
}

@media screen and (max-width: 768px) {
  .contract .form-step {
    width: 100%;
  }
}

.contract .form-step .step1 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #698962;
  color: #ffffff;
  font-size: 14px;
}

.contract .form-step .step1::after {
  content: " ";
  display: block;
  background: #698962;
  height: calc(tan(60deg) * 60px / 2);
  width: 50px;
  height: 100%;
  clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
  z-index: 1;
}

.contract .form-step .step2 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #87af75;
  color: #658956;
  font-size: 14px;
}

.contract .form-step .step2::after {
  content: " ";
  display: block;
  background: #87af75;
  height: calc(tan(60deg) * 60px / 2);
  width: 50px;
  height: 100%;
  clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
}

.contract .form-step .step3 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  color: #869c7c;
  font-size: 14px;
}

.contract .form-step span {
  display: block;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .contract .form-step span {
    font-size: 8px;
  }
}

.contract .contract-list {
  display: flex;
}

@media screen and (max-width: 768px) {
  .contract .contract-list {
    display: block;
  }
}

.contract .contract-list .contract-arrow {
  position: relative;
}

.contract .contract-list .contract-arrow::before {
  content: " ";
  display: block;
  width: 30px;
  height: 96.2%;
  background-color: #84B484;
}

.contract .contract-list .contract-arrow::after {
  content: " ";
  position: absolute;
  bottom: 0;
  display: block;
  background-color: #84B484;
  height: calc(tan(30deg) * 42px / 2);
  width: 30px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (max-width: 768px) {
  .contract .contract-list .contract-arrow::after {
    bottom: 30px;
    right: 0;
    left: 0;
    margin: auto;
    height: calc(tan(30deg)* 90px / 2);
    width: 100px;
  }
}

.contract .contract-list:nth-child(2n) .contract-arrow {
  position: relative;
}

.contract .contract-list:nth-child(2n) .contract-arrow::before {
  content: " ";
  display: block;
  width: 30px;
  height: 96.2%;
  background-color: #409340;
}

.contract .contract-list:nth-child(2n) .contract-arrow::after {
  content: " ";
  position: absolute;
  bottom: 0;
  display: block;
  background-color: #409340;
  height: calc(tan(30deg) * 42px / 2);
  width: 30px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (max-width: 768px) {
  .contract .contract-list:nth-child(2n) .contract-arrow::after {
    bottom: 30px;
    right: 0;
    left: 0;
    margin: auto;
    height: calc(tan(30deg)* 90px / 2);
    width: 100px;
  }
}

.contract .contract-list .contract-img {
  width: calc(40% - 0px);
  text-align: right;
  padding-bottom: 40px;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .contract .contract-list .contract-img {
    width: 100%;
    margin-left: 0px;
    padding-bottom: 0px;
  }
}

.contract .contract-list .contract-img img {
  width: 100%;
}

.contract .contract-list .contract-txt {
  width: calc(50% - 0px);
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .contract .contract-list .contract-txt {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 80px;
  }
}

.contract .contract-list .contract-txt dl {
  margin: 0;
}

.contract .contract-list .contract-txt dl dt {
  color: #ffffff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .contract .contract-list .contract-txt dl dt {
    margin-bottom: 8px;
    font-size: 18px;
  }
}

.contract .contract-list .contract-txt dl dd {
  margin: 0;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .contract .contract-list .contract-txt dl dd {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .contract .contract-list:first-of-type .contract-arrow {
    display: none;
  }
}

.contract .contract-list:last-child .contract-txt {
  margin-bottom: 0;
}

.screen-reader-response {
  color: #ec8c23;
  width: 800px;
  margin: 0px auto 30px auto;
}

.screen-reader-response ul {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #ec8c23;
}

.wpcf7-response-output {
  color: #ec8c23;
  margin-top: 30px;
  text-align: center;
}
