@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

html {
  scroll-behavior: smooth;
}

body.ijga-camp-lp-body {
  margin: 0;
  background: #fff;
  color: #222;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  line-height: 1.9;
}

.ijga-camp-lp-body #header,
.ijga-camp-lp-body #footer,
.ijga-camp-lp-body header,
.ijga-camp-lp-body footer,
.ijga-camp-lp-body .site-header,
.ijga-camp-lp-body .site-footer,
.ijga-camp-lp-body .l-header,
.ijga-camp-lp-body .l-footer,
.ijga-camp-lp-body .page_title,
.ijga-camp-lp-body .breadcrumb,
.ijga-camp-lp-body .pankuzu,
.ijga-camp-lp-body .pageTop,
.ijga-camp-lp-body .fixed_bnr,
.ijga-camp-lp-body .sp_nav,
.ijga-camp-lp-body .drawer-hamburger {
  display: none !important;
}

.ijga-camp-lp-main,
.ijga-camp-lp-article {
  margin: 0;
  padding: 0;
}

.ijga-lp {
  color: #222;
  font-size: 16px;
  line-height: 1.9;
}

.ijga-lp *,
.ijga-lp *::before,
.ijga-lp *::after {
  box-sizing: border-box;
}

.ijga-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ijga-lp a {
  text-decoration: none;
}

.ijga-lp__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.ijga-lp-section {
  padding: 80px 0;
}

.ijga-lp-sec__title {
  margin: 0 0 32px;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #0f2233;
  text-align: center;
}

.ijga-lp-sec__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 14px auto 0;
  background: #c79b43;
  border-radius: 10px;
}

/* Hero */
.ijga-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #0f2233;
  display: flex;
  align-items: center;
}

.ijga-hero__video {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ijga-hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.15);
}

.ijga-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 19, 29, 0.45) 0%, rgba(8, 19, 29, 0.68) 100%);
}

.ijga-hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.ijga-hero__award {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  width: 180px;
  max-width: 28vw;
  opacity: 0.92;
}

.ijga-hero__award img {
  width: 100%;
  height: auto;
  display: block;
}

.ijga-hero__sub,
.ijga-hero__title,
.ijga-hero__lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ijga-hero__sub {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #d8b067;
  font-weight: 700;
}

.ijga-hero__title {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.05;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: #fff;
}

.ijga-hero__lead {
  margin: 0 0 10px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
  color: #fff;
}

.ijga-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 0;
}

.ijga-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.ijga-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.ijga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
}

.ijga-btn--primary {
  background: #c79b43;
  color: #fff;
}

.ijga-btn--secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.ijga-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Logo */
.ijga-lp-logo {
  text-align: center;
  margin-bottom: 20px;
}

.ijga-lp-logo img {
  width: 200px;
  max-width: 50%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ijga-lp-logo img {
    width: 50%;
  }
}

/* Dynamic visual */
.ijga-lp-visual {
  padding-top: 40px;
  padding-bottom: 20px;
}

.ijga-lp-visual__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.ijga-lp-visual__wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.ijga-lp-visual__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.55) 100%);
}

.ijga-lp-visual__catch {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* Intro */
.ijga-lp-intro {
  background: #f7f8fa;
}

.ijga-lp-lead__text {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
}

.ijga-lp-recommend {
  margin-top: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ijga-lp-recommend__title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 900;
  color: #0f2233;
}

.ijga-lp-recommend__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ijga-lp-recommend__list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.ijga-lp-recommend__list li:last-child {
  margin-bottom: 0;
}

.ijga-lp-recommend__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c79b43;
  font-weight: 900;
}

/* Grid */
.ijga-lp-grid {
  display: grid;
  gap: 24px;
}

.ijga-lp-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.ijga-lp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.ijga-lp-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ijga-lp-block,
.ijga-lp-box,
.ijga-lp-card,
.ijga-lp-faq__item,
.ijga-lp-form__box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ijga-lp-block,
.ijga-lp-box,
.ijga-lp-card,
.ijga-lp-form__box {
  padding: 30px;
}

.ijga-lp-block__title,
.ijga-lp-box__title {
  margin: 0 0 12px;
  color: #0f2233;
  font-weight: 900;
  line-height: 1.5;
}

.ijga-lp-block__title {
  font-size: 24px;
}

.ijga-lp-box__title {
  font-size: 21px;
}

.ijga-lp-box__img {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
}

.ijga-lp-box__img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* Location */
.ijga-lp-location {
  background: #f7f8fa;
}

.ijga-lp-location__cols {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 36px;
  align-items: center;
}

.ijga-lp-location__photo img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.ijga-lp-location__map {
  margin-top: 18px;
}

.ijga-lp-location__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 18px;
}

.ijga-lp-location__lead {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.6;
  color: #0f2233;
}

.ijga-lp-location__points {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.ijga-lp-location__point {
  padding: 12px 16px;
  background: #fff;
  border-left: 4px solid #c79b43;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.ijga-lp-location__right p {
  margin: 0 0 16px;
}

.ijga-lp-location__cta {
  margin-top: 24px;
  text-align: center;
}

.ijga-lp-location__cta .ijga-btn {
  display: inline-flex;
}

/* Safe */
.ijga-lp-safe {
  background: #f7f8fa;
}

.ijga-lp-safe__cols {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 32px;
  align-items: center;
}

.ijga-lp-safe__image {
  width: 100%;
}

.ijga-lp-safe__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.ijga-lp-safe .ijga-lp-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Day */
.ijga-lp-day__cols {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 30px;
  align-items: start;
}

.ijga-lp-day__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.ijga-lp-schedule {
  border-top: 1px solid #d1d5db;
}

.ijga-lp-schedule__row,
.ijga-lp-schedule-list__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #d1d5db;
}

.ijga-lp-schedule__row span:first-child,
.ijga-lp-schedule-list__item span:first-child {
  font-weight: 900;
  color: #0f2233;
  white-space: nowrap;
}

.ijga-lp-schedule__row span:last-child,
.ijga-lp-schedule-list__item span:last-child {
  white-space: nowrap;
}

.ijga-lp-note {
  margin-top: 20px;
  color: #4b5563;
}

/* Dates */
.ijga-lp-dates {
  background: #f7f8fa;
}

/* Gallery */
.ijga-lp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ijga-lp-gallery__item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ijga-lp-gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ijga-lp-gallery__item:hover img {
  transform: scale(1.04);
}

/* Japan */
.ijga-lp-japan__cols {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 30px;
  align-items: stretch;
}

.ijga-lp-japan__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 16px;
  border: 0;
  display: block;
}

.ijga-lp-japan__tel {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 900;
  color: #0f2233;
}

.ijga-lp-japan__tel a {
  color: #c79b43;
}

/* FAQ */
.ijga-lp-faq__item {
  padding: 24px 26px;
  margin-bottom: 16px;
}

.ijga-lp-faq__item:last-child {
  margin-bottom: 0;
}

.ijga-lp-faq__item h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.5;
  color: #0f2233;
  font-weight: 900;
}

/* Form */
.ijga-lp-form__lead {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.ijga-lp-form__box {
  padding: 34px;
}

.ijga-lp-form__box .wpcf7 {
  margin: 0;
}

.ijga-lp-form__box input[type="text"],
.ijga-lp-form__box input[type="email"],
.ijga-lp-form__box input[type="tel"],
.ijga-lp-form__box input[type="number"],
.ijga-lp-form__box textarea,
.ijga-lp-form__box select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
}

.ijga-lp-form__box textarea {
  min-height: 150px;
}

.ijga-lp-form__box input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: #c79b43;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.ijga-lp-form__box .wpcf7-spinner {
  display: block;
  margin-top: 16px;
}

.ijga-lp-form__submit {
  margin-top: 26px;
  text-align: center;
}

/* Sticky CTA */
.ijga-sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: block;
}

.ijga-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #c79b43;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* Utility */
.ijga-lp-center {
  text-align: center;
}

@media (max-width: 1100px) {
  .ijga-lp-grid--3,
  .ijga-lp-grid--4,
  .ijga-lp-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ijga-lp-section {
    padding: 58px 0;
  }

  .ijga-lp-sec__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .ijga-hero {
    min-height: 86vh;
  }

  .ijga-hero__sub {
    font-size: 15px;
  }

  .ijga-hero__lead {
    font-size: 15px;
  }

  .ijga-hero__badge {
    font-size: 12px;
    min-height: 38px;
  }

  .ijga-hero__award {
    left: 12px;
    bottom: 12px;
    width: 120px;
    max-width: 40vw;
    opacity: 0.85;
  }

  .ijga-lp-grid--2,
  .ijga-lp-grid--3,
  .ijga-lp-grid--4,
  .ijga-lp-location__cols,
  .ijga-lp-safe__cols,
  .ijga-lp-day__cols,
  .ijga-lp-gallery__grid,
  .ijga-lp-japan__cols {
    grid-template-columns: 1fr;
  }

  .ijga-lp-schedule__row,
  .ijga-lp-schedule-list__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ijga-lp-schedule__row span:last-child,
  .ijga-lp-schedule-list__item span:last-child {
    white-space: normal;
  }

  .ijga-lp-block,
  .ijga-lp-box,
  .ijga-lp-card,
  .ijga-lp-form__box,
  .ijga-lp-recommend,
  .ijga-lp-faq__item {
    padding: 22px;
  }

  .ijga-btn,
  .ijga-sticky-cta__btn {
    min-width: 100%;
  }

  .ijga-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .ijga-lp-box__img img,
  .ijga-lp-gallery__item img {
    height: 220px;
  }

  .ijga-lp-visual__wrap img {
    height: 300px;
  }

  .ijga-lp-visual__overlay {
    padding: 20px;
  }

  .ijga-lp-visual__catch {
    font-size: 24px;
  }

  .ijga-lp-location__map iframe,
  .ijga-lp-japan__map iframe {
    height: 240px;
    min-height: 240px;
  }

  .ijga-lp-safe__image img {
    min-height: auto;
    height: auto;
  }
}
/* ===== 強制カラーテーマ（最優先） ===== */

body.ijga-camp-lp-body .ijga-lp {
  color: #183041 !important;
  background: #fdfefe !important;
}

/* セクション背景 */
body.ijga-camp-lp-body .ijga-lp-intro,
body.ijga-camp-lp-body .ijga-lp-location,
body.ijga-camp-lp-body .ijga-lp-safe,
body.ijga-camp-lp-body .ijga-lp-dates {
  background: linear-gradient(180deg, #f8fcfc 0%, #f3f8f8 100%) !important;
}

/* 見出し */
body.ijga-camp-lp-body .ijga-lp-sec__title {
  color: #183041 !important;
}

body.ijga-camp-lp-body .ijga-lp-sec__title::after {
  background: #d6a84f !important;
}

/* ボタン */
body.ijga-camp-lp-body .ijga-btn--primary,
body.ijga-camp-lp-body .ijga-sticky-cta__btn {
  background: linear-gradient(135deg, #d6a84f 0%, #e4b95f 100%) !important;
  color: #fff !important;
}

body.ijga-camp-lp-body .ijga-btn--secondary {
  background: rgba(95, 190, 196, 0.16) !important;
  border: 1px solid rgba(95, 190, 196, 0.45) !important;
  color: #fff !important;
}

/* 強みボックス */
body.ijga-camp-lp-body .ijga-lp-box,
body.ijga-camp-lp-body .ijga-lp-block,
body.ijga-camp-lp-body .ijga-lp-card {
  border: 1px solid #e4ecec !important;
  box-shadow: 0 10px 28px rgba(14, 46, 63, 0.06) !important;
}

/* チェックアイコン */
body.ijga-camp-lp-body .ijga-lp-recommend__list li::before {
  color: #d6a84f !important;
}

/* アクセントライン */
body.ijga-camp-lp-body .ijga-lp-location__point {
  border-left: 4px solid #5fbec4 !important;
}
<iframe
  title="IJGA Golf Camp"
  src="https://www.youtube.com/embed/oFsK3Ftw6vw?start=30&autoplay=1&mute=1&controls=0&loop=1&playlist=oFsK3Ftw6vw&playsinline=1&rel=0&modestbranding=1"
  frameborder="0"
  allowfullscreen="allowfullscreen">
</iframe>
body.form-visible .ijga-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.ijga-sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.form-visible .ijga-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.ijga-sticky-cta {
  bottom: 90px;
}