/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.accent {
  color: #a71621;
}

/*
  Elementor breakpoints:
    desktop  : 1025px〜
    tablet   : 768px〜1024px
    mobile   : 〜767px

  hidden-desktop : 1025px〜 で非表示
  hidden-tablet  : 768px〜1024px で非表示
  hidden-mobile  : 〜767px で非表示
  pc-only        : desktop のみ表示（tablet/mobile で非表示）
  sp-only        : mobile のみ表示（desktop/tablet で非表示）
*/

/* デフォルト：desktop表示 */
.hidden-desktop {
  display: none !important;
}
.hidden-tablet {
  display: block;
} /* tabletでは非表示にする → メディアクエリで制御 */
.hidden-mobile {
  display: block;
} /* mobileでは非表示にする → メディアクエリで制御 */

.pc-only {
  display: block;
} /* tablet/mobile で非表示 */
.sp-only {
  display: none;
} /* desktop/tablet では非表示 */

/* ========== HEADER ========== */
#header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 3px 10px rgba(120, 120, 120, 0.2);
}

.header-wrap {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  max-width: 100%;
}

#logo {
  flex-shrink: 0;
  margin-right: 20px;
}

#logo img {
  height: 60px;
  width: auto;
}

#main-nav {
  flex: 1;
}

#main-nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0;
  flex-wrap: nowrap;
}

#main-nav ul li a {
  display: block;
  padding: 0 10px;
  font-size: 0.78em;
  color: #000;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

#main-nav ul li a:hover {
  color: #a71621;
}

#main-nav ul li a span {
  display: block;
  font-size: 0.85em;
}

.nav-btn {
  background-color: #a71621;
  color: #fff;
  border: none;
  border-radius: 80px;
  padding: 6px 18px;
  font-size: 0.8em;
  cursor: pointer;
  white-space: nowrap;
}

.nav-btn:hover {
  background-color: #c0192a;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 15px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s;
}

/* ========== DRAWER ========== */
.drawer-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #d5d5d5;
  z-index: 1000;
  transition: left 0.3s ease;
  padding: 70px 20px 30px;
  overflow-y: auto;
}

.drawer-nav.is-open {
  left: 0;
}

.drawer-nav ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.drawer-link {
  display: block;
  padding: 14px 10px;
  color: #000;
  font-size: 0.9em;
  line-height: 1.4;
}

.drawer-link span {
  font-size: 0.8em;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.drawer-overlay.is-open {
  display: block;
}

/* ========== KV ========== */
#top {
  line-height: 0;
}
.kv-sp {
  display: none;
}
#top img {
  width: 100%;
}

/* ========== SECTION COMMON ========== */
.section-label {
  margin-bottom: 30px;
}

.label-en {
  font-size: 5em;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.section-about .label-en,
.section-overview .label-en {
  color: #fff;
  font-weight: 700;
  font-size: 5em;
}
.section-outline .label-en {
  color: #333;
}
.section-application .label-en {
  color: #fff;
}

.label-ja {
  font-size: 1.25em;
  font-weight: 700;
  color: #ccc;
  margin-top: 4px;
  text-align: center;
}

.section-outline .label-ja {
  color: #666;
}

.banner {
  padding: 80px 0;
  background: #1a1a1a;
}

/* ========== ABOUT ========== */
.section-about {
  background: #1a1a1a;
  padding: 80px 0;
}

.about-text {
  color: #fff;
}
.about-text p {
  font-size: 1.2em;
  margin-bottom: 1.4em;
  text-align: center;
}
.about-text strong {
  font-weight: bold;
}

/* ========== OVERVIEW ========== */
.section-overview {
  background: #111;
  padding: 80px 0;
  color: #fff;
}

.overview-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.overview-sub {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 40px;
  text-align: center;
}

.over-view-caution {
  margin: 0 0 24px;
  color: #fff;
  font-size: 10px;
  text-align: right;
}

/* 写真グリッド */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.photo-grid-3 img,
.photo-grid-2 img {
  width: 100%;
  object-fit: cover;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 10px;
}

.img-note {
  font-size: 0.85em;
  color: #999;
  text-align: right;
  margin-bottom: 40px;
}

/* day banner */
.day-banner {
  width: 100%;
  margin: 40px 0 20px;
}

/* tournament */
.tournament-img {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* day heading */
.day-heading {
  font-size: 1.15em;
  font-weight: bold;
  color: #fff;
  margin: 30px 0 12px;
  border-left: 4px solid #a71621;
  padding-left: 12px;
  line-height: 1.5;
}

.sub-heading {
  font-size: 0.9em;
  font-weight: normal;
}

.day-desc {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 0.95em;
}

/* SPEC TABLE */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.spec-table th,
.spec-table td {
  padding: 13px 15px;
  font-size: 0.9em;
  line-height: 1.7;
  border-bottom: 1px solid #fff;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  background: #000;
  color: #fff;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}

.spec-table td {
  background: #2f2d2c;
  color: #fff;
  width: 70%;
}

.table-link {
  color: lightblue;
  text-decoration: underline;
}

/* outline table override */
.outline-table th {
  background: #222;
}
.outline-table td {
  background: #f5f5f5;
  color: #333;
}
.outline-table th,
.outline-table td {
  border-bottom: 1px solid #d5d5d5;
}

/* ========== PLAY ========== */
.section-play {
  background-color: #f7faf8;
  background-image:
    radial-gradient(#d5e7e1 15%, transparent 15%),
    radial-gradient(#d5e7e1 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
  padding: 80px 0;
}
.section-play .section-main-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 64px;
}
.section-play .section-title-en {
  margin: 0 0 40px;
}
.section-play .section-title-ja {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  color: #fff;
}

.section-play .digital-main-title {
  margin: 0 0 64px;
}

.section-play .play-main-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sm-dark-green);
  margin-top: -20px;
  margin-bottom: 20px;
}

.section-play ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 80px;
}

/* ========== DIGITAL ========== */
.section-digital {
  background-color: #f7faf8;
  background-image:
    radial-gradient(#d5e7e1 15%, transparent 15%),
    radial-gradient(#d5e7e1 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
  padding: 80px 0;
}

.digital-logo {
  max-width: 300px;
  margin: 0 auto 30px;
}

.course-main-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bg-dark-green);
  margin-top: -20px;
  margin-bottom: 20px;
}

.course-lead {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.digital-title {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.digital-sub {
  text-align: center;
  color: #444;
  margin-bottom: 40px;
  font-size: 0.95em;
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.course-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.course-card-img {
  width: 100%;
}

.course-btn-wrap img {
  max-width: 300px;
  margin: 0 auto;
  cursor: pointer;
}
.course-btn-wrap:hover img {
  opacity: 0.85;
  transform: scale(0.97);
  transition: all 0.2s;
}

.course-sp-img {
  width: 100%;
}
.course-sp-btn {
  max-width: 300px;
  margin: 10px auto 20px;
}

.section-digital .past {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  margin: 120px 0 0;
}

.past-text {
  text-align: right;
  font-size: 14px;
}

/* ========== OUTLINE ========== */
.section-outline {
  background: #fff;
  padding: 80px 0;
}

.outline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.outline-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ========== APPLICATION ========== */
.application-section01 {
  background: #111;
  padding: 80px 0;
  text-align: center;
}

.application-section01 .label-en {
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.application-section01 .label-ja {
  color: #ccc;
  margin-bottom: 20px;
  text-align: center;
}

/* ========== APPLICATION ========== */
.section-application {
  background: #111;
  padding: 80px 0;
  text-align: center;
}

.section-application .label-en {
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.section-application .label-ja {
  color: #ccc;
  margin-bottom: 20px;
  text-align: center;
}

.app-note {
  color: #ccc;
  font-size: 0.9em;
  margin-bottom: 30px;
}

.text-link {
  color: #00ccff;
  text-decoration: underline;
}

.app-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.app-btn-img {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.2s;
}

.app-btn-img:hover {
  opacity: 0.85;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #fff;
  padding: 60px 0 30px;
  text-align: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-logos img {
  max-height: 80px;
  width: auto;
}

.footer-line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.footer-label {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 10px;
}

.footer-redee-logo {
  max-width: 200px;
  margin: 0 auto 20px;
}

.footer-info {
  font-size: 0.85em;
  line-height: 2;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto 30px;
}

.footer-partner {
  margin: 10px 0 30px;
}
.footer-partner img {
  max-width: 200px;
  margin: 0 auto;
}

.footer-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.organizer-logos {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.copyright {
  font-size: 0.8em;
  color: #999;
  text-align: center;
}

/* ========== POPUP ========== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15%;
}

.popup-overlay.is-open {
  display: flex;
}

.popup-container {
  background: #d5d5d5;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(2, 2, 2, 0.5);
  padding: 24px;
  max-width: 760px;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  background: #a71621;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.popup-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.popup-photo {
  flex-shrink: 0;
  width: 40%;
}
.popup-photo img {
  width: 100%;
  border-radius: 6px;
}

.popup-status {
  flex: 1;
}

.popup-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.popup-icon {
  width: 25%;
  flex-shrink: 0;
}

.popup-title-name {
  font-weight: bold;
  font-size: 1.1em;
  color: #000;
  line-height: 1.4;
}

.popup-exp {
  font-size: 0.9em;
  font-weight: bold;
  color: #000;
  line-height: 1.7;
}

/* ========== SINMISATO SECTIONS ========== */

/* CSS変数（新三郷用） */
:root {
  --sm-primary: #006e53;
  --sm-accent: #25ac71;
  --sm-dark-green: #2d8534;
  --sm-text-light: #ffffff;
  --sm-text-dark: #333333;
  --sm-transition: 0.3s;
}

/* タイトル共通（新三郷） */
.section-title-en {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
}

.section-title-en.green {
  color: var(--sm-dark-green);
}
.section-title-en.white {
  color: #fff;
}

.section-title-ja {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  color: #fff;
}

.section-title-ja.dark {
  color: var(--sm-text-dark);
}
.section-title-ja.white {
  color: #fff;
}

/* .container（新三郷） */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* COURSE（新三郷） */
.course-section {
  background-color: #f7faf8;
  background-image:
    radial-gradient(#d5e7e1 15%, transparent 15%),
    radial-gradient(#d5e7e1 15%, transparent 15%);
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
  padding: 80px 0;
}

.digital-banner {
  margin: 0 0 80px;
}

.course-main-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sm-dark-green);
  margin-top: -20px;
  margin-bottom: 20px;
}

.course-lead {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
}

.course-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-image-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.course-image-block img {
  border-radius: 8px;
  width: 100%;
  max-width: 900px;
}

.course-btn-block {
  margin-top: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.modal-trigger-btn {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  max-width: 480px;
  width: 80%;
  transition: transform var(--sm-transition);
}

.modal-trigger-btn:hover {
  transform: scale(1.03);
}

.course-section .notes {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 30px;
}

/* OUTLINE（新三郷） */
.outline-section {
  background-color: #f0f7f3;
  padding: 80px 0;
}

.outline-table-block {
  width: 100%;
}

.outline-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.outline-table th,
.outline-table td {
  padding: 18px 20px;
  font-size: 0.95rem;
}

.outline-table th {
  background-color: var(--sm-primary);
  color: #fff;
  width: 30%;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  border-bottom: 2px solid #fff;
}

.outline-table td {
  background-color: var(--sm-accent);
  color: #fff;
  width: 70%;
  font-weight: 500;
  border-bottom: 2px solid #fff;
}

.outline-table tr:last-child th,
.outline-table tr:last-child td {
  border-bottom: none;
}

.outline-map-block {
  position: relative;
  width: 100%;
  padding-top: 0;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-height: 350px;
}

.outline-map-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* APPLICATION（新三郷） */
.application-section {
  background-color: var(--sm-primary);
  padding: 80px 0;
  text-align: center;
}

.app-lead {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.app-lead a {
  color: #00e5ff;
  text-decoration: underline;
}

.area-apply-btn {
  margin: 0 0 40px;
}

.area-apply-btn .apply-btn {
  display: inline-flex;
  width: 100%;
  max-width: 760px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 48px;
  background-color: #ffe200;
  border: none;
  border-radius: 60px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.area-apply-btn .apply-btn-wrap + .apply-btn-wrap {
  margin-top: 32px;
}

.area-apply-btn .apply-btn:hover {
  transform: scale(0.9);
}

.area-apply-btn .apply-btn .main-text {
  color: #006341;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

.caution {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.app-cta-img-btn {
  display: inline-block;
  max-width: 500px;
  width: 90%;
  transition: transform var(--sm-transition);
}

.app-cta-img-btn:hover {
  transform: scale(1.03);
}

/* ========== RESPONSIVE ========== */

/* --- Tablet (768〜1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Elementor hidden-tablet に相当 */
  .hidden-tablet {
    display: none !important;
  }

  /* タブレットでは pc-only を非表示にしない（デスクトップ版を流用）*/
  /* pc-only はそのまま表示 */
  /* sp-only は引き続き非表示 */

  .outline-grid {
    grid-template-columns: 1fr;
  }

  #main-nav ul li a {
    padding: 0 6px;
    font-size: 0.72em;
  }
  .nav-btn {
    padding: 5px 12px;
    font-size: 0.75em;
  }

  /* 新三郷セクション */
  .outline-map-block {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-height: 350px;
  }

  .outline-map-block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* --- Mobile (〜767px) --- */
@media (max-width: 767px) {
  /* Elementor hidden-mobile に相当 */
  .hidden-mobile {
    display: none !important;
  }

  /* pc-only (= hidden-tablet + hidden-mobile) → mobile で非表示 */
  .pc-only {
    display: none !important;
  }
  /* sp-only (= hidden-desktop + hidden-tablet) → mobile で表示 */
  .sp-only {
    display: block !important;
  }

  .hamburger {
    display: flex;
  }
  #main-nav {
    display: none;
  }

  .header-inner {
    height: 50px;
  }
  #logo img {
    height: 50px;
  }

  .label-en {
    font-size: 36px;
  }

  .section-about,
  .section-overview,
  .section-play,
  .section-digital,
  .section-outline,
  .section-application {
    padding: 50px 0;
  }

  .section-about .label-en,
  .section-overview .label-en {
    font-size: 2.5rem;
  }

  /* 新三郷セクション モバイル */
  .course-section,
  .outline-section,
  .application-section {
    padding: 50px 0;
  }

  .section-title-en {
    font-size: 2.5rem;
  }
  .section-title-ja {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  .course-main-title {
    font-size: 1.8rem;
  }
  .course-container {
    padding: 15px;
  }

  .section-play .section-title-ja {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  .section-play .section-main-title {
    font-size: 2.5rem;
    margin-bottom: 64px;
  }

  .section-play .paly-main-title {
    font-size: 1.8rem;
  }

  .section-play ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .modal-trigger-btn {
    width: 100%;
  }

  .outline-table th,
  .outline-table td {
    padding: 12px 15px;
    font-size: 0.85rem;
  }
  .outline-table th {
    width: 35%;
  }
  .outline-table td {
    width: 65%;
  }

  .photo-grid-3 {
    grid-template-columns: 1fr;
  }
  .photo-grid-2 {
    grid-template-columns: 1fr;
  }

  .outline-grid {
    grid-template-columns: 1fr;
  }

  .spec-table th {
    width: 35%;
    white-space: normal;
    font-size: 0.82em;
  }
  .spec-table td {
    width: 65%;
    font-size: 0.82em;
  }

  .popup-inner {
    flex-direction: column;
  }
  .popup-photo {
    width: 100%;
  }
  .popup-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 36px;
  }

  .section-digital .past {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }

  .footer-info {
    text-align: center;
  }

  .kv-pc {
    display: none;
  }
  .kv-sp {
    display: block;
  }
  .area-apply-btn .apply-btn {
    padding: 20px 24px;
  }
  .area-apply-btn .apply-btn .main-text {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }
}

/* --- Desktop only (1025px〜) --- */
@media (min-width: 1025px) {
  /* Elementor hidden-desktop に相当 */
  .hidden-desktop {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .spec-table th,
  .spec-table td {
    padding: 10px 8px;
    font-size: 0.78em;
  }
}
