:root {
  --sans-serif: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo,
    sans-serif;

  --bg-color: #cbdbd7;
  --bg-color-light: #f3f2f2;
  --btn1-color: #40585b;
  --btn2-color: #7d8699;
  --accent-color: #fd8e90;
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wpcf7-form p {
  margin: 0 !important;
  padding: 0 !important;
  display: contents !important;
}

html {
  font-size: 16px;
}

body {
  font-family: "DNP 秀英明朝 Pr6N", "Shippori Mincho", serif;
  line-height: 1.6;
  background-color: white;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

a {
  color: black;
  text-decoration: none;
}

/* ヘッダー */
.lp_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  position: relative;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-main {
  height: auto;
  width: 200px;
}

.header-buttons {
  display: flex;
  gap: 16px;
  position: fixed;
  top: 16px;
  right: 32px;
  z-index: 1000;
}

.btn {
  text-decoration: none;
  padding: 14px 0;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  width: 180px;
}

.btn-text {
  position: relative;
  margin-left: 20px;
  padding-left: 10px;
}

.btn-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 15px;
  left: -20px;
  transform: translateX(-50%);
}

.btn-brown {
  background: var(--btn2-color);
  color: white;
}

.btn-orange {
  background: var(--btn1-color);
  color: white;
}

@media (max-width: 768px) {
  .lp_header {
    width: 100%;
    padding: 16px;
  }

  .logo-container {
    width: 120px;
  }

  .header-buttons {
    top: 12px;
    right: 8px;
    gap: 8px;
    font-size: 0.8rem;
  }

  .header-buttons .btn {
    width: 100px;
    padding: 10px 0;
  }

  .header-buttons .btn-text {
    margin-left: 16px;
    padding-left: 6px;
  }

  .header-buttons .btn-text::before {
    top: 10px;
    left: -8px;
    width: 12px;
  }
}

/* ヒーローセクション */
.hero {
  position: relative;
  width: 100%;
  background: #fff;
  margin: 20px auto 80px;
  max-width: 1280px;
  max-height: 512px;
}

.hero::before {
  content: "";
  display: block;
  padding-top: 40%;
}

.hero-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0 40px;
  gap: 15px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.location-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 auto;
}

.city {
  font-size: 1.2rem;
  font-weight: normal;
  text-align: right;
  line-height: 1.2;
}

.area-name {
  font-size: 3rem;
  font-weight: bold;
  margin-top: -15px;
}

.status-tag {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  margin-right: 16px;
}

.sales-status {
  color: var(--accent-color);
  font-size: 2.8rem;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.house-image {
  width: 90%;
  height: 100%;

  img {
    width: 100%;
    height: auto;
  }
}

.features-list {
  position: absolute;
  top: -185px;
  left: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  overflow: visible;
}

.feature-list-image {
  width: fit-content;
  margin: 0 auto;
}

.property-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f5f5f5;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plot-info {
  background: #000;
  color: white;
  padding: 8px 16px;
}

.plot-label {
  background: #000;
  color: white;
  padding: 4px 14px 6px;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.03em;
}

.hero-left .plot-label {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

.price-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-value {
  font-size: 3rem;
  font-weight: bold;
  color: var(--btn1-color);
}

.catchphrase {
  position: absolute;
  top: 30px;
  right: 46px;
  display: flex;
}

.vertical-text {
  writing-mode: vertical-lr;
  font-size: 2.4rem;
  font-weight: bold;
  text-shadow: 1px 1px 8px #fff, -1px 1px 8px #fff, 1px -1px 8px #fff,
    -1px -1px 8px #fff; /* 四方向に白い影を追加 */
}

@media (max-width: 768px) {
  .hero {
    width: 100%;
    height: 450px;
    margin: 0 auto;
  }

  .hero-content {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 10px;
    gap: 0;
  }

  .hero-left {
    width: 50%;
    order: 2;
    justify-content: flex-start;
    padding-left: 10px;
    margin-top: -50px;
  }

  .hero-image {
    margin-top: 40px;
    width: 100%;
    height: auto;
    order: 1;
  }

  .house-image {
    width: 100%;
    height: auto;
  }

  .catchphrase {
    z-index: 500;
    right: 16px;
  }

  .vertical-text {
    font-size: 2rem;
  }

  .city {
    font-size: 1rem;
  }

  .area-name {
    font-size: 2.5rem;
  }

  .plot-label {
    font-size: 1.2rem;
  }

  .sales-status {
    font-size: 2.2rem;
  }

  .features-list {
    right: 0;
    left: inherit;
    width: 50%;
  }

  .price-banner {
    padding: 20px;
  }
}

/* セクション共通 */
.lp_section-title {
  text-align: center;
  margin: 32px 0;
  font-size: 1.8rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  margin-top: 0;
  padding: 0;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* マップセクション */
.map-section {
  background: var(--bg-color);
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
}

.title-ja {
  position: relative;
  font-size: 2.4rem;
  letter-spacing: normal;
}

.title-ja::before {
  content: "";
  width: 1px;
  height: 80px;
  background: #333;
  display: block;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

.title-en {
  font-size: 0.6rem;
  position: absolute;
  right: -16px;
  top: 0;
  letter-spacing: 0.1em;
}

.map-content {
  text-align: center;
}

.map-heading {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
}

.map-sub-description {
  font-size: 1rem;
  margin-bottom: 32px;
}

.plot-tag {
  display: inline-block;
  background: #000;
  color: white;
  padding: 0.2rem 0.8rem 0.4rem;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}

.plot-map {
  position: relative;
  margin-bottom: 32px;
  width: 100%;
}

.plot-map::before {
  content: "";
  display: block;
  padding-top: 72%;
}

.map-image {
  width: 100%;
  background-color: white;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

.map-image img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.map-image-text {
  width: 90%;
  height: auto;
  object-fit: contain;
  text-align: left;
  font-size: 0.8rem;
  font-family: var(--sans-serif);
}

@media (max-width: 768px) {
  .map-sub-description {
    font-size: 0.8rem;
    padding-left: 16px;
  }

  .price-banner-content {
    flex-direction: column;
    gap: 10px;
  }

  .plot-tag {
    font-size: 1.2rem;
  }

  .plot-map::before {
    padding-top: 100%;
  }
}

/* アバウトセクション */
.about-section {
  background: #fff;
  padding: 4rem 0;
}

.about-content {
  text-align: center;
}

.about-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.about-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: #333;
}

.about-address {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.access-info {
  margin-bottom: 32px;
}

.access-list {
  list-style: none;
  display: inline-block;
  text-align: left;
  padding: 24px 32px;
  border: 1px solid #a0a0a0;
}

.access-list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.access-list li:last-child {
  margin-bottom: 0;
}

.map-container {
  width: 100%;
  margin: 0 auto;
}

.google-map {
  width: 700px;
  height: 450px;
  margin: 0 auto;

  iframe {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .about-address {
    font-size: 1rem;
  }

  .access-list {
    padding: 10px 16px;
  }

  .access-list li {
    font-size: 0.8rem;
  }

  .google-map {
    width: 100%;
    height: 300px;
  }
}

/* CTAセクション */
.cta-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/sample_02.png");
  background-size: cover;
  background-position: center;
  background-color: black; /* 画像読み込み前の背景色 */
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.cta-description {
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.cta-btn {
  font-size: 1.6rem;
  text-decoration: none;
  padding: 8px 32px 16px;
  font-weight: bold;
  width: 260px;
  transition: opacity 0.3s ease;
}

.cta-btn .btn-text {
  margin-top: -10px;
}

.cta-btn .btn-text::before {
  top: 25px;
}

.cta-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }

  .cta-description {
    font-size: 0.8rem;
    padding-left: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn .btn-text::before {
    top: 22px;
  }
}

/* 価格バナーセクション */
.price-banner {
  position: relative;
  background: var(--bg-color-light);
  padding: 32px 0;
}

.price-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.price-content {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 15px;
}

.price-label,
.price-unit {
  font-size: 1.4rem;
}

.price-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
  line-height: 1;
}

/* ロケーションセクション */
.location-section {
  background: var(--bg-color);
  padding: 4rem 0;
}

.location-heading {
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 32px;
}

.location-content {
  overflow: hidden;
}

.location-slider {
  margin: 0 -32px 0;
  padding: 0 32px 0 calc((100vw - 1080px) / 2 + 150px);
}

.location-item {
  padding: 16px;
}

.location-image {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}

.location-img {
  width: 100%;
  position: relative;
  padding-top: 66.67%; /* 3:2のアスペクト比 */
  overflow: hidden;
}

.location-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.distance {
  display: block;
  font-size: 0.8rem;
  color: #4e4e4e;
}

.location-name {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/* スライダーのプログレスバーのスタイル */
.splide__progress {
  width: 100%;
  margin: 32px 0 32px;
  padding: 0 32px 0 calc((100vw - 1080px) / 2 + 150px);
}

.splide__progress__bars {
  width: 280px; /* 6本のボーダー + 間隔の合計幅 */
  display: flex;
  gap: 8px;
}

.splide__progress__bar {
  width: 38px !important;
  height: 2px;
  background: #b0b0b0;
  cursor: pointer;
}

.splide__progress__bar.is-active {
  background: var(--btn1-color);
}

/* 不要な疑似要素を削除 */
.splide__progress__bar::before {
  display: none;
}

.location-points {
  background: #fff;
  padding: 16px 32px 24px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
}

.points-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.points-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  font-size: 1rem;
  width: fit-content;
  margin: 0 auto;

  li {
    width: fit-content;
    padding-left: 30px;
    position: relative;
  }

  li::before {
    content: "●";
    position: absolute;
    left: 14px;
    top: 0;
    color: var(--accent-color);
  }
}

@media (max-width: 768px) {
  .location-slider {
    padding: 0px 32px 0 10%;
  }

  .location-item {
    padding: 8px;
  }

  .splide__progress {
    padding: 0 32px 0 8%;
  }

  .splide__progress__bars {
    gap: 4px;
  }

  .splide__progress__bar {
    width: 28px !important;
    height: 1.5px;
  }

  .location-points {
    margin: 0 24px;
  }

  .points-list {
    grid-template-columns: 1fr;
  }
}

/* フィーチャー＆ギャラリーセクション */
.feature-gallery-section {
  position: relative;
  background-color: var(--bg-color-light);
  padding: 4rem 0 6rem;
}

/* 上部のグラデーションバー */
.feature-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 30px;
  background: linear-gradient(45deg, #d3e0e1, #a0bec1 80%, #212732);
  transform-origin: left;
  border-bottom-right-radius: 15px;
}

/* 下部のグラデーションバー */
.feature-gallery-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 30px;
  background: linear-gradient(45deg, #212732, #a0bec1 20%, #d3e0e1);
  transform-origin: right;
  border-top-left-radius: 15px;
}

.gallery-content {
  margin-top: 4rem;
  overflow: hidden;
}

.gallery-grid {
  gap: 16px;
  margin-bottom: 16px;
  width: 120%;
}

.lp_gallery-item {
  overflow: hidden;
}

.row_2 {
  margin-left: -20%;
  margin-bottom: 4rem;
}

.gallery-image {
  width: 100%;
  position: relative;
  padding-top: 66.67%; /* 3:2のアスペクト比 */
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-button {
  text-align: center;
}

.btn-more {
  display: inline-block;
  background: #8ba9ac;
  color: white;
  text-decoration: none;
  padding: 16px 4rem;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
}

.btn-more:hover {
  opacity: 0.9;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.feature-section {
  background: #fff;
  padding: 4rem 0;
  position: relative;
}

.feature-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.feature-chart-image {
  width: 500px;
  height: 500px;
  background-image: url("images/sample_03.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 3rem;
}

.feature-shop-image {
  width: 80%;
  height: auto;
  margin: 32px auto 8px;
}

.feature-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-description {
  font-size: 1.2rem;
  line-height: 2;
}

.feature-description p {
  margin: 0;
}

/* ベーススタイル */
.slide-animation {
  display: flex;
  overflow: hidden;
  gap: 16px;
}

.slide-contents {
  width: max-content;
  display: flex;
  animation: loopAnimation 40s linear infinite;
}

/* 2行目は逆方向に動かす */
.slide-animation.reverse .slide-contents {
  width: max-content;
  animation: loopAnimationReverse 40s linear infinite;
}

.lp_gallery-item {
  width: calc(100vw / 3.5);
  flex-shrink: 0;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* アニメーションの定義 */
@keyframes loopAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes loopAnimationReverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .feature-chart-image {
    width: 300px;
    height: 300px;
  }

  .feature-description {
    font-size: 1rem;
    padding-left: 16px;
  }

  .feature-shop-image {
    width: 100%;
  }

  .gallery-grid {
    gap: 5px;
    margin-bottom: 5px;
  }

  .btn-more {
    margin-top: 30px;
  }

  .feature-gallery-section::before,
  .feature-gallery-section::after {
    width: 75%;
    height: 12px;
  }

  .slide-animation {
    gap: 5px;
  }

  .lp_gallery-item {
    width: calc(100vw / 2);
  }

  .slide-contents,
  .slide-animation.reverse .slide-contents {
    animation-duration: 20s; /* モバイルでは少し速く */
  }
}

/* 予約フォームセクション */
.reserved-section {
  background: #fff;
  padding: 4rem 0;
}

.reserved-content {
  max-width: 800px;
  margin: 0 auto;
}

.reserved-description {
  text-align: center;
  margin-bottom: 32px;
  line-height: 2;
}

.phone-number {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.phone-icon {
  margin-right: 8px;
}

.reserved-form {
  padding: 3rem;
  border-radius: 8px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding: 54px 0;
  border-top: none;
  background-image: linear-gradient(to right, #ddd 10px, transparent 10px);
  background-size: 15px 0.32px; /* 全体の幅15px、線の幅10px */
  background-repeat: repeat-x;
  background-position: bottom;
  margin-bottom: 0 !important;
}

/* 最初のform-groupの点線を消す */
.form-group.last-input {
  background-image: none;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group label span {
  font-size: 0.8rem;
  margin-left: 45px;
}

.wpcf7-form {
  max-width: 800px;
}

.wpcf7-form .required {
  color: black;
}

.required::before {
  content: "必須";
  background: #a41527;
  color: white;
  font-size: 0.8rem;
  padding: 0 8px 0.2rem;
  margin-right: 8px;
}

.optional::before {
  content: "任意";
  background: #9b9c9c;
  color: white;
  font-size: 0.8rem;
  padding: 0.2rem 8px;
  margin-right: 8px;
}

.date-time-inputs {
  display: flex;
  gap: 16px;
}

.date-time-inputs input,
.date-time-inputs select {
  padding: 16px;
  font-size: 1rem;
}

.date-time-inputs input {
  flex: 2;
}

.date-time-inputs select {
  flex: 1;
}

.postal-code-input {
  display: flex;
  align-items: flex-end;

  span {
    width: 50%;
  }
}

.postal-code-coution {
  width: 50%;
  font-size: 0.8rem;
  color: #9b9c9c;
  margin-left: 10px;
}

.postal-code-coution {
  color: #9b9c9c;
  font-size: 0.8rem;
  margin-left: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* プレースホルダーのスタイル（全ブラウザ対応） */
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-family: "DNP 秀英明朝 Pr6N", "Shippori Mincho", serif;
  color: #c5c6c6;
}

/* Firefox用 */
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: "DNP 秀英明朝 Pr6N", "Shippori Mincho", serif;
  color: #c5c6c6;
}

/* Chrome, Safari, Edge用 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: "DNP 秀英明朝 Pr6N", "Shippori Mincho", serif;
}

.lp_submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin: 48px auto 0;
  background: #251e1c;
  color: white;
  border: none;
  font-size: 1.2rem;
  border-radius: 48px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
  padding-right: 60px; /* 矢印アイコンのためのスペース */
}

.lp_submit-btn input {
  color: white;
  background-color: #251e1c;
  border: none;
  cursor: pointer;
  padding: 24px 40px;
  border-radius: 48px;
  margin: 0;
  font-family: "DNP 秀英明朝 Pr6N", "Shippori Mincho", serif;
}

.wpcf7-submit:hover {
    background: #251e1c;
    color: white;
    transform: translateY(0);
    box-shadow: none;
}

/* 矢印アイコン */
.lp_submit-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
}

/* 矢印の中身 */
.lp_submit-btn::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 3px solid #251e1c;
  border-right: 3px solid #251e1c;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.lp_submit-btn:hover {
  opacity: 0.9;
}

.date-input-wrapper {
  position: relative;
  width: 50%;
}

.date-input {
  width: 100%;
  padding: 14px;
  padding-right: 56px;
  border: 1px solid #ddd;
  font-size: 1rem;
  cursor: pointer;
}

/* カレンダーアイコンを消す */
.date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 56px;
  height: 100%;
  cursor: pointer;
}

/* カスタムカレンダーアイコン */
.custom-calendar-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-calendar-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("./images/calendar.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* セレクトボックスのカスタマイズ */
select {
  appearance: none; /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 100%;
  padding-right: 56px; /* 矢印アイコンのためのスペース */
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}

.time-option {
  color: #9b9c9c;
}

/* カスタム矢印アイコン */
.time-input-wrapper {
  position: relative;
  width: 50%;
}

.time-input-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 56px; /* 矢印部分の幅 */
  height: 100%;
  background-color: #9b9c9c; /* 矢印背景色 */
  pointer-events: none; /* クリックイベントを下層に透過 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-input-wrapper::before {
  content: "▼";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  color: white;
  z-index: 1;
  pointer-events: none;
}

.wpcf7-submit.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .reserved-description {
    font-size: 0.7rem;
    padding-left: 16px;
  }

  .phone-number {
    font-size: 1.4rem;
  }

  .phone-icon {
    width: auto;
    height: 20px;
    margin-right: 0;
    padding-top: 5px;
  }

  .reserved-form {
    width: 100%;
    padding: 0;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  .time-input-wrapper::after {
    width: 48px; /* 矢印部分の幅 */
  }
  .time-input-wrapper::before {
    right: 24px;
  }
}

/* フッター */
#body_footer > div.container {
  background-color: #fff;
  padding: 0;
}

/* コピーライト */
#copyright {
  display: block;
  font-size: 12px;
  line-height: 45px;
  text-align: center;
}

@media (min-width: 1250px) {
  .hero-left .plot-label {
    width: 75%;
  }

  .sales-status {
    padding-left: 10px;
  }
}

@media (max-width: 1080px) {
  .location-slider {
    padding: 0 32px 0 calc(100vw - 85vw);
  }

  .splide__progress {
    padding: 0 32px 0 calc(100vw - 85vw);
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
  /* コンテナ幅の調整 */
  .container {
    width: 100%;
    padding: 0 16px;
  }

  /* セクション共通 */
  .section-content {
    width: 100%;
  }

  .map-section,
  .about-section,
  .feature-section,
  .reserved-section {
    width: 100%;
    padding: 80px 5px;
  }

  .location-section {
    width: 100%;
    padding: 80px 0;
  }

  .lp_section-title {
    margin-top: -32px;
  }

  .title-ja {
    font-size: 2rem;
  }

  .title-ja::before {
    top: -60px;
    height: 50px;
  }

  .section-description {
    font-size: 1.4rem;
    padding-left: 16px;
  }

  /* フォーム */

  /* 画像 */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* スクロールアニメーション用の基本スタイル */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
