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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: auto;
    min-height: auto;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('images/main-bg-base.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* 모바일에서 PC 화면을 작게 보이게 스케일링 */
@media (max-width: 768px) {
    html {
        max-width: 768px;
        margin: 0 auto;
        transform-origin: top center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    html {
        max-width: 1024px;
        margin: 0 auto;
        transform-origin: top center;
    }
    
    body {
        overflow-x: auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .form-container {
        max-width: 100%;
        padding: 0 50px;
    }
}

body.complete-page {
    background-image: url('images/main-bg-base.png');
}

.hero-section {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
}

.key-image-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
}

.main-content-container {
    position: relative;
    z-index: 1;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    zoom: 1;
}

/* 화면 높이가 커질수록 조금씩 확대 */
@media (min-height: 950px) {
    .main-content-container { zoom: 1.05; }
  }
  
  @media (min-height: 1200px) {
    .main-content-container { zoom: 1.20; }
  }
  
  @media (min-height: 1400px) {
    .main-content-container { zoom: 1.30; }
  }

  @media (min-height: 1400px) {
    .main-content-container { zoom: 1.50; }
  }

  @media (min-height: 1800px) {
    .main-content-container { zoom: 1.80; }
  }

  @media (min-height: 2300px) {
    .main-content-container { zoom: 2.10; }
  }

.key-image-container.sub-key-image img{
    width: 80%;
    height: auto;
    display: block;
}

.key-image {
    width: 45%;
    height: auto;
    display: block;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.logo-left a,
.logo-right a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-left a:hover,
.logo-right a:hover {
    opacity: 0.8;
}

.logo-left img,
.logo-right img {
    height: auto;
    display: block;
}

.logo-left img {
    width: 75px;
}

.logo-right img {
    width: 60px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto;
    margin-top: 50px;
    max-width: 1400px;
    width: 100%;
}

.sub-hero {
    margin-top: 100px;
}

.main-title {
  color: #FFF;
  text-align: center;
  text-shadow: 1.311px 1.311px 5.31px rgba(0, 0, 0, 0.30);
  font-family: "Google Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 95.205%; /* 108.316px */
  padding-bottom: 20px;
  
}

.subtitle {
  color: #B5B1ED;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 20px;
}

.event-info {
  display: flex;
  align-items: center;
  gap: 48px;
  color: #FFF;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; 
}

.event-date,
.event-location {
  display: flex;
  align-items: center;
  gap: 20px;
}

.event-icon {
  width: 28.804px;
  height: 28.804px;
  display: block;
  flex-shrink: 0;
}

.event-separator {
    font-size: 1.2rem;
    opacity: 0.7;
}

.intro-section {
    width: 100%;
    padding: 80px 60px;
    background-color: transparent;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.78%;
    margin-bottom: 36px;
}

.intro-content .bold-text {
    font-weight: 700;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.form-section {
    width: 100%;
    background-color: transparent;
    margin-top: 50px;
    flex-shrink: 0;
}

.form-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    align-items: stretch;
}

.form-field {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    /* 🔥 뒤 배경을 비치게 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-field::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #8b9cff,
    rgba(255,255,255,0.8),
    #5a6cff
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

input {
  flex: 1;
  background: transparent;   /* 이게 핵심 */
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
}

input::placeholder {
  color: rgba(255,255,255,0.45);
}

.form-field label {
    min-width: 200px;
    padding: 15px 47px;
    color: #FFF;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    position: relative;
    z-index: 1;
}

.form-field input {
    flex: 1;
    padding: 15px 24px 15px 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    font-weight: 500;
    font-family: Pretendard, sans-serif;
    outline: none;
    position: relative;
    z-index: 1;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.15);
}

.consent-section {
    margin-top: 76px;
}

.consent-title {
    color: #FFF;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    padding: 50px 0px 48px 0px;
}

.consent-title-required {
   font-weight: 500;
}

.consent-box {
    border-radius: 15px;
    position: relative;

    background: rgba(255, 255, 255, 0.06);
    /* 🔥 뒤 배경을 비치게 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 49px 33px 46px 48px;
}

.consent-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #8b9cff,
    rgba(255,255,255,0.8),
    #5a6cff
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.consent-box > * {
    position: relative;
    z-index: 1;
    margin: 0;
}


.consent-box > *:not(:first-child):not(:last-child) {
    padding: 30px 0 0 0;
}

.consent-text,
.consent-period{
    color: #FFF;
    font-size: 37.94px;
    font-weight: 500;
    line-height: 1.6;
}
.consent-period {
  font-weight: 800;
}
.consent-disclaimer {
  color: rgba(255, 255, 255, 0.51);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

.consent-text:last-child,
.consent-period:last-child,
.consent-disclaimer:last-child {
    margin-bottom: 0;
}

/* 저녁식사 여부 섹션 */
.meal-section {
    margin-top: 24px;
    border-radius: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.meal-section::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        #8b9cff,
        rgba(255,255,255,0.8),
        #5a6cff
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.meal-title {
    margin: 0 0 30px 0;
    position: relative;
    color: #FFF;
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.meal-checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.meal-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #FFF;
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.meal-checkbox-label input[type="checkbox"] {
    width: 28px;
    height: 28px;
    cursor: pointer;
    accent-color: #8b9cff;
    flex-shrink: 0;
}

/* 동의 체크박스 섹션 */
.consent-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    width: 100%;
    padding: 0;
}

.consent-checkbox-label {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 0;
    justify-content: flex-start;
    margin: 0;
}

.consent-checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #8b9cff;
    flex-shrink: 0;
    margin: 0;
}

.consent-checkbox-label span {
    flex: 0 1 auto;
    text-align: left;
    margin: 0;
}

.required-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.consent-options {
    margin-top: 8px;
}

.consent-question {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  padding: 34px 14px;
}

.radio-group {
    display: flex;
    gap: 90px;
    justify-content: center;
    padding-bottom: 110px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 48px;
    color: #FFF;
    font-size: 48px;
    font-weight: 800;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 40px;
    height: 40px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    position: relative;
    margin: 0;
}

.radio-label input[type="radio"]:checked {
    background: transparent;
    border: 2px solid #ffffff;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 27px;
    height: 27px;
    background: #ffffff;
    border-radius: 50%;
}
.form-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.submit-btn {
    padding: 9px 0;
    background: linear-gradient(135deg, #8B7FD9 0%, #6B5FCF 100%);
    border: none;
    border-radius: 60px;
    color: #FFF;
    font-size: 25px;
    font-weight: 700;
    font-family: Pretendard, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
    text-align: center;
    align-self: center;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #9B8FE9 0%, #7B6FDF 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 127, 217, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-footer {
    margin-top: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    align-self: center;
    width: 100%;
    max-width: 100%;
}

.agenda-section {
    width: 100%;
    padding: 80px 60px;
    background-color: transparent;
}

.agenda-container {
    max-width: 1200px;
    margin: 0 auto;
}

.agenda-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 60px;
    font-family: Pretendard, sans-serif;
}

.agenda-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 3px solid #7F7BB8;
    border-bottom: 3px solid #7F7BB8;
}

.agenda-item {
    display: flex;
    gap: 40px;
    padding: 24px 0;
    border-bottom: 1px solid #7F7BB8;
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-time {
    min-width: 330px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
}

.clock-icon {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.agenda-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-title-text {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
}

.agenda-speaker {
    color: rgba(255, 255, 255, 0.74);
    font-size: 24px;
    font-weight: 500;
    font-family: Pretendard, sans-serif;
}

.gift-section {
    width: 100%;
    padding: 80px 60px;
    background-color: transparent;
}

.gift-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gift-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.gift-image-wrapper {
    flex-shrink: 0;
}

.gift-image {
    width: 380px;
    height: auto;
    display: block;
}

.gift-text-wrapper {
    flex: 1;
}

.gift-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: Pretendard, sans-serif;
}

.gift-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.gift-description {
    color: #FFF;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6;
    font-family: Pretendard, sans-serif;
}

.location-section {
    width: 100%;
    padding: 80px 60px;
    background-color: transparent;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-title {
    color: #FFF;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: Pretendard, sans-serif;
}

.location-info {
    margin-bottom: 40px;
}

.location-name {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: Pretendard, sans-serif;
}

.location-address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    font-weight: 400;
    font-family: Pretendard, sans-serif;
}

.location-map {
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.subway-info {
  display: flex;
  gap: 50px;
}

.subway-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: Pretendard, sans-serif;
    width: 200px;
}

.subway-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.subway-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.subway-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: Pretendard, sans-serif;
}

.subway-icon-1 {
    background-color: #0052A4;
    border: 2px solid #0052A4;
}

.subway-icon-2 {
    background-color: #00A84D;
    border: 2px solid #00A84D;
}

.subway-left-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
    max-width: 250px;
}

.subway-right-content {
    flex: 1;
}

.subway-station {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    font-family: Pretendard, sans-serif;
    white-space: nowrap;
}

.subway-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    font-weight: 400;
    font-family: Pretendard, sans-serif;
    line-height: 1.5;
}

.complete-section {
    width: 100%;
    padding: 30px 60px 0px 60px;
    background-color: transparent;
}

.complete-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.complete-message {
    text-align: center;
    padding-bottom: 26px;
}

.complete-title {
    color: #FFF;
    font-size: 50px;
    font-weight: 800;
    font-family: Pretendard, sans-serif;
    margin-bottom: 0;
}

.event-details {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    padding-bottom: 46px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 31px;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    font-family: Pretendard, sans-serif;
}

.event-detail-item .event-icon {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.event-text {
    color: #FFF;
}

.application-info-box {
  width: 100%;
  padding: 20px 0px;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  /* 🔥 뒤 배경을 비치게 */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
}

.application-info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #8b9cff,
    rgba(255,255,255,0.8),
    #5a6cff
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.info-box-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    font-family: Pretendard, sans-serif;
}

.info-box-line {
  width: 100%;
  background: linear-gradient(90deg, #F3ECFF 0%, #7F7BB8 100%);
  height: 1px;
  margin-bottom: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: fit-content;
}

.info-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    color: #FFF;
    font-size: 24px;
    font-weight: 800;
    width: 200px;
    font-family: Pretendard, sans-serif;
}

.info-value {
    color: rgba(255, 255, 255, 0.55);
    font-size: 24px;
    font-weight: 500;
    font-family: Pretendard, sans-serif;
    text-align: left;
}

.inquiry-info {
    text-align: center;
    margin-top: 20px;
}

.inquiry-text {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    font-family: Pretendard, sans-serif;
}

.inquiry-email {
    color: #FFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.inquiry-email:hover {
    opacity: 0.8;
}

.footer {
    background-color: transparent;
    flex-shrink: 0;
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 200px;
}

.footer-logo-left img,
.footer-logo-right img {
    height: auto;
    display: block;
}

.footer-logo-left img {
    width: 146px;
}

.footer-logo-right img {
    width: 117px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    justify-content: center;
}

.contact-label {
    color: #FFF;
    font-size: 18px;
    line-height: 130%;
    font-weight: 500;
    font-family: Pretendard, sans-serif;
}

.contact-email {
    color: #FFF;
    font-size: 18px;
    line-height: 130%;
    font-weight: 500;
    font-family: Pretendard, sans-serif;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.8;
}

.mb-br {
    display: none;
}

/* 반응형 디자인 */

@media (max-width: 1400px) {
    .hero-content {
        max-width: 1200px;
    }

    .hero-section {
        min-height: auto;
    }

    .intro-section {
        max-width: 1200px;
    }

    .consent-section {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 60px 50px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .form-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .form-section {
        margin-top: 60px;
    }
    
    .intro-section {
        padding: 60px 40px;
    }
    
    .intro-content p {
        font-size: 28px;
    }
    
    .form-field {
        padding: 20px;
    }
    
    .form-field label {
        font-size: 24px;
        padding: 20px 24px;
        min-width: auto;
    }
    
    .form-field input {
        font-size: 24px;
        padding: 20px 24px 20px 0;
    }
    
    .consent-section {
        margin-top: 40px;
    }
    
    .consent-title {
        font-size: 32px;
        padding: 30px 0;
    }
    
    .consent-question {
        font-size: 32px;
        padding: 24px 14px;
    }
    
    .consent-text,
    .consent-period {
        font-size: 24px;
    }
    
    .consent-disclaimer {
        font-size: 18px;
    }
    
    .consent-box > *:first-child {
        padding-top: 20px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .consent-box > *:not(:first-child):not(:last-child) {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .consent-box > *:last-child {
        padding-bottom: 20px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .radio-group {
        gap: 40px;
        padding-bottom: 60px;
    }
    
    .radio-label {
        font-size: 32px;
        gap: 24px;
    }
    
    .radio-label input[type="radio"] {
        width: 32px;
        height: 32px;
    }
    
    .radio-label input[type="radio"]:checked::after {
        width: 20px;
        height: 20px;
    }
    
    .submit-btn {
        font-size: 36px;
        padding: 18px 40px;
        max-width: 100%;
    }
    
    .form-footer {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .footer-container {
        padding: 60px 40px;
    }
    
    .contact-label,
    .contact-email {
        font-size: 20px;
    }
    
    .agenda-section {
        padding: 60px 40px;
    }
    
    .agenda-title {
        font-size: 36px;
    }
    
    .gift-section {
        padding: 60px 40px;
    }
    
    .gift-content {
        gap: 40px;
        padding: 30px;
    }
    
    .gift-image {
        width: 150px;
    }
    
    .gift-title {
        font-size: 36px;
    }
    
    .gift-icon {
        width: 36px;
        height: 36px;
    }
    
    .gift-description {
        font-size: 20px;
    }
    
    .complete-section {
        padding: 60px 40px;
    }
    
    .complete-container {
        gap: 40px;
    }
    
    .complete-title {
        font-size: 48px;
    }
    
    .event-detail-item {
        font-size: 24px;
    }
    
    .event-detail-item .event-icon {
        width: 24px;
        height: 24px;
    }
    
    .event-icon {
        font-size: 24px;
    }
    
    .application-info-box {
        padding: 30px;
    }
    
    .info-box-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .info-label,
    .info-value {
        font-size: 24px;
    }
    
    .inquiry-text {
        font-size: 20px;
    }
    
    .location-section {
        padding: 60px 40px;
    }
    
    .location-title {
        font-size: 48px;
        margin-bottom: 32px;
    }
    
    .location-name {
        font-size: 28px;
    }
    
    .location-address {
        font-size: 20px;
    }
    
    .subway-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .subway-icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .subway-station {
        font-size: 24px;
    }
    
    .subway-description {
        font-size: 20px;
    }
    
    .agenda-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-container {
        padding: 60px 40px;
        gap: 30px;
    }
    
    .footer-logo-left img {
        width: 120px;
    }
    
    .footer-logo-right img {
        width: 90px;
    }
    
    .footer-divider {
        height: 30px;
    }
    
    .contact-label,
    .contact-email {
        font-size: 16px;
    }
    
    .agenda-time {
        min-width: 150px;
        font-size: 20px;
    }
    
    .clock-icon {
        width: 20px;
        height: 20px;
    }
    
    .agenda-title-text {
        font-size: 20px;
    }
    
    .agenda-speaker {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 40px;
    }
    
    .logo-left img {
        width: 60px;
    }
    
    .logo-right img {
        width: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        justify-content: end;
        margin-top: 200px;
    }
    
    .hero-section {
        min-height: auto;
        padding-bottom: 20px;
    }
    
    .key-image {
        width: 100%;
    }
    
    .main-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 0px;
        padding-bottom: 8px;
    }
    
    .subtitle {
        font-size: 10px;
        font-weight: 400;
        line-height: 1.4;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .event-info {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .event-date,
    .event-location {
        gap: 8px;
    }
    
    .event-icon {
        width: 14px;
        height: 14px;
    }
    
    .event-separator {
        display: none;
    }
    
    .intro-section {
        padding: 30px 20px;
    }
    
    .intro-content p {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .form-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .form-section {
        margin-top: 0px;
        padding-bottom: 40px;
    }
    
    .registration-form {
        gap: 16px;
    }
    
    .form-field {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    .form-field label {
        min-width: 80px;
        width: auto;
        font-size: 14px;
        font-weight: 800;
        padding: 0;
    }
    
    .form-field input {
        flex: 1;
        font-size: 14px;
        padding: 8px 0;
    }
    
    .meal-section {
        padding: 20px 16px;
        margin-top: 16px;
    }
    
    .meal-title {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 16px;
    }
    
    .meal-checkbox-group {
        gap: 12px;
    }
    
    .meal-checkbox-label {
        font-size: 14px;
        gap: 8px;
    }
    
    .meal-checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    
    .consent-checkboxes {
        gap: 0px;
        margin-top: 0px;
        padding: 10px 16px;
    }
    
    .consent-checkbox-label {
        font-size: 14px;
        gap: 8px;
        padding: 8px 0;
    }
    
    .consent-checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    
    .required-text {
        font-size: 12px;
    }
    
    .form-footer-container {
        margin-top: 0px;
    }
    
    .submit-btn {
        font-size: 16px;
        padding: 14px 24px;
        border-radius: 30px;
        max-width: 100%;
        margin-top: 16px;
    }
    
    .form-footer {
        font-size: 10px;
        margin-top: 16px;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .footer-container {
        gap: 20px;
        align-items: center;
        padding: 10px 40px;
        flex-direction: row;
    }
    
    .footer-logo-left img {
        width: 60px;
    }

    .footer-logo-right img {
        width: 40px;
    }
    
    .footer-contact {
        font-size: 12px;
    }
    
    .contact-label {
        font-size: 12px;
    }
    
    .contact-email {
        font-size: 12px;
    }
    
    .consent-section {
        margin-top: 30px;
    }
    
    .consent-title {
        font-size: 18px;
        padding: 20px 0;
    }
    
    .consent-question {
        font-size: 18px;
        padding: 16px 14px;
    }
    
    .consent-text,
    .consent-period {
        font-size: 14px;
    }
    
    .consent-disclaimer {
        font-size: 11px;
    }
    
    .consent-box {
        padding: 20px 16px;
    }
    
    .consent-box > *:first-child {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .consent-box > *:not(:first-child):not(:last-child) {
        padding-left: 0;
        padding-right: 0;
        padding-top: 12px;
    }
    
    .consent-box > *:last-child {
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .gift-section {
        padding: 40px 24px;
    }
    
    .gift-content {
        flex-direction: column;
        gap: 30px;
        padding: 24px;
    }
    
    .gift-image {
        width: 120px;
    }
    
    .gift-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .gift-icon {
        width: 28px;
        height: 28px;
    }
    
    .gift-description {
        font-size: 18px;
    }
    
    .complete-message {
        padding-bottom: 0px;
    }
    .complete-section {
        padding: 0px 24px;
    }
    
    .complete-container {
        gap: 30px;
    }
    
    .complete-title {
        font-size: 28px;
    }
    
    .event-detail-item {
        font-size: 16px;
    }
    
    .event-detail-item .event-icon {
        width: 16px;
        height: 16px;
    }
    
    .event-icon {
        font-size: 20px;
    }

    .event-details {
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .application-info-box {
        padding: 24px;
        margin-bottom: 20px;
    }
    
    .info-list {
        padding: 0 20px;
    }
    .info-box-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 20px;
    }
    
    .info-label,
    .info-value {
        font-size: 16px;
    }

    .info-label {
        width: 100px;
        text-align: left;
    }
    
    .info-value {
        text-align: left;
    }
    
    .inquiry-text {
        font-size: 18px;
    }
    
    .location-section {
        padding: 40px 24px;
    }
    
    .location-title {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .location-name {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .location-address {
        font-size: 18px;
    }
    
    .location-map {
        margin-bottom: 40px;
    }
    
    .subway-info {
        margin-top: 32px;
    }
    
    .subway-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .subway-item {
        gap: 12px;
    }
    
    .subway-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .subway-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .subway-station {
        font-size: 20px;
    }
    
    .subway-description {
        font-size: 18px;
    }
    
    .footer {
        padding: 0;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 40px;
    }
    
    .radio-label {
        font-size: 24px;
        gap: 16px;
    }
    
    .radio-label input[type="radio"] {
        width: 28px;
        height: 28px;
    }
    
    .radio-label input[type="radio"]:checked::after {
        width: 16px;
        height: 16px;
    }
    
    .submit-btn {
        font-size: 28px;
        padding: 16px 32px;
        max-width: 100%;
        width: 100%;
    }
    
    .footer-contact {
        flex-direction: row;
        gap: 8px;
    }
    
    .contact-label,
    .contact-email {
        font-size: 11px;
    }
    
    .agenda-section {
        padding: 40px 24px;
    }
    
    .agenda-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .agenda-icon {
        width: 28px;
        height: 28px;
    }
    
    .agenda-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }
    
    .agenda-time {
        min-width: auto;
        font-size: 18px;
    }
    
    .clock-icon {
        width: 18px;
        height: 18px;
    }
    
    .agenda-title-text {
        font-size: 18px;
    }
    
    .agenda-speaker {
        font-size: 16px;
    }

    .mb-br {
        display: block;
    }
}

