@charset "UTF-8";
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
    all: unset;
    display: revert;
}
ul li,
ol li {
  list-style-type: none;
}
a {
  cursor: pointer;
  color: #002b5b;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}
table {
  border-collapse: collapse;
}
html {
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
  color: #383b4e;
  font-feature-settings: "palt";
}
.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
/*  */
/* Header */
#header {
  color: #fff;
  background: radial-gradient(circle at 50% 20%, #2b6cb0 0%, #002b5b 85%);
  text-align: center;
  padding: 60px 20px 70px;
  position: relative;
  overflow: hidden;
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.header-badge-top {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.header-catch {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffe500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  line-height: 1.4;
}

.flyer-wrap {
  display: inline-block;
  position: relative;
  max-width: 580px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.flyer-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.45);
}

.flyer-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.flyer-zoom-hint {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 43, 91, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
}

.flyer-wrap:hover .flyer-zoom-hint {
  background: #e6005c;
}

/* Quick Overview Bar */
#quick-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
}

.quick-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  border-right: 1px solid #edf2f7;
}

.quick-item:last-child {
  border-right: none;
}

.quick-item i {
  font-size: 24px;
  color: #002b5b;
  flex-shrink: 0;
}

.quick-item .label {
  display: block;
  font-size: 11px;
  color: #718096;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.quick-item .val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
}

.quick-item .highlight-pink {
  color: #e6005c;
  font-size: 17px;
  font-weight: 900;
}

.quick-item .highlight-green {
  color: #10b981;
  font-size: 15px;
  font-weight: 900;
}

/* Section */
section {
  padding: 90px 0;
}

/* SNS */
#sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 45px 0;
  background: #fafbfc;
  border-bottom: 1px solid #f0f2f5;
}

.sns-lead {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
}

#sns ul {
  display: flex;
  gap: 20px;
}

#sns a {
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid #e2e8f0;
  background: #fff;
  place-content: center;
  font-size: 28px;
  border-radius: 50%;
  color: #002b5b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

#sns a:hover {
  transform: translateY(-3px);
  background: #002b5b;
  color: #fff;
  border-color: #002b5b;
  box-shadow: 0 8px 20px rgba(0, 43, 91, 0.2);
}

/* 3大見どころ (Features) */
#features {
  background: #f4f8fb;
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title .sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #0077cc;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section-title h1 {
  font-size: 32px;
  font-weight: 900;
  color: #002b5b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-title .desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 8px 24px rgba(0, 43, 91, 0.07);
  border: 1px solid #e8eff6;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 43, 91, 0.12);
}

.feature-badge {
  background: #ffe500;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(255, 229, 0, 0.4);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.feature-select .feature-icon {
  background: #eef6ff;
  color: #0066cc;
}

.feature-free .feature-icon {
  background: #fff7ed;
  color: #ea580c;
}

.feature-bulk .feature-icon {
  background: #fdf2f8;
  color: #db2777;
}

.feature-card h2 {
  font-size: 22px;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-lead {
  font-size: 15px;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 12px;
  line-height: 1.5;
}

.feature-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

.feature-price-badge {
  background: linear-gradient(135deg, #e6005c, #ff3366);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(230, 0, 92, 0.3);
}

.feature-price-badge span {
  font-size: 20px;
  font-weight: 900;
}

.feature-price-badge small {
  font-size: 11px;
}

/* Shop / Booth */
#shop {
  background: #f8fafc;
  padding: 90px 0;
}

.shop-badge-box {
  margin: 14px 0 16px;
}

.shop-badge {
  display: inline-block;
  background: #ffe500;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.shop-notice {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.shop-notice strong {
  color: #002b5b;
}

.shop-notice .sub-note {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

.past-shops-wrapper {
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.past-shops-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #edf2f7;
}

.past-shops-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #334155;
}

.past-shops-header i {
  color: #0077cc;
  margin-right: 8px;
}

#shop ol {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
#shop li {
  border: 1px solid #ccc;
  counter-increment: no;
  padding: 20px 60px 20px 20px;
  color: inherit;
  line-height: 1.7;
  position: relative;
  background: #fff;
}
#shop a {
  display: block;
  color: inherit;
}
#shop a::after, #shop li:not(:has(a))::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0,-50%);
  color: #555;
}
#shop a::after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
}
#shop h2::before {
  content: counter(no)'. ';
}
/* #shop {
  display: none;
}
#shop .inner {
  display: grid;
  grid-template-columns: 1fr 4fr;
}
#shop h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}
#shop ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
} */
/*  */
#msg {
  background: #EFE7D7;
  position: relative;
}
#msg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(3deg) translate(-50%,-50%);
  width: 700px;
  height: calc(100% - 200px);
  transform-origin: left top;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);

}
#msg .inner {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);

  width: 700px;
  margin: 0 auto;
  padding: 50px;
  box-sizing: border-box;
  line-height: 1.8;
  position: relative;
  z-index: 100;
}

#msg h1 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 1em;
}
#msg p {
  margin: 1em 0 0;
}
#msg p:last-of-type {
  text-align: right;
  margin: 2em 0 0;
}
#msg span.small {
  font-size: 13px;
  margin: 0 10px 0 0;
}
#msg span.large {
  font-size: 24px;
  font-weight: 700;
}
/*  */
#access {
  background: #002b5b;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,.2);
}
#access .inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}
#access .right {
  order: 2;
}
#access iframe {
  width: 100%;
  box-shadow: 1px 1px 5px rgba(0,0,0,.2);
}
#access .left {
  order: 1;
}
#access h1 {
  font-size: 32px;
  font-weight: 900;
}
#access h2 {
  font-size: 24px;
  margin: 1em 0 0;
  font-weight: 700;
  line-height: 1.3;
}
#access p {
  margin: 1em 0 0;
}
#access dl {
  margin: 50px 0 0;
}
#access dl div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0 0;
  position: relative;
}
#access dl div::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  border-top: 1px dotted #fff;
}
#access dl span {
  background: #002b5b;
  position: relative;
  z-index: 10;
}
#access dl dt span {
  padding: 0 10px 0 0;
}
#access dl dd span {
  padding: 0 0 0 10px;
}
/*  */
/* Info Section */
#info {
  background: #ffffff;
  padding: 90px 0;
}

#info .inner {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 50px;
  font-size: 15px;
  line-height: 1.8;
}

#info .left .sub {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0077cc;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

#info h1 {
  font-size: 32px;
  font-weight: 900;
  color: #002b5b;
  line-height: 1.3;
}

#info table {
  width: 100%;
  border-top: 2px solid #002b5b;
  border-bottom: 2px solid #002b5b;
}

#info tr {
  border-bottom: 1px solid #e2e8f0;
}

#info th {
  width: 24%;
  padding: 18px 16px;
  font-weight: 700;
  color: #002b5b;
  background: #f8fafc;
  vertical-align: middle;
}

#info td {
  padding: 18px 20px;
  color: #334155;
}

.table-subtext {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.info-date-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-date-item strong {
  font-size: 17px;
  color: #002b5b;
}

.info-date-note {
  font-size: 13px;
  color: #64748b;
}

.badge-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.badge-pink {
  background: #fdf2f8;
  color: #e6005c;
  border: 1px solid #fbcfe8;
  font-size: 16px;
  font-weight: 900;
}

.badge-green {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 15px;
  font-weight: 900;
}

.badge-yellow {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 14px;
  font-weight: 900;
}

.info-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #002b5b;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.info-link-btn:hover {
  background: #004494;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 43, 91, 0.25);
}

.info-email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0077cc !important;
  font-weight: 700;
}

/* Access Extra */
.access-address {
  font-size: 16px;
  margin: 8px 0 12px;
}

.access-parking-box {
  margin: 12px 0 24px;
}

.parking-badge {
  display: inline-block;
  background: #10b981;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
/*  */
#vintage {
  background: #93AA75;
  padding: 100px 0;
}
#vintage p {
  color: #fff;
  font-size: 50px;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0,0,0,.3);
  line-height: 1.3;

}
/*  */
#flow {
  background: #93AA75;
  line-height: 1.8;
  padding: 0 0 100px;
}
#flow h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0,0,0,.3);
  margin: 0 0 1em;
}
#flow ol {
  display: grid;
  gap: 50px;
}
#flow li {
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 3fr;
  counter-increment: i;
  position: relative;
  box-shadow: 1px 1px 5px rgba(0,0,0,.2);
}
#flow li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0 0 0 -25px;
  width: 50px;
  height: 50px;
  background: #fff;
  opacity: .5;
}
#flow li:last-of-type::after {
  display: none;
}
#flow .left {
  border-right: 1px solid #ddd;
  display: grid;
  place-content: center;
}
#flow li h2 {
  font-weight: 700;
  font-size: 24px;
}
#flow li h2::before {
  content: counter(i)'. ';
}
#flow li div {
  padding: 50px;
}
/*  */
#notice {
  background: #93AA75;
  line-height: 1.8;
  padding: 0 0 100px;
}
#notice h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0,0,0,.3);
  margin: 0 0 1em;
}
#notice .wrap {
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0,0,0,.2);
  padding: 50px;
}
#notice table {
  width: 100%;
  font-size: 14px;
}
#notice th,
#notice td {
  padding: 10px 20px;
  border: 1px solid #ddd;
}
#notice th {
  width: 25%;
}
/*  */
#comit h1 {
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 2em;
}
#comit table {
  width: 100%;
  line-height: 1.7;
}
#comit th,
#comit td {
  border: 1px solid #ddd;
  padding: 10px 20px;
}
#comit th {
  width: 30%;
  font-weight: bold;
}
/*  */
@media screen and (max-width:768px) {
  section {
    padding: 50px 0;
  }
  
  /* Quick Bar Mobile */
  .quick-items {
    grid-template-columns: 1fr 1fr;
  }
  .quick-item {
    padding: 14px 12px;
    border-right: none;
    gap: 10px;
  }
  .quick-item:nth-child(odd) {
    border-right: 1px solid #edf2f7;
  }
  .quick-item:nth-child(1),
  .quick-item:nth-child(2) {
    border-bottom: 1px solid #edf2f7;
  }
  .quick-item i {
    font-size: 20px;
  }
  .quick-item .val {
    font-size: 12px;
  }
  .quick-item .highlight-pink {
    font-size: 14px;
  }
  .quick-item .highlight-green {
    font-size: 13px;
  }

  /* Header Mobile */
  #header {
    padding: 40px 15px 50px;
  }
  .header-catch {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 28px 20px;
  }
  
  /* Shop Mobile */
  #shop ol {
    grid-template-columns: 1fr;
  }
  .past-shops-wrapper {
    padding: 24px 16px;
  }
  
  /* Msg Mobile */
  #msg {
    padding: 0;
  }
  #msg::before {
    display: none;
  }
  #msg .inner {
    width: 100%;
    padding: 50px 20px;
  }
  
  /* Access Mobile */
  #access .inner {
    grid-template-columns: 1fr;
  }
  
  /* Info Mobile */
  #info .inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #info th {
    width: 32%;
    padding: 12px 10px;
    font-size: 13px;
  }
  #info td {
    padding: 12px 10px;
    font-size: 13px;
  }
  /*  */
  #vintage {
    padding: 50px 0;
  }
  #vintage p {
    font-size: 40px;
  }
  /*  */
  #flow li {
    grid-template-columns: 1fr;
  }
  #flow .left {
    padding-bottom: 0;
  }
  #flow li div {
    padding: 30px;
  }
  /*  */
  #notice h1 {
    font-size: 36px;
  }
  #notice .wrap {
    padding: 0;
  }
  #notice th,
  #notice td {
    display: block;
    box-sizing: border-box;
    border: none;
  }
  #notice th {
    width: 100%;
    border-top: 1px solid #ddd;
    font-weight: bold;
    padding-bottom: 0;

  }
}
/* footer */
#footer {
  padding: 40px 0;
  text-align: center;
  color: #777;
  font-size: 14px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

/* ===================================================
   ENTRY / RECRUITMENT STYLES (ソラトブ古着マーケット vol.4 出店者募集)
=================================================== */

/* Entry Top Announcement Banner */
#entry-banner {
  background: linear-gradient(135deg, #002b5b 0%, #004494 60%, #0066cc 100%);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 43, 91, 0.25);
  position: relative;
  z-index: 20;
}

.entry-banner-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 24px;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 16px;
}

.entry-banner-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.entry-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.entry-banner-tag {
  background: #ffe500;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: pulse-badge 2s infinite ease-in-out;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.entry-banner-msg {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.entry-banner-msg strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.entry-banner-msg span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.entry-banner-btn {
  background: #fff;
  color: #002b5b;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.entry-banner-link:hover .entry-banner-btn {
  background: #ffe500;
  color: #111;
  gap: 12px;
}

/* Recruit Section */
#recruit {
  background: #f1f5f9;
  padding: 90px 0;
  position: relative;
}

.recruit-badge-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 20px;
  flex-wrap: wrap;
}

.recruit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.recruit-badge.badge-primary {
  background: #002b5b;
  color: #fff;
}

.recruit-badge.badge-accent {
  background: #e6005c;
  color: #fff;
}

/* Overview Info Cards */
.recruit-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.recruit-overview-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.recruit-overview-card .card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #edf2f7;
}

.recruit-overview-card .card-head i {
  color: #0077cc;
  font-size: 18px;
}

.recruit-overview-card ul {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}

.recruit-overview-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.recruit-overview-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0077cc;
  font-weight: 900;
}

.recruit-overview-card .rule-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 12px;
  line-height: 1.5;
}

/* Section Subheads */
.recruit-sub-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #002b5b;
  margin: 44px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #cbd5e1;
}

.recruit-sub-title i {
  color: #0077cc;
  font-size: 20px;
}

/* Space & Plans Grid */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 43, 91, 0.12);
  border-color: #0077cc;
}

.plan-card.is-recommended {
  border-color: #0077cc;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 8px 30px rgba(0, 119, 204, 0.15);
}

.plan-recommend-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0077cc, #0284c7);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 119, 204, 0.4);
  white-space: nowrap;
}

.plan-name {
  font-size: 20px;
  font-weight: 900;
  color: #002b5b;
  text-align: center;
  margin-bottom: 6px;
}

.plan-size {
  display: inline-block;
  align-self: center;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.plan-prices {
  border-top: 1px dashed #cbd5e1;
  border-bottom: 1px dashed #cbd5e1;
  padding: 16px 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.plan-price-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.plan-price-val {
  font-size: 18px;
  font-weight: 900;
  color: #002b5b;
}

.plan-card.is-recommended .plan-price-val {
  color: #0077cc;
}

.plan-price-val small {
  font-size: 12px;
  font-weight: normal;
  color: #64748b;
}

.plan-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  text-align: center;
  margin-top: auto;
}

/* Discount Banner Box */
.recruit-discount-box {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
  position: relative;
  overflow: hidden;
}

.recruit-discount-box::after {
  content: '¥1,500 OFF';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  line-height: 1;
}

.discount-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.discount-badge {
  background: #ffe500;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.discount-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}

.discount-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #f0fdf4;
  margin-bottom: 20px;
}

.discount-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.discount-detail-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffe500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.discount-detail-col ul {
  font-size: 14px;
  line-height: 1.6;
}

.discount-detail-col ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.discount-detail-col ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
}

.discount-note {
  margin-top: 16px;
  font-size: 13px;
  color: #d1fae5;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Discount Table */
.discount-details-table-wrap {
  margin-top: 14px;
}
.discount-details-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}
.discount-details-table thead th {
  background: rgba(255, 255, 255, 0.25);
  color: #ffe500;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.discount-details-table thead th i {
  margin-right: 4px;
}
.discount-details-table tbody td {
  color: #fff;
  font-size: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}
.discount-details-table tbody tr:last-child td {
  border-bottom: none;
}
.discount-details-table tbody td:first-child {
  width: 60%;
}


/* Equipment & Setup Cards */
.recruit-equip-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.recruit-equip-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.recruit-equip-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.equip-table {
  width: 100%;
  margin-bottom: 14px;
}

.equip-table th,
.equip-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

.equip-table th {
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
  width: 50%;
}

.equip-table td {
  color: #002b5b;
  font-weight: 700;
  text-align: right;
}

.equip-notes {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.shared-equip-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 16px;
  margin-top: 14px;
}

.shared-equip-box strong {
  color: #166534;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.shared-equip-box p {
  font-size: 13px;
  color: #15803d;
  line-height: 1.5;
}

.setup-time-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.setup-time-item {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid #0077cc;
  font-size: 14px;
  color: #1e293b;
}

.setup-time-item strong {
  color: #002b5b;
  margin-left: 8px;
}

/* Big Application CTA Block */
.recruit-cta-box {
  background: linear-gradient(135deg, #002b5b 0%, #004494 50%, #0284c7 100%);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 43, 91, 0.25);
  margin: 44px 0 30px;
  position: relative;
}

.recruit-cta-box h3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

.recruit-deadline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe500;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.recruit-cta-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 28px;
}

.recruit-cta-desc strong {
  color: #ffe500;
}

.recruit-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #e6005c 0%, #ff3366 100%);
  color: #fff !important;
  font-size: 20px;
  font-weight: 900;
  padding: 20px 44px;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(230, 0, 92, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.recruit-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(230, 0, 92, 0.55);
}

.recruit-cta-subtext {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 14px;
}

/* FAQ Cards */
.recruit-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.recruit-faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.recruit-faq-q {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #002b5b;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.recruit-faq-q .q-mark {
  background: #0077cc;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruit-faq-a {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.recruit-faq-a .a-mark {
  background: #e6005c;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Notes & Parking 2-column Grid */
.recruit-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.recruit-notes-box,
.recruit-parking-box {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.recruit-notes-box h3,
.recruit-parking-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.recruit-notes-box ul {
  font-size: 13px;
  line-height: 1.8;
  color: #334155;
}

.recruit-notes-box ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.recruit-notes-box ul li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  font-size: 11px;
}

.parking-alert-badge {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.parking-detail-table {
  width: 100%;
  font-size: 13px;
  line-height: 1.6;
}

.parking-detail-table th {
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  width: 35%;
}

.parking-detail-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
}

/* Contact Bar */
.recruit-contact-bar {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.recruit-contact-bar .contact-title {
  font-size: 15px;
  font-weight: 700;
  color: #002b5b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recruit-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0077cc !important;
  font-size: 15px;
  font-weight: 700;
}

/* ===================================================
   RESPONSIVE STYLES FOR RECRUIT
=================================================== */
@media screen and (max-width: 1024px) {
  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit-overview-grid {
    grid-template-columns: 1fr;
  }
  .recruit-equip-grid {
    grid-template-columns: 1fr;
  }
  .recruit-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  /* Banner Mobile */
  #entry-banner {
    padding: 10px 0;
  }
  .entry-banner-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 12px;
  }
  .entry-banner-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
  .entry-banner-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px 16px;
  }

  /* Recruit Section Mobile */
  #recruit {
    padding: 50px 0;
  }
  .plan-cards {
    grid-template-columns: 1fr;
  }
  .discount-details-grid {
    grid-template-columns: 1fr;
  }
  .recruit-discount-box {
    padding: 24px 20px;
  }
  .recruit-discount-box::after {
    display: none;
  }
  .discount-title {
    font-size: 20px;
  }
  .recruit-cta-box {
    padding: 32px 18px;
  }
  .recruit-cta-box h3 {
    font-size: 22px;
  }
  .recruit-deadline-pill {
    font-size: 15px;
    padding: 6px 18px;
  }
  .recruit-cta-btn {
    font-size: 17px;
    padding: 16px 28px;
    width: 100%;
    box-sizing: border-box;
  }
  .recruit-contact-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

