@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #e6edf3;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.wide-container {
  max-width: 1280px;
  padding: 0 60px;
}

/* Header */
.header {
  background: white;
  padding: 15px 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.header-logo img {
  height: 35px;
  margin-top: 1px;
  width: auto;
}

.header-text {
  font-size: 18px;
  font-weight: 600;
  color: #0f2f5c;
  line-height: 1.2;
  text-align: right;
}

/* Main Visual */
.main-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.main-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.main-visual-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: -40px;
}

.main-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(55.32deg, rgba(0, 64, 154, 0.7) 23.18%, rgba(96, 154, 215, 0.6) 87.17%);
  z-index: 2;
}

.main-visual-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 28, 104, 0.8) 100%);
  z-index: 3;
}

/* Main Message */

.main-message-bg {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 726px;
  height: auto;
  padding: 20px;
  border-radius: 10px;
  top: 0;
  left: 0;
  z-index: 1;
}

.main-message h1 {
  position: relative;
  z-index: 10;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.95);
  width: fit-content;
  margin-left: 40px;
  color: #0F2F5C;
}

.main-message .large {
  font-size: 48px;
}

.main-message .medium {
  font-size: 38px;
}

.point-item {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 280px;
}

.step-content h3 {
  color: black;
}

.floawting-button {
  display: none;
  position: fixed;
  width: 166px;
  height: 166px;
  background-color: black;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.25) 3px 4px 6px;
  overflow: visible;
  right: 80px;
  bottom: 10px;
  z-index: 100;
}

.floawting-button-img {
  position: absolute;
  top: -26px;
  width: 180px;
  height: auto;
  min-width: 180px;
  right: -7px;
  display: block;
  transition: 0.3s;
  pointer-events: auto;
  cursor: pointer;
}

@media (min-width: 768px) {
  .floawting-button-img:hover {
    content: url('./s73_floawting-button-hover.svg?202508201000');
  }
}

.point-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #000;
  font-weight: 700;
  width: 100%;
  padding: 15px;
}

.point-label {
  font-size: 16px;
  line-height: 1.4;
}

.point-number {
  font-size: 18px;
  font-style: italic;
}

.point-large {
  font-size: 36px;
  font-style: italic;
}

.point-description {
  font-size: 18px;
  line-height: 1.4;
}

/* CTA Button */
.cta-button {
  align-self: center;
  margin-top: 40px;
  border: 2.7px solid #E6EDF3;
  border-radius: 73px;
  background-color: #E6EDF3;
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.25);
}

.cta-img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
  pointer-events: auto;
  cursor: pointer;
}

.cta-pc-only {
  display: block;
}

.cta-pc-only:hover {
  content: url('./s73_cta-btn-hover.svg?202508201000');
}

.cta-sp-only {
  display: none;
}

.cta-time {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-time-bg {
  position: absolute;
  width: 80px;
  height: 50px;
  border-radius: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cta-time-text {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  font-weight: 700;
}

.cta-time-text p:first-child {
  font-size: 14px;
}

.time-number {
  font-size: 32px;
  font-style: italic;
}

.cta-text {
  color: white;
  font-weight: 700;
}

.cta-text p:first-child {
  font-size: 16px;
}

.cta-text p:last-child {
  font-size: 24px;
}

/* Job Examples */
.job-examples {
  padding: 60px 0;
  background: #e6edf3;
}

.job-examples h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f2f5c;
  text-align: center;
  margin-bottom: 2%;
}

.carousel {
  overflow-x: auto;
  padding: 20px 0;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .carousel {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
  }

  .job-card {
    scroll-snap-align: start;
  }
}

.carousel-container {
  display: flex;
  gap: 40px;
  padding: 0 20px;
  min-width: max-content;
}

.job-card {
  background: white;
  border: 2px solid #0746a0;
  border-radius: 10px;
  padding: 28px 21px;
  width: 360px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.2s;
}

@media (hover: hover) {
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(7, 70, 160, 0.15);
  }
}

.job-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f2f5c;
  line-height: 1.4;
  flex-grow: 1;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0746a0;
}

.job-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.align-center {
  align-items: center;
  justify-content: center;
  display: flex;
}

.salary {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  top: -4px;
}

/* Strengths */
.strengths-sp-only {
  display: none;
}

.strengths {
  position: relative;
  background: linear-gradient(317.73deg, #0F2F5C 3.91%, #295BA1 49.64%, #0F2F5C 100%);
  padding: 40px 140px;
  overflow: hidden;
}

.strengths-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.strengths-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.strengths .container {
  position: relative;
  z-index: 10;
}

.strengths h2 {
  font-size: 36px;
  font-weight: 700;
  color: #e6edf3;
  text-align: center;
}

.strength-items {
  max-width: 900px;
  margin: 0 auto
}

.strength-item {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  /* 隙間なし */
}

.strength-item:nth-of-type(2) .strength-image {
  order: 2;
  margin-left: -20%;
  /* 横方向に2割重ねる */
  text-align: right;
}

.strength-item:nth-of-type(2) .strength-text {
  order: 1;
  margin-left: 0;
}

.strength-point {
  position: absolute;
  top: -25px;
  left: -1px;
  z-index: 20;
}

.strength-box {
  width: 50%;
  box-sizing: border-box;
  opacity: 0.9;
  border-radius: 12px;
  padding: 20px;
}

.strength-image {
  width: 75%;
  padding: 20px 0;
  z-index: 1;
}

.strength-text {
  width: 100%;
  height: 50%;
  translate: 0 65px;
  padding: 35px 20px 20px 25px;
  background: rgba(255, 255, 255, 0.95);
  margin-left: -20%;
  /* 横方向に2割重ねる */
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  z-index: 2;
}

.strength-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0746a0;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Process Flow */
.process-flow {
  padding: 60px 0;
  background: #e6edf3;
}

.process-flow h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0f2f5c;
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  border-radius: 20px;
  padding: 0 40px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 40px;
  color: white;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  min-width: 100px;
  flex-shrink: 0;
}

.step-number img {
  margin: 0 auto;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

.step-details {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.step-tag {
  color: #0f2f5c;
  padding: 2px 12px;
  border-radius: 15px;
  font-size: 15px;
  border: 1px solid #0f2f5c;
}

/* Message */
.message {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.message-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.message-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 26, 68, 0.7);
  z-index: 2;
}

.message-content {
  position: relative;
  z-index: 10;
  color: white;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
}

/* Entry Form */
.entry-form {
  padding: 80px 0;
  background: #e6edf3;
}

.entry-form h2 {
  font-size: 48px;
  font-weight: 900;
  color: #0f2f5c;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

.form-container {
  background: white;
  border-radius: 10px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
  font-size: 28px;
  color: #0f2f5c;
  text-align: center;
  margin-bottom: 32px;
}

.progress-bar {
  margin-bottom: 40px;
}

.progress-indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}

.gauge-icon {
  background: #0746a0;
  color: white;
  width: 30px;
  height: 25px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 10;
}

.progress-fill {
  flex: 1;
  height: 10px;
  background: #d9d9d9;
  border-radius: 5px;
  margin: 0 20px;
  position: relative;
}

.progress-text {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.form-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0f2f5c;
  text-align: center;
  margin-bottom: 32px;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-option {
  background: #f8f9fa;
  border: 2px solid #0f2f5c;
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.form-option::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #0746a0;
}

.form-option:hover {
  background: #e3f2fd;
  transform: translateX(5px);
}

.form-option.selected {
  background: #0746a0;
  color: white;
}

/* Footer */
.footer {
  background: #12386c;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 30px;
}

.footer p {
  color: white;
  font-size: 14px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.floating-btn {
  background: #fa5f21;
  border: 4px solid white;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
  position: relative;
}

.floating-time {
  color: white;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 15px;
  transform: rotate(-25deg);
}

.floating-number {
  font-size: 20px;
  font-weight: 800;
}

.floating-text {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-top: 10px;
}

.floating-text p:nth-child(2),
.floating-text p:nth-child(3) {
  font-size: 16px;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sp-br {
  display: none;
}

@media (max-width: 1280px) {
  .strengths {
    padding: 60px 0;
  }

  .strength-item {
    margin-bottom: 70px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header .container {
    flex-direction: row;
    gap: 10px;
    text-align: center;
  }

  .header-text {
    font-size: 14px;
    display: none;
  }

  .main-visual {
    min-height: 500px;
  }

  .main-visual-content {
    padding: 0;
    min-height: 630px;
  }

  .main-message h1 {
    margin-left: 0;
  }

  .sp-medium {
    font-size: 18px;
  }

  .main-message .large {
    font-size: 24px;
  }

  .main-message .medium {
    font-size: 18px;
  }

  .main-message .sp-medium {
    font-size: 18px;
  }

  .main-message-bg {
    padding: 15px;
  }

  .point-highlights {
    flex-direction: column;
    align-items: unset;
  }

  .point-decoration {
    width: 200px;
    height: 60px;
  }

  .point-large {
    font-size: 28px;
  }

  .cta-button {
    gap: 15px;
    position: absolute;
    top: 72%;
    border: unset;
    border-radius: unset;
    background-color: unset;
    box-shadow: unset;
  }

  .cta-pc-only {
    display: none;
  }

  .cta-sp-only {
    display: block;
  }

  .cta-text p:last-child {
    font-size: 18px;
  }

  .job-examples h2 {
    font-size: 24px;
  }

  .carousel-container {
    padding: 0 15px;
  }

  .job-card {
    min-width: 280px;
    width: 280px;
    padding: 20px 15px;
  }

  .job-card h3 {
    font-size: 16px;
  }

  .strengths-sp-only {
    display: block;
  }

  .strengths-pc-only {
    display: none;
  }

  .strengths {
    padding: 60px 0;
  }

  .strength-items {
    width: auto;
    padding: 0 20px;
  }

  .strength-item {
    width: 100%;
    flex-direction: column;
    padding: 20px 0 0 0;
    margin-bottom: 0;
  }

  .strength-point {
    top: 36px;
    zoom: 1.3;
  }

  .strength-item:nth-of-type(2) .strength-image {
    order: 1;
    margin-left: 0;
    text-align: left;
  }

  .strength-item:nth-of-type(2) .strength-text {
    order: 2;
    margin-top: -15%;
    /* 縦方向に2割重ねる */
  }

  .strength-image {
    width: 100%;
    padding: 20px;
  }

  .strength-text {
    width: 100%;
    padding: 25px;
    translate: 0;
    margin-left: 0;
    margin-top: -15%;
    /* 縦方向に2割重ねる */
  }

  .process-flow h2 {
    font-size: 28px;
  }

  .process-steps {
    padding: 0px;
    width: auto;
  }

  .process-step {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 3rem;
  }

  .step-content {
    display: grid;
    width: 335px;
    max-width: 100%;
    justify-content: center;
    text-align: left;
  }

  .step-content h3 {
    font-size: 18px;
    margin: 0 auto;
  }

  .step-details {
    max-width: 251px;
    margin: 0 auto;
  }

  .step-tag {
    font-size: 12px;
    padding: 1px 10px;
  }

  .message-content {
    font-size: 18px;
    padding: 0 15px;
  }

  .message-content p br {
    display: none;
  }

  .entry-form h2 {
    font-size: 32px;
  }

  .form-container {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .form-container h3 {
    font-size: 20px;
  }

  .floating-btn {
    width: 100px;
    height: 100px;
    right: 15px;
    bottom: 15px;
  }

  .floawting-button {
    width: 127px;
    height: 127px;
    right: 20px;
  }

  .floawting-button-img {
    top: -23px;
    width: 140px;
    min-width: 140px;
    right: -6px;
  }

  .floating-time {
    font-size: 12px;
  }

  .floating-text {
    font-size: 11px;
  }

  .floating-text p:nth-child(2),
  .floating-text p:nth-child(3) {
    font-size: 13px;
  }

  .cta-button img {
    width: 280px;
  }

  .strengths h2 {
    font-size: 28px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-br {
    display: inline;
  }
}

/* Scrollbar styles */
.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.carousel::-webkit-scrollbar-thumb {
  background: #0746a0;
  border-radius: 4px;
}

.carousel::-webkit-scrollbar-thumb:hover {
  background: #0f2f5c;
}

/* Smooth transitions */
html {
  scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.main_form_wrapper .gauge .gauge-icon:before {
  background: url(./s73_icon_form.svg?202508201000) no-repeat;
}

.gauge-icon {
  background: unset;
}

.main_form_wrapper .form_inner {
  padding: unset;
}

.main_form_wrapper .swiper-container dt {
  font-size: 20px;
}

.main_form_wrapper .swiper-container dd .form_list .color-hover {
  font-size: 16px;
}

.entry-form h2 {
  font-size: 64px;
  margin-bottom: 20px;
}

.entry-form h3 {
  font-size: 36px;
  font-weight: 400;
  color: #0f2f5c;
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .entry-form h2 {
    font-size: 44px;
  }

  .entry-form h3 {
    font-size: 20px;
  }

  .main_form_wrapper .swiper-container dt {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .main_form_wrapper .swiper-container dd .form_select {
    gap: 3px;
  }

  .main_form_wrapper .btn_box .swiper-button-next {
    width: 50%;
  }
}

.thanks_sec_inner {
  padding: 30px;
  text-align: center;
  width: 720px;
  margin: auto;
}

.thanks_sec_inner h1 {
  color: #FA5F21;
  font-size: 36px;
  text-align: center;
}

.thanks_sec_inner .approval_txt {
  margin-top: 40px;
  color: #0F2F5C;
  font-size: 16px;
  font-weight: 500;
}

.thanks_sec_inner p {
  text-align: justify;
}

.thanks_sec_inner .font-small {
  font-size: 12px;
}

@media (max-width: 768px) {
  .thanks_sec_inner {
    padding: 7% 10% 7% 10%;
    width: auto;
  }

  .thanks_sec_inner h1 {
    font-size: 28px;
  }

  .thanks_sec_inner div {
    margin-top: 40px;
    font-size: 16px;
  }
}
