@charset "UTF-8";
/* =========================================================
   共通変数
========================================================= */
/* =========================================================
   アクセシビリティ共通
========================================================= */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

/* =========================================================
   Contact Form 7
========================================================= */
.cf7-table {
  display: flex;
  flex-direction: column;
}
.cf7-table .cf7-row {
  display: flex;
  flex-wrap: wrap;
}
.cf7-table {
  /* 左ラベル */
}
.cf7-table .cf7-label {
  width: 30%;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: bold;
  background: #f0f0f0;
}
.cf7-table {
  /* 右入力欄 */
}
.cf7-table .cf7-field {
  flex: 1;
  padding: 15px;
  box-sizing: border-box;
}
.cf7-table .cf7-field input[type=text],
.cf7-table .cf7-field input[type=tel],
.cf7-table .cf7-field input[type=email],
.cf7-table .cf7-field textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.cf7-table .cf7-field textarea {
  min-height: 120px;
}
.cf7-table .cf7-field p {
  margin: 0;
  line-height: 1.5;
}
.cf7-table .cf7-field {
  /* チェックボックス・ラジオ */
}
.cf7-table .cf7-field .wpcf7-list-item {
  margin: 0;
}
.cf7-table .cf7-field .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf7-table .cf7-field input[type=checkbox] {
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.cf7-table .cf7-field {
  /* 送信ボタン */
}
.cf7-table .cf7-field.submit {
  padding-top: 3em;
  text-align: center;
}
.cf7-table .cf7-field.submit input[type=submit] {
  width: 100%;
  padding: 1em 3em;
  font-size: 1.25rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cf7-table .cf7-field.submit .wpcf7-spinner {
  display: none;
  margin: 1em auto 0;
  float: none;
  text-align: center;
}
.cf7-table .cf7-field.submit input.has-spinner + .wpcf7-spinner {
  display: block;
}
.cf7-table {
  /* 必須ラベル */
}
.cf7-table .required-label {
  margin-left: 0.5em;
  padding: 2px 6px;
  font-size: 0.75rem;
  color: #fff;
  background: #c00;
  border-radius: 3px;
  white-space: nowrap;
}
.cf7-table {
  /* 補足文 */
}
.cf7-table .form-note {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #666;
}

/* CF7共通補正 */
.wpcf7-list-item {
  margin: 0;
}

/* fieldset / legend の見た目リセット */
.cf7-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.cf7-fieldset legend {
  margin: 0;
  padding: 0;
}

/* =========================================================
   子ども入力欄
========================================================= */
.js-children-wrap .child-row {
  display: none;
  margin-bottom: 12px;
}
.js-children-wrap .child-row.is-active {
  display: block;
}
.js-children-wrap {
  /* ＋ / − ボタンと注釈 */
}
.js-children-wrap .children-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 8px;
}
.js-children-wrap .children-actions .child-add,
.js-children-wrap .children-actions .child-remove,
.js-children-wrap .children-actions button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #333;
  background: #fff;
  border: 2px solid #333;
  border-radius: 0 !important;
  cursor: pointer;
}
.js-children-wrap .children-actions .form-note {
  display: inline-block;
  margin: 0;
}

/* =========================================================
   モバイル時のフォーム調整
========================================================= */
@media (max-width: 768px) {
  .cf7-table .cf7-row {
    flex-direction: column;
  }
  .cf7-table .cf7-label {
    width: 100%;
    padding: 8px;
    justify-content: flex-start;
  }
  .cf7-table .cf7-field {
    width: 100%;
    padding: 10px 0;
  }
  .cf7-table .cf7-row .cf7-field.submit input[type=submit] {
    width: 100%;
    padding: 0.75em 1em;
    font-size: 1rem;
  }
  .js-children-wrap .children-actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
/* =========================================================
   装飾画像 共通
   ※ CLS対策として極端な飛び出しを減らし、
      transform で位置を安定させる
========================================================= */
.dots,
.information-img,
.price-img,
.sakura-img {
  position: relative;
  overflow: hidden;
}

/* 疑似要素の共通設定 */
.dots::before,
.dots::after,
.information-img::after,
.price-img::before,
.sakura-img::after {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

/* =========================================================
   ドット背景装飾
========================================================= */
.dots {
  --DOTS_COLOR: #fefefe;
  --DOTS_SIZE: 20px;
  --DOTS_POSITION: 20%;
  background-image: radial-gradient(var(--DOTS_COLOR) var(--DOTS_POSITION), transparent var(--DOTS_POSITION)), radial-gradient(var(--DOTS_COLOR) var(--DOTS_POSITION), transparent var(--DOTS_POSITION));
  background-size: var(--DOTS_SIZE) var(--DOTS_SIZE);
  background-position: 0 0, calc(var(--DOTS_SIZE) / 2) calc(var(--DOTS_SIZE) / 2);
}

.dots {
  position: relative;
  overflow: visible;
  z-index: 20;
}

.dots::after {
  z-index: 21;
}

/* 右上の列車 */
.dots::after {
  top: 0;
  right: 0;
  width: min(42vw, 720px);
  background-image: url("/wp-content/uploads/2026/03/sakura-6.webp");
  transform: translate(0, -50%);
  z-index: 100;
}

/* 左下の花 */
.dots::before {
  bottom: 0;
  left: 0;
  z-index: 2;
  width: min(24vw, 300px);
  background-image: url("/wp-content/uploads/2026/03/sakura3.webp");
  transform: translate(38%, 50%);
}

/* タブレット */
@media (max-width: 1200px) {
  .dots::after {
    width: min(38vw, 420px);
    transform: translate(0, -26%);
  }
}
@media (max-width: 1024px) {
  .dots::before {
    width: min(18vw, 180px);
    transform: translate(28%, 42%);
  }
}
@media (max-width: 767px) {
  .dots::after {
    width: 230px;
    transform: translate(0, -50%);
    opacity: 0.9;
  }
  .dots::before {
    bottom: 0;
    left: 0;
    width: 100px;
    transform: translate(10%, 20%);
    opacity: 0.9;
  }
}
/* =========================================================
   各セクション装飾
========================================================= */
/* information 右上の花 */
.information-img::after {
  top: 0;
  right: 0;
  z-index: 2;
  width: min(24vw, 300px);
  background-image: url("/wp-content/uploads/2026/03/sakura-5.webp");
  transform: translate(-30%, -8%);
}

@media (max-width: 1024px) {
  .information-img::after {
    width: min(22vw, 180px);
    transform: translate(-6%, -6%);
  }
}
@media (max-width: 767px) {
  .information-img::after {
    top: 0;
    right: 0;
    width: 100px;
    transform: translate(0%, -3%);
    opacity: 0.9;
  }
}
/* price 太陽と雲 */
.price-img::before {
  top: 0;
  left: 0;
  z-index: 2;
  width: min(24vw, 300px);
  background-image: url("/wp-content/uploads/2026/03/sakura-7.webp");
  transform: translate(30%, 3%);
}

@media (max-width: 1024px) {
  .price-img::before {
    width: min(20vw, 160px);
    transform: translate(18%, 8%);
  }
}
@media (max-width: 767px) {
  .price-img::before {
    top: 0;
    left: 0;
    width: 100px;
    transform: translate(10%, 8%);
    opacity: 0.9;
  }
}
/* sakura 虹と雲 */
.sakura-img::after {
  top: 0;
  right: 0;
  z-index: 10;
  width: min(24vw, 300px);
  background-image: url("/wp-content/uploads/2026/03/sakura-8.webp");
  transform: translate(-40%, -5%);
}

@media (max-width: 1024px) {
  .sakura-img::after {
    width: min(20vw, 160px);
    transform: translate(-6%, -12%);
  }
}
@media (max-width: 767px) {
  .sakura-img::after {
    top: 0;
    right: 0;
    width: 100px;
    transform: translate(0%, -50%);
    opacity: 0.9;
  }
}
/* =========================================================
   ScrollHint カスタム
========================================================= */
.scroll-hint-icon {
  color: #333;
  font-size: 0.8rem;
  animation: hintMove 1.5s infinite;
}

.scroll-hint-text {
  font-size: 0.75rem;
  color: #666;
}

.scroll-hint-icon-wrap {
  transform: scale(1.2);
}

@keyframes hintMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
/* PCではScrollHint非表示 */
@media (min-width: 1025px) {
  .scroll-hint-icon-wrap,
  .scroll-hint-text,
  .scroll-hint-shadow-wrap,
  .scroll-hint-shadow-left,
  .scroll-hint-shadow-right {
    display: none !important;
  }
}
/* =========================================================
   料金表スクロール制御
========================================================= */
.price-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

/* ScrollHint周辺の縦スクロール抑制 */
.price-table-wrap,
.scroll-hint,
.scroll-hint-wrapper,
.scroll-hint-scrollable {
  overflow-y: hidden !important;
}

/* ScrollHintの高さブレ防止 */
.scroll-hint-shadow-wrap {
  height: 100%;
}