@charset "UTF-8";
/* --- 変数 --- */ :root {
  --bg-beige: #e9e4d9;
  --accent-yellow: #2e3146;
  --dark-navy: #2e3146;
  --text-main: #2e3146;
  --container-width: 940px;
}
/* --- リセット --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* --- ベース --- */
body {
  font-family: "Noto Serif JP", serif;
  background: var(--bg-beige);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
  font-weight: 400;
  font-feature-settings: "palt";
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  text-align: center;
}
h2 {
  font-size: 40px;
  margin-bottom: 50px;
}
h3 {
  font-size: 24px;
  margin-bottom: 70px;
}
h4 {
  font-size: 30px;
  text-align: left;
}
h5 {
  font-size: 30px;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
p {
  font-size: 16px;
  line-height: 2;
}
a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}
/* --- コンテナ --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.container--tight-top {
  padding-top: 0;
}
.container--pb-120 {
  padding-bottom: 120px;
}
/* --- TOP --- */
.main-visual {
  width: 100%;
  margin-bottom: 160px;
}
.top-intro {
  text-align: center;
  margin-bottom: 70px;
}
.top-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}
.top-main img {
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}
.top-dark {
  background: var(--dark-navy);
  padding: 45px 0;
  margin-bottom: 90px;
  display: flex;
  justify-content: center;
}
.top-dark img {
  width: 400px;
  max-width: 100%;
}
/* 下2枚 */
.top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
/* --- Header --- */
.header {
  background: var(--dark-navy);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-logo {
  height: 34px;
}
/* header-menu */
.header-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.header-menu span {
  width: 30px;
  height: 1px;
  background: #fff;
}
/* --- ラベル --- */
.label {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  height: 60px;
  font-size: 22px;
  margin-bottom: 20px;
}
.label--fill {
  background: var(--accent-yellow);
  color: #c39c55;
}
.label--outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
  margin-left: auto;
  margin-right: auto;
}
.label--center {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .label {
    height: 60px;
    font-size: 17px;
  }
}
/* --- SAFETY SYSTEM --- */
.split-section {
  display: flex;
  align-items: stretch;
  margin-bottom: 80px;
  gap: 50px;
}
.split-section.is-reverse {
  flex-direction: row-reverse;
}
.split-section__image {
  flex: 6;
}
.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-section__content {
  flex: 5;
  display: flex;
  align-items: center;
}
.split-section__inner {
  max-width: 450px;
}
.split-section.is-reverse .split-section__content {
  justify-content: flex-end;
}
.two-col {
  max-width: 800px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  margin-bottom: 80px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  border: 1px solid var(--text-main);
}
.feature-item h3 {
  font-size: 22px;
  margin: 0;
}
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px
  }
  .split-section.is-reverse {
    flex-direction: column;
  }
  .split-section__image {
    flex: none;
    height: 220px;
  }
  .split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .split-section__content {
    flex: none;
    align-items: flex-start;
    justify-content: center;
  }
  .split-section__inner {
    width: 100%;
    padding: 0 40px;
  }
  .split-section__inner .label {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: 50px;
    font-size: 20px;
    margin: -40px auto 30px auto
  }
  .split-section.is-reverse .split-section__content {
    justify-content: center;
  }
  .split-section h4 {
    font-size: 20px;
    line-height: 1.7;
    text-align: center
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
  }
  .feature-list {
    gap: 10px;
    align-items: stretch;
  }
  .feature-item {
    width: 220px;
    height: 45px;
    margin: auto
  }
  .feature-item h3 {
    font-size: 14px;
  }
  .two-col p br {
    display: none;
  }
}
/* --- LAND WANTED --- */
.land-wanted-center {
  text-align: center;
}
.land-wanted-block {
  margin-bottom: 100px;
  text-align: center;
}
.land-wanted-map {
  width: 240px;
  margin: 0 auto;
}
.area-list {
  max-width: 720px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 常に4列 */
  gap: 0;
  margin: 0 auto;
  padding: 0;
}
.area-list li {
  font-size: 24px;
  padding: 0;
  margin: 0 0 10px 0;
  margin: 0 0 10px -1px; /* ← 左に -1px 寄せる */ border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.bordered-text-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.bordered-text-list p {
  margin-bottom: 30px;
}
.lead-strong {
  margin-bottom: 40px;
  padding: 0 20px
}
.image-grid-4 {
  max-width: 840px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px
}
.image-grid-item span {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  margin-top: 10px;
}
.footer-cta {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 20px
}
.phone-display {
  max-width: 360px;
  margin: 20px auto 10px auto;
  display: flex;
  justify-content: center;
  text-align: center;
}
.muted {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
}
.phone-link {
  pointer-events: none;
}
@media (max-width: 768px) {
  .phone-link {
    pointer-events: auto;
  }
  .area-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .area-list li {
    font-size: 14px;
  }
  .bordered-text-list p {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: left
  }
  .land-wanted-center h5 {
    font-size: 20px;
    text-align: center;
  }
  .land-wanted-center h5 br {
    display: block
  }
  .bordered-text-list p br {
    display: none
  }
  .lead-strong {
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 40px;
    padding: 0 20px
  }
  .image-grid-4 {
    margin: 10px auto 0px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .image-grid-item span {
    display: block;
    font-size: 12px;
    margin-top: 10px;
  }
  .land-wanted-block {
    margin-bottom: 50px;
  }
  .phone-display {
    max-width: 280px;
  }
  .muted {
    font-size: 12px;
  }
  .footer-cta {
    margin-bottom: 40px;
  }
}
/* --- フッター --- */
.footer {
  background: var(--dark-navy);
  padding: 50px 20px 30px 20px;
  color: #ffffff;
}
.footer-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 150px;
}
.footer-logo img {
  height: 34px;
}
.footer-nav {
  display: flex;
  gap: 40px;
}
.footer-nav a {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.footer-nav a::before {
  content: "- ";
}
.footer-copy {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
  h3 {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.9;
    text-align: left;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 17px;
    margin-bottom: 18px;
    text-align: left;
  }
  p {
    font-size: 14px;
    line-height: 1.9;
  }
  h3 br, h2 br {
    display: none;
  }
  .footer-logo img {
    height: 24px;
  }
  .main-visual {
    margin-bottom: 40px;
  }
  .top-intro {
    margin-bottom: 28px;
  }
  .top-main {
    margin-bottom: 20px;
  }
  .top-main img {
    margin-bottom: 40px;
    padding: 0 50px
  }
  .top-dark {
    padding: 28px 0;
    margin-bottom: 30px;
  }
  .top-dark img {
    max-width: 300px;
    padding: 0 30px
  }
  .top-grid {
    gap: 10px;
    margin-bottom: 30px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-nav {
    gap: 50px;
    align-items: center;
  }
  .footer-nav a {
    font-size: 12px;
  }
  .footer-nav a::before {
    content: "";
  }
  .footer-copy {
    margin-top: 40px;
    font-size: 10px;
    text-align: center
  }
}
/*会員規約*/
.membership-terms_box {
  max-width: 810px;
  margin: 0 auto 30px auto;
  background: #fff;
  padding: 50px 50px;
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  box-sizing: border-box;
}
.membership-terms_box strong {
  display: block;
  font-weight: bold
}
.membership-terms_box p {
  font-size: 14px;
  margin-bottom: 30px
}
.membership-terms_text {
  max-width: 810px;
  margin: 0 auto;
  margin-bottom: 40px
}
.membership-terms_text p, .membership-terms_text td {
  font-size: 12px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  vertical-align: top;
}
.membership-terms_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 100%;
  padding: 10px 10px;
  border: none;
  border-radius: 0;
  background: #c7a35a;
  color: #1f2338;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
  margin: 0 auto 0 auto
}