:root {
  /* Color Palette: Casual Orange & Blue Theme */
  --orange-main: #FF7A00;
  --orange-dark: #E66A00;
  --orange-light: #FFF4E6;

  --blue-main: #3498DB;
  --blue-dark: #2980B9;
  --blue-light: #F0F7FB;

  --bg-base: #FFFFFF;
  --bg-white: #FFFFFF;

  --accent-orange: #FF7A00;
  --accent-orange-dark: #E66A00;

  --text-main: #333333;
  --text-muted: #666666;
  --text-white: #FFFFFF;

  --border-color: #EAEAEA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--text-main);
  background: var(--bg-base);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input, textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

img {
  pointer-events: none;
  max-width: 100%;
  height: auto;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media (max-width: 960px) {
  body {
    font-size: 14px;
  }

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

section {
  padding: 100px 0;
}

@media (max-width: 960px) {
  section {
    padding: 80px 0;
  }
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .section-inner {
    padding: 0 20px;
  }
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
}

@media (max-width: 960px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ff7a00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: #ff7a00;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.section-desc {
  margin-top: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 3px solid var(--blue-main);
  transition: box-shadow 0.3s, padding 0.3s;
}

#header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  color: #3498db;
  gap: 8px;
}

.header-logo svg {
  fill: var(--orange-main);
  width: 32px;
  height: 32px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.header-nav a:not(.header-cta):hover {
  color: var(--text-main);
  background: var(--blue-light);
}

.header-cta {
  background: var(--accent-orange);
  color: var(--text-white) !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 133, 27, 0.3);
}

.header-cta:hover {
  background: var(--accent-orange-dark);
  transform: translateY(-2px);
}

.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.header-hamburger span {
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--blue-main);
  transition: 0.3s;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .header-hamburger {
    display: flex;
  }

  .header-nav {
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-white);
    padding-top: 80px;
    transition: right 0.4s ease;
    z-index: 1050;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-open .header-nav {
    right: 0;
  }

  .header-nav a {
    font-size: 16px;
    padding: 18px 40px;
    border-bottom: 1px dashed var(--border-color);
    width: 100%;
    text-align: center;
    border-radius: 0;
  }

  .header-nav a:not(.header-cta):hover {
    background: transparent;
  }

  .header-nav .header-cta {
    display: none;
  }

  .nav-open .header-hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-open .header-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .header-hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--orange-light);
  padding-top: 76px;
  overflow: hidden;
}

.hero-left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-base) 0%, var(--orange-light) 100%);
  z-index: 1;
}

.hero-left-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-slider {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: var(--orange-light);
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff4e6 0%, rgb(255 244 230 / 20%) 40%, transparent 100%);
  z-index: 2;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
}

/* 鬩幢ｽ｢隴惹ｸ橸ｽｹ・ｲ繝ｻ蜿厄ｽｨ謚ｵ・ｽ・ｹ隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｼ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴取得・ｽ・ｸ陷ｴ・･隴惹ｼ夲ｽｽ・ｹ隰ｨ魑ｴﾂ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｼ鬯ｨ・ｾ陋ｹ繝ｻ・ｽ・ｽ繝ｻ・ｻ鬮ｯ・ｷ陷ｻ莠･・ｾ蜉ｱ繝ｻ繝ｻ・ｼ髣費ｿｽ繝ｻ・･郢晢ｽｻ繝ｻ・｡鬮｣蝓ｼ螻ｮ繝ｻ・ｽ繝ｻ・｣驛｢譎｢・ｽ・ｻ郢晢ｽｻ陜｣・､繝ｻ・ｹ繝ｻ・ｧ郢晢ｽｻ繝ｻ・､鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・｡鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｼ鬩幢ｽ｢繝ｻ・ｧ郢晢ｽｻ繝ｻ・ｸ鬩搾ｽｵ繝ｻ・ｺ髯ｷ莨夲ｽｽ・ｱ髫ｨ・ｳ郢晢ｽｻ繝ｻ・ｿ繝ｻ・ｶ郢晢ｽｻ繝ｻ・ｲ鬮ｯ・ｷ繝ｻ・ｷ髯具ｽｹ繝ｻ・ｻ郢晢ｽｻ隶抵ｽｭ郢晢ｽｻ驛｢譎｢・ｽ・ｻ*/
.slide-1 {
  animation: slideFade 15s infinite 0s;
}

.slide-2 {
  animation: slideFade 15s infinite 5s;
}

.slide-3 {
  animation: slideFade 15s infinite 10s;
}

@keyframes slideFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  28% {
    opacity: 1;
    transform: scale(1.04);
  }

  33% {
    opacity: 0;
    transform: scale(1.05);
  }

  95% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.hero-text-box {
  max-width: 1300px;
  pointer-events: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-main);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-catchcopy {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-catchcopy-ja {
  line-height: 1.4;
  margin-bottom: 24px;
  text-shadow: none;
}

.hero-catchcopy-ja .catch-small {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-main);
}

.hero-catchcopy-ja .catch-main {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--text-main);
}

.hero-catchcopy-ja .catch-highlight {
  font-size: clamp(44px, 7.5vw, 84px);
  font-weight: 900;
  color: var(--blue-main);
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0;
  text-shadow: none;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue-main);
  color: var(--text-white);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 36px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 8px 24px rgba(52, 152, 219, 0.4);
}

@media (max-width: 960px) {
  #hero {
    flex-direction: column;
    padding-top: 76px;
    padding-bottom: 0;
    background: var(--orange-light);
    min-height: auto;
  }

  .hero-left-bg {
    display: none;
  }

  .hero-slider {
    width: 100%;
    height: 298px;
    position: relative;
    border-radius: 0;
  }

  .hero-content {
    padding: 30px 20px;
    order: 2;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-slider-overlay {
    background: none;
  }
}

#about {
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12L12 0H6L0 6M12 12V6L6 12' fill='%23ff7a00' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  position: relative;
  overflow: hidden;
}

.about-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-white);
  border-radius: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  padding: 40px;
  gap: 48px;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.about-img-box {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-box .lead {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-text-box p {
  line-height: 2;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .about-card {
    flex-direction: column;
    padding: 24px;
    gap: 32px;
  }

  .about-img-box {
    width: 100%;
    height: 300px;
  }

  .about-text-box {
    width: 100%;
  }

  .about-text-box .lead {
    font-size: 16px !important;
  }
}

#service {
  background: var(--orange-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-base);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(52, 152, 219, 0.15);
  border-color: var(--blue-light);
  background: var(--bg-white);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--blue-main);
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}

.service-card:hover::before {
  opacity: 1;
}

.service-img {
  width: 100%;
  height: 200px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 24px;
  flex: 1;
}

.service-title {
  font-size: 22px;
  font-weight: 800;
  color: #3498db;
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 500;
}

@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }

  .service-content {
    padding: 24px 0 0 !important;
  }
}

#merit {
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12L12 0H6L0 6M12 12V6L6 12' fill='%23ff7a00' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  position: relative;
  overflow: hidden;
}

.merit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.merit-item {
  display: flex;
  align-items: stretch;
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.merit-item:nth-child(even) {
  flex-direction: row-reverse;
}

.merit-img {
  width: 45%;
  position: relative;
  overflow: hidden;
}

.merit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.merit-item:hover .merit-img img {
  transform: scale(1.05);
}

.merit-content {
  width: 55%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.merit-header-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.merit-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  opacity: 0.8;
}

.merit-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: #3498db;
  line-height: 1.4;
}

.merit-content p {
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 800px) {
  .merit-item {
    flex-direction: column !important;
  }

  .merit-img {
    width: 100%;
    height: 240px;
  }

  .merit-content {
    width: 100%;
    padding: 32px 24px;
  }

  .merit-num {
    font-size: 40px;
  }

}

.about-text-box {
  width: 100%;
}

.about-text-box .lead {
  font-size: 18px;
}
}

#service {
  background: var(--orange-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-base);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(52, 152, 219, 0.15);
  border-color: var(--blue-light);
  background: var(--bg-white);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--blue-main);
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}

.service-card:hover::before {
  opacity: 1;
}

.service-img {
  width: 100%;
  height: 200px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 24px;
  flex: 1;
}

.point-label {
  display: inline-block;
  background: var(--orange-main);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-family: 'Oswald', sans-serif;
  align-self: flex-start;
}

.service-title {
  font-size: 22px;
  font-weight: 800;
  color: #3498db;
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 500;
}

@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }
}

#merit {
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12L12 0H6L0 6M12 12V6L6 12' fill='%23ff7a00' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  position: relative;
  overflow: hidden;
}

.merit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.merit-item {
  display: flex;
  align-items: stretch;
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.merit-item:nth-child(even) {
  flex-direction: row-reverse;
}

.merit-img {
  width: 45%;
  position: relative;
  overflow: hidden;
}

.merit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.merit-item:hover .merit-img img {
  transform: scale(1.05);
}

.merit-content {
  width: 55%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.merit-header-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.merit-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  opacity: 0.8;
}

.merit-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: #3498db;
  line-height: 1.4;
}

.merit-content p {
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 800px) {
  .merit-list {
    grid-template-columns: 1fr;
  }

  .merit-item {
    flex-direction: column !important;
  }

  .merit-img {
    width: 100%;
    height: 240px;
  }

  .merit-content {
    width: 100%;
    padding: 32px 24px;
  }

  .merit-num {
    font-size: 40px;
  }

  .merit-content h3 {
    font-size: 20px;
  }
}

#requirements {
  position: relative;
  clip-path: inset(0);
}

#requirements::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(255, 244, 230, 0.85), rgba(255, 244, 230, 0.85)), url('../img/requirementsbg.jpg') center center / cover no-repeat;
  z-index: -1;
  pointer-events: none;
}

.req-table-wrap {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.req-table {
  width: 100%;
  border-collapse: collapse;
}

.req-table th,
.req-table td {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}

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

.req-table th {
  background: rgba(229, 243, 255, 0.6) !important;
  width: 30%;
  font-weight: 800;
  color: var(--blue-dark);
}

.req-table td {
  color: var(--text-main);
  font-weight: 500;
}

@media (max-width: 960px) {

  .req-table th,
  .req-table td {
    display: block;
    width: 100%;
    padding: 16px 20px;
  }

  .req-table th {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .req-table td {
    border-bottom: 1px solid var(--border-color);
  }
}

#flow {
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12L12 0H6L0 6M12 12V6L6 12' fill='%23ff7a00' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  position: relative;
  overflow: hidden;
}

.flow-list {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.flow-list::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange-main);
  border-radius: 2px;
}

.flow-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}

.flow-num {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--bg-white);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  border: 4px solid var(--orange-main);
  box-shadow: 0 4px 12px rgba(255, 133, 27, 0.2);
}

.flow-content {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.flow-title {
  font-size: 20px;
  font-weight: 800;
  color: #3498db;
  margin-bottom: 12px;
  border-bottom: 2px dashed var(--border-color);
  padding-bottom: 12px;
}

.flow-body {
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .flow-list::before {
    left: 24px;
  }

  .flow-item {
    gap: 20px;
  }

  .flow-num {
    width: 52px;
    height: 52px;
    font-size: 20px;
    border-width: 3px;
  }

  .flow-content {
    padding: 24px;
  }
}

#apply-flow {
  background: var(--orange-light);
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.apply-step {
  text-align: center;
  position: relative;
}

.apply-step:not(:last-child)::after {
  content: '\25b6';
  position: absolute;
  top: 40px;
  right: -18px;
  color: var(--orange-main);
  font-size: 24px;
}

.apply-icon {
  width: 80px;
  height: 80px;
  background: var(--blue-light);
  color: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.apply-title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
  color: #3498db;
}

.apply-desc {
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 800px) {
  .apply-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .apply-step:not(:last-child)::after {
    top: auto;
    bottom: -36px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
  }

  .apply-desc {
    text-align: center;
  }
}


#message {
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12L12 0H6L0 6M12 12V6L6 12' fill='%23ff7a00' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  position: relative;
  overflow: hidden;
  color: var(--text-main);
}

.msg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.msg-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: -20px 20px 0 var(--blue-main);
}

.msg-content {
  text-align: left;
}

.msg-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.5;
  color: #3498db;
}

.msg-body {
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 960px) {
  .msg-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .msg-img {
    box-shadow: -12px 12px 0 rgba(255, 255, 255, 0.2);
  }

  .msg-title {
    text-align: center;
  }
}

#cta {
  background: var(--orange-main);
  padding: 80px 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
  color: var(--text-white);
}

.cta-banner-icon {
  flex-shrink: 0;
}

.cta-circle {
  width: 120px;
  height: 120px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cta-circle-text {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.cta-banner-content {
  flex-grow: 1;
}

.cta-banner-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.cta-banner-desc {
  line-height: 1.8;
  font-weight: 600;
}

.cta-banner-action {
  flex-shrink: 0;
}

.cta-banner-btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s;
}

.cta-banner-btn-group:hover {
  transform: translateY(-4px);
}

.cta-banner-btn-main {
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding: 0 40px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  height: 64px;
}

.cta-banner-btn-arrow {
  background: #000;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner-btn-arrow svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 960px) {
  #cta {
    padding: 40px 0;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cta-banner-title {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .cta-banner-desc {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
  }

  .cta-circle {
    width: 64px;
    height: 64px;
  }

  .cta-circle svg {
    width: 20px !important;
    height: 20px !important;
  }

  .cta-circle-text {
    font-size: 10px;
  }

  .cta-banner-btn-main {
    font-size: 15px;
    padding: 0 24px;
    height: 50px;
  }

  .cta-banner-btn-arrow {
    width: 50px;
    height: 50px;
  }
}

#contact {
  background: var(--orange-light);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--bg-white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.contact-info-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #3498db;
}

.contact-dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 16px;
}

.contact-dt {
  width: 100px;
  font-weight: 700;
  color: var(--text-muted);
}

.contact-dd {
  flex: 1;
  font-weight: 500;
}

.contact-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  background: #ff7a00;
  color: #fff;
  transition: all 0.2s;
}

.contact-btns a:hover {
  background: var(--orange-dark);
  color: #fff;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .contact-dt {
    width: 80px;
  }

  .contact-map {
    height: 300px;
    min-height: auto;
  }
}

footer {
  background: var(--blue-dark);
  padding: 40px 0 80px;
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 13px;
  color: #fff;
}

.sp-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 1001;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.sp-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.sp-cta-tel {
  background: var(--orange-main);
  color: var(--text-white);
}

.sp-cta-mail {
  background: var(--blue-main);
  color: var(--text-white);
}

@media (max-width: 960px) {
  .sp-cta {
    display: flex;
  }
}

/* Animation class */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--blue-main);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 116, 217, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-4px);
  background: var(--orange-main);
  box-shadow: 0 6px 16px rgba(255, 133, 27, 0.4);
}

@media (max-width: 960px) {
  #back-to-top {
    bottom: 84px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

.section-icon {
  width: 60px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

@media (max-width: 960px) {
  .section-icon {
    width: 48px;
    margin-bottom: 8px;
  }
}

.merit-grid-override {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .merit-grid-override {
    grid-template-columns: 1fr;
  }
}