.question-item {
  background-color: #f9fafb;
  padding: 1rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.question-item p {
  text-align: center;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.rating-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.rating-left {
  color: #3b82f6;
  font-weight: 500;
  text-align: right;
  padding-right: 15px;
  flex: 0 0 auto;
  min-width: 80px;
  font-size: 14px;
}

.rating-right {
  color: #eab308;
  font-weight: 500;
  text-align: left;
  padding-left: 15px;
  flex: 0 0 auto;
  min-width: 80px;
  font-size: 14px;
}

.rating-values {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  flex: 0 0 auto;
}

.rating-value {
  text-align: center;
}

input[type="radio"] {
  width: 30px;
  height: 50px;
  margin: 15px;
  vertical-align: middle;
  cursor: pointer;
}

label.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0.25rem;
}

.radio-value {
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .rating-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    padding: 0;
  }
  
  .rating-values {
    order: 1;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 2px;
  }
  
  .rating-left {
    order: 2;
    min-width: 0;
    text-align: left;
    padding: 0;
    font-size: 12px;
    max-width: 45%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .rating-right {
    order: 3;
    min-width: 0;
    text-align: right;
    padding: 0;
    font-size: 12px;
    max-width: 45%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .question-item {
    padding: 0.75rem 0.5rem;
  }
  
  input[type="radio"] {
    width: 30px;
    height: 50px;
    margin: 15px;
  }
  
  .radio-value {
    font-size: 12px;
  }
} 


table {
  width: 100% !important;
  max-width: 100% !important;
  table-layout: fixed;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (max-width: 480px) {
  td {
    padding: 2px !important;
    font-size: 12px !important;
    word-break: break-word;
  }
  
  .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    overflow-x: hidden;
  }
  
  table {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
} 
button, input[type="submit"] {
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  color: #374151;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.form-button {
  cursor: pointer;
  width: 120px;
}

.form-input-field {
  width: 300px;
  margin: 0 auto;
}

.form-submit-button {
  width: 300px;
  margin: 0 auto;
  cursor: pointer;
} 
body, html {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  background-color: #e6f7ff;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}

.main-container {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding: 2rem 1rem;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 100%;
}

.max-w-4xl {
  max-width: 56rem;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

.text-lg {
  font-size: 1.125rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-bold {
  font-weight: 700;
}

.p-4 {
  padding: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.flex {
  display: flex;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.inline-block {
  display: inline-block;
}

.w-full {
  width: 100%;
} 

.answer-table {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0.5rem;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}

.answer-table td {
  text-align: center;
  width: 20%;
  padding: 0;
  vertical-align: top;
  height: 100%;
}

.answer-table td:first-child {
  text-align: right;
  width: 25%;
  color: #3b82f6;
  font-weight: 500;
  padding-right: 10px;
}

.answer-table td:last-child {
  text-align: left;
  width: 25%;
  color: #eab308;
  font-weight: 500;
  padding-left: 10px;
}

.answer-radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding: 0.75rem 0.25rem;
  transition: background-color 0.2s;
  margin: 0;
}

.answer-radio-label:hover {
  background-color: #f3f4f6;
}

.answer-radio-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  position: relative;
}

.answer-radio-button:checked {
  border-color: #3b82f6;
  border-width: 1px;
}

.answer-radio-button:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #3b82f6;
  border-radius: 50%;
}

.answer-radio-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.answer-radio-button[value="3"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  margin-bottom: 2.4rem;
  transform: scale(1.3);
  position: relative;
  top: 0.2rem;
}

.answer-radio-button[value="2"],
.answer-radio-button[value="4"] {
  width: 28px;
  height: 28px;
  cursor: pointer;
  margin-bottom: 2rem;
  transform: scale(1.6);
  position: relative;
  top: 0;
}

.answer-radio-button[value="1"],
.answer-radio-button[value="5"] {
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-bottom: 2rem;
  transform: scale(1.8);
  position: relative;
  top: -0.2rem;
}

.answer-radio-value {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  width: 95%;
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: break-word;
}


.form-input-field {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.form-submit-button {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}


.form-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.form-button {
  padding: 1.2rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #3b82f6;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s;
  min-width: 120px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-button:hover {
  background-color: #2563eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .form-button {
    padding: 1.8rem 3rem;
    font-size: 1rem;
    min-width: 140px;
  }
  
  .form-buttons {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}


.question-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #ffffff;
}

.question-content {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-align: center;
}

.answer-container {
  margin-left: auto;
  margin-right: auto;
}

.answer-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.answer-title-container {
  text-align: center;
  width: 100%;
}

.answer-title-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.answer-error {
  background-color: #fee2e2;
  border: 1px solid #f87171;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.answer-button-group {
  text-align: center;
  margin-bottom: 1.5rem;
}

.answer-select-button {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin: 0 0.25rem 0.5rem;
}

.answer-select-button:hover {
  background-color: #1d4ed8;
}

.answer-random-button {
  display: inline-block;
  background-color: #22c55e;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin: 0 0.25rem 0.5rem;
}

.answer-random-button:hover {
  background-color: #15803d;
}

.answer-form {
  text-align: center;
}

.answer-questions {
  text-align: center;
}

.answer-questions > * + * {
  margin-top: 1.5rem;
}

.answer-no-questions {
  text-align: center;
  color: #ef4444;
}


.answer-bottom-progress {
  margin-top: 2rem;
}


.progress-bar-container {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  color: #374151;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-note {
  color: #6b7280;
  font-size: 0.75rem;
  margin: -0.25rem 0 0.5rem;
  text-align: center;
}

.form-input {
  width: 16rem;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  color: #374151;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
} 
/* Form styles */
.form-footer {
  margin-top: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #374151;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 16rem;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  color: #374151;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-button {
  padding: 0.5rem 0.75rem;
  background-color: #3b82f6 !important;
  color: white !important;
  font-weight: bold;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  display: inline-block;
  width: 8rem;
}

.form-button:hover {
  background-color: #2563eb !important;
}

.form-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}


input[type="text"],
input[type="email"] {
  width: 16rem !important;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  color: #374151;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  position: relative;
}

input[type="radio"]:checked {
  border-color: #3b82f6;
  border-width: 1px;
}

input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #3b82f6;
  border-radius: 50%;
}

input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
} 

.landing-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  box-sizing: border-box;
}

.landing-hero {
  background-color: white;
}

.landing-hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.landing-section {
  background-color: white;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.landing-section-gradient {
  background: linear-gradient(to right, #e6f0fa, #ffffff);
}

.landing-job-card {
  background: #FCF6E2;
  border-radius: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.landing-badge-container {
  text-align: center;
  margin: 60px 0 10px;
  position: relative;
  width: 100%;
}

.landing-badge {
  background-color: #FFA726;
  border-radius: 30px;
  padding: 8px 15px;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.landing-badge-text {
  color: white;
  font-weight: bold;
  margin: 0;
  font-size: 16px;
}

.landing-job-title {
  text-align: center;
  margin: 15px 0;
  font-size: 34px;
  font-weight: bold;
}

.landing-job-image-container {
  text-align: center;
  margin-bottom: 20px;
}

.landing-job-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
}

.landing-job-section {
  margin-top: 25px;
  text-align: left;
  padding: 0 30px;
}


.landing-job-section:nth-last-child(2),
.landing-job-section:last-child {
  position: relative;
  overflow: hidden;
}

.landing-job-section:nth-last-child(2)::after,
.landing-job-section:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(252, 246, 226, 0.2), rgba(252, 246, 226, 1) 80%);
  pointer-events: none;
}

.landing-job-section-title {
  color: #5D4037;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.landing-job-section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5D4037;
}

.landing-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 15px;
}

.landing-tag {
  font-size: 15px;
  display: inline-block;
}

.landing-heading {
  font-weight: bold;
  text-align: center;
}

.landing-heading-blue {
  color: #3b6ea8;
  font-size: 24px;
  margin-bottom: 1.25rem;
}

.landing-heading-dark-blue {
  color: #2c5282;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.landing-paragraph {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  color: #333;
}

.landing-paragraph-large {
  font-size: 16px;
  line-height: 1.7;
  margin: 10px;
}

.landing-cta-container {
  text-align: center;
  margin: 24px 0 16px;
}

.landing-cta-button {
  display: inline-block;
  padding: 14px 20px;
  background-color: #FE970A;
  color: white;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.125rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.landing-cta-button-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-cta-icon {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  background-color: white;
  color: #FE970A;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
}

.landing-cta-button-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  transition: transform 0.2s;
}

.landing-cta-button-image:hover {
  transform: translateY(-2px);
}

.landing-footer {
  background: linear-gradient(to right, #fff, #fff);
  padding: 30px;
}

.landing-footer-heading {
  background-color: #39B5FD;
  padding: 3px;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.landing-highlight-orange {
  color: #ff8800;
  font-weight: bold;
}

.landing-highlight-blue {
  color: #3b6ea8;
  font-weight: bold;
}


.landing-timer-section {
  text-align: center;
  background-color: #FFFCF0;
  padding: 30px 15px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  box-sizing: border-box;
}

.landing-timer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 5px 10px;
  width: 100%;
}

.landing-timer-image {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.landing-timer-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  flex-shrink: 0;
}

.landing-timer-circle {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: white;
  border: 5px solid #336699;
  top: -2px;
  left: -2px;
}

.landing-timer-hand1 {
  position: absolute;
  width: 5px;
  height: 20px;
  background-color: #336699;
  top: 8px;
  left: 27px;
  transform-origin: bottom center;
  transform: rotate(-30deg) translateY(10px);
  border-radius: 2px;
}

.landing-timer-hand2 {
  position: absolute;
  width: 5px;
  height: 17px;
  background-color: #336699;
  top: 20px;
  left: 38px;
  transform-origin: bottom left;
  transform: rotate(60deg) translateY(5px);
  border-radius: 2px;
}


.landing-timer-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  background-color: #336699;
  top: -6px;
  left: 25px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}


.landing-timer-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #336699;
  top: 15px;
  right: -5px;
  border-radius: 50%;
}

.landing-timer-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.landing-timer-number {
  font-size: 4rem;
  font-weight: bold;
  color: #FFC500;
  text-shadow: -1px -1px 0 #336699, 1px -1px 0 #336699, -1px 1px 0 #336699, 1px 1px 0 #336699;
  margin-right: 5px;
  line-height: 1;
}

.landing-timer-min {
  font-size: 3rem;
  font-weight: bold;
  color: #FFC500;
  text-shadow: -1px -1px 0 #336699, 1px -1px 0 #336699, -1px 1px 0 #336699, 1px 1px 0 #336699;
  margin-right: 10px;
  line-height: 1;
}

.landing-timer-about {
  font-size: 2rem;
  font-weight: bold;
  color: #336699;
  margin-right: 5px;
  line-height: 1.2;
  margin-top: 5px;
}

.landing-timer-diagnosis {
  font-size: 2rem;
  font-weight: bold;
  color: #336699;
  line-height: 1.2;
  margin-top: 5px;
}

.landing-big-cta-button {
  display: block;
  padding: 20px;
  background-color: #FF9000;
  color: white;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.landing-big-cta-button-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-big-cta-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-size: 24px;
  background-color: white;
  color: #FF9000;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
}

.landing-big-cta-button-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.2s;
}

.landing-big-cta-button-image:hover {
  transform: translateY(-2px);
}



.landing-strength-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.landing-job-description-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.landing-job-card-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.landing-competency-details-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .landing-strength-image {
    max-width: 100%;
    box-sizing: border-box;
  }

  .landing-competency-details-image {
    max-width: 100%;
    box-sizing: border-box;
  }

  .landing-job-description-image {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .landing-cta-button-image,
  .landing-big-cta-button-image {
    margin-left: auto;
    margin-right: auto;
  }
}

.top-answer-summary {
  padding: 24px 18px;
  background: #fff;
}

.top-answer-summary-title {
  font-size: 24px;
  font-weight: bold;
  color: #2b5886;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.top-answer-summary-content {
  font-size: 1.15rem;
  color: #222;
  line-height: 2;
  text-align: left;
}

.top-answer-summary-highlight {
  color: #f6a02d;
  font-weight: bold;
}

.landing-timer-image-responsive {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 767px) {
  .section-title-mobile {
    text-align: left !important;
  }
  .content-mobile {
    text-align: left !important;
  }
  .tags-container-mobile {
    justify-content: flex-start !important;
  }
} 
* {
  box-sizing: border-box;
}

body.results-page {
  background-color: #f0f4f8;
  font-family: 'Noto Sans JP', sans-serif;
}

.result-container {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.result-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: #2b5886;
  padding: 14px;
  width: 100%;
}

.result-card {
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 20px 10px 10px 10px;
  overflow: hidden;
}

.result-card:first-of-type {
  background: #e8f4fd;
  margin-top: 0;
}

.job-recommendation-header + .result-card {
  padding: 0;
}

.result-card-content {
  padding: 0;
}

.items-container {
  width: 100%;
}

.item {
  margin-bottom: 16px;
  width: 100%;
}

.skill-item {
  background-color: white;
  border-radius: 0;
  padding: 0;
  display: flex;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}


.skill-item:nth-child(1) .skill-header-wrapper {
  background-color: #FCF6E2;
}

.skill-item:nth-child(2) .skill-header-wrapper {
  background-color: #E2FCEA;
}

.skill-item:nth-child(3) .skill-header-wrapper {
  background-color: #E2E6FC;
}

.skill-item:nth-child(4) .skill-header-wrapper {
  background-color: #FCE2F0;
}

.skill-item:nth-child(5) .skill-header-wrapper {
  background-color: #FCFBE2;
}

.skill-item:nth-child(6) .skill-header-wrapper {
  background-color: #E2FCFB;
}

.skill-item:nth-child(7) .skill-header-wrapper {
  background-color: #ECE2FC;
}

.skill-item:nth-child(8) .skill-header-wrapper {
  background-color: #FCE2E2;
}

.skill-item:nth-child(9) .skill-header-wrapper {
  background-color: #F4FCE2;
}

.skill-item:nth-child(10) .skill-header-wrapper {
  background-color: #E2F4FC;
}

.skill-item:nth-child(11) .skill-header-wrapper {
  background-color: #F6E2FC;
}

.skill-item:nth-child(12) .skill-header-wrapper {
  background-color: #FCEAE2;
}

.skill-item:nth-child(13) .skill-header-wrapper {
  background-color: #EAFCE2;
}

.skill-item:nth-child(14) .skill-header-wrapper {
  background-color: #E2EDFC;
}

.skill-header-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 15px;
  position: relative;
  flex-wrap: nowrap;
  gap: 5px;
}

.rank-badge {
  color: #2b5886;
  font-weight: bold;
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  font-size: 20px;
  background: none;
  margin-left: -5px;
  margin-right: 10px;
}

.rank-badge.blue {
  margin-left: -10px;
}

.rank-badge-img {
  margin-top: -18px;
  width: 30px;
  height: 45px;
  margin-left: 0;
  margin-right: 10px;
}

.skill-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -25px;
  position: relative;
}

.custom-icon {
  width: 70px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-icon.self-learning {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/self_icon-f3bb1ab75b099d43635aced1cb2593a266563f5739ea94638b6de73c3d7fed0e.png);
}

.custom-icon.problem {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/problem_icon-5137149831ef3ad0ab473e3329cbaacda37fd7762c0b79384b0855f6c02ee2f2.png);
}

.custom-icon.data {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/data_icon-77de7680081f73ad888ca195f26deab80e1ee803a88821613fdc151cee95efe2.png);
}

.custom-icon.hypothesis {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/hypothesis_icon-e232adb78980d72bac8743dc3db6895cab284416534a50b47255af1d793ab907.png);
}

.custom-icon.customer {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/customer_icon-cf699dbdfca4666e0164528a53b74e8a3fd2ccda4907122fdadbb25cc91b93af.png);
}

.custom-icon.verbalize {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/verbalize_icon-50a29106074a0134e023eea8dbb1a828fec086e2a26271dcdbc96a8a6b481be9.png);
}

.custom-icon.presen {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/presen_icon-b64bc9556de47c21ebef59fae7739c1052cca23f6da00484cb59d4a7a8ac69ef.png);
}

.custom-icon.hearing {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/hearing_icon-8ef6548f35a4034d77e9ad17d2d92af7f6a4dfc43b219f57fe3e0f14de2b3ed6.png);
}

.custom-icon.sociability {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/sociability_icon-71c2673edcfd6f9d45573c61f4620bc26f6b9118f34c0f3c61586eebe3af06af.png);
}

.custom-icon.perserve {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/perserve_icon-1c77bea60ad1f672fd1fe57e71cbb1c64e38418f1a5571f87afadec7931a691d.png);
}

.custom-icon.neatiness {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/neatiness_icon-bf227f1383d287dd155be2c2b11b5bdb109ec41c51c533782d4b49570bb27bc0.png);
}

.custom-icon.integrity {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/integrity-95c297cffcaab7e92e95cb01db8b67f167b9029e3e0479add12f3210de203f50.png);
}

.custom-icon.building {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/building_icon-c7a05c4021679a48ce976ec9cb0dd58bc582a494978eb6b672e431cc424eeb06.png);
}

.custom-icon.creativity {
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/results/skills/creativity_icon-4e38ecc5ff308c11a523e322b8b1c3386c16e061b0957aa2ba6bfd798dea7278.png);
}

.skill-content {
  flex: 1;
  margin-top: -5px;
}

.skill-title {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 5px 0;
  color: #2b5886;
}

.skill-description {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.job-item {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 16px;
  margin-bottom: 12px;
}

.job-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.job-description {
  font-size: 14px;
  color: #4b5563;
  margin: 8px 0 0 0;
}

.results-heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}


.probability-section {
  text-align: center;
  position: relative;
  max-width: 100%;
  background: linear-gradient(to bottom, #eef6fd, #dceefb);
  border-radius: 0;
  padding: 10px;
}

.probability-content {
  padding: 20px;
  position: relative;
}

/* Laurel wrapper styles */
.laurel-wrapper {
  position: relative;
  padding: 20px;
  text-align: center;
  background-image: url(https://rightjob-tenshoku-shindan.website/../images/laurel_background.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.laurel-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 30px;
  background-image: url(https://rightjob-tenshoku-shindan.website/../images/crown.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.probability-text {
  color: #2b5886;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}

.probability-text p {
  margin: 0;
}

.probability-text p:last-child {
  font-size: 24px;
  margin-top: 5px;
  font-weight: 800;
}

.probability-content::before,
.probability-content::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 40px;
  background-color: #2b5886;
  top: 50%;
  z-index: 1;
}

.probability-content::before {
  left: 15%;
  transform: translateY(-50%) rotate(-30deg);
}

.probability-content::after {
  right: 15%;
  transform: translateY(-50%) rotate(30deg);
}

.experience-cta-section {
  background: #f3f8fb;
  padding: 48px 0;
  text-align: center;
}

.more-know-cta-section {
  background: #f3f8fb;
  padding: 48px 0;
  text-align: center;
}

.more-know-cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3973a6;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  padding-left: 24px;
  padding-right: 24px;
}

.more-know-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffa500;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 48px;
  padding: 24px 80px 24px 64px;
  box-shadow: 0 8px 24px rgba(255,165,0,0.18);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  min-width: 340px;
}

.more-know-cta-button:hover {
  background: #e59400;
  box-shadow: 0 12px 32px rgba(255,165,0,0.22);
}

.more-know-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #ffa500;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-left: 32px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255,165,0,0.10);
}

.more-info-section {
  text-align: center;
  background-color: #e8f4fd;
  position: relative;
}

.more-info-text {
  color: #2b5886;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 30px 0;
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #2b5886;
  margin: 0 auto;
  opacity: 0.7;
}

.career-coach-section {
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.coach-header {
  margin-bottom: 30px;
  text-align: center;
}

.coach-title {
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  font-weight: 700;
  text-align: center;
}

.highlight {
  color: #ffa500;
  font-weight: 700;
}

.tenshoku-logo {
  margin: 30px auto;
  max-width: 450px;
}

.logo-row {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 63px;
  font-weight: bold;
  color: white;
  border-radius: 12px;
}

.logo-box.blue {
  background-color: #2b5886;
}

.logo-box.light-blue {
  background-color: #4aa8ff;
}

.experience-badge {
  background-color: #ffa500;
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
  max-width: 260px;
  text-align: center;
  display: block;
}

.satisfaction-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.satisfaction-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.laurel-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border: 2px dashed #f39c12;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.laurel-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  background-image: url(https://rightjob-tenshoku-shindan.website/assets/crown.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: none; /* Hide until image is available */
}

.satisfaction-content {
  text-align: center;
}

.satisfaction-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.satisfaction-percentage {
  font-size: 36px;
  color: #f39c12;
  margin: 5px 0;
  font-weight: bold;
}

.satisfaction-stars {
  font-size: 20px;
  color: #f39c12;
}

.satisfaction-note {
  font-size: 12px;
  margin-top: 5px;
  color: #666;
}

.test-explanation-section {
  background-color: #f2f9ff;
  background-image: linear-gradient(#cee8fa 1px, transparent 1px), 
                    linear-gradient(90deg, #cee8fa 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 30px 20px;
}

.explanation-content {
  max-width: 500px;
  margin: 0 auto;
}

.explanation-heading {
  font-size: 20px;
  margin: 0 0 30px 0;
  color: #333;
}

.explanation-subheading {
  font-size: 20px;
  margin: 30px 0 10px 0;
  color: #333;
}

.explanation-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: #333;
}

.highlight-orange {
  color: #ffa500;
  font-weight: 700;
}

.pricing-cta-section {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: #f5faff;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-display {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.price-display-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.line-button-link {
  display: block;
  text-decoration: none;
  width: 90%;
  max-width: 400px;
  margin: auto;
  transition: transform 0.2s ease;
}

.line-button-link:hover {
  transform: scale(1.02);
}

.line-button-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 100px;
}

.career-coach-analysis-section + .line-button-section {
  margin: 40px 0;
}

.flow-section + .line-button-section {
  padding: 2rem 0 30px;
  background-color: #F4FBFF;
}

@media (max-width: 480px) {
  .recommendation-title {
    font-size: 20px;
  }
  
  .recommendation-text {
    font-size: 16px;
  }
  
  .price-display-image {
    max-width: 100%;
  }
}

.job-container {
  background-color: #FFF6E5;
  padding: 20px 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

.job-rank-image {
  text-align: center;
  margin: -10px auto 5px;
}

.job-rank-no-image {
  width: 54px;
  height: 61px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.job-rank-badge {
  background-color: #FFA726;
  border-radius: 30px;
  padding: 8px 15px;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
}

.job-rank-badge p {
  color: white;
  font-weight: bold;
  margin: 0;
  font-size: 16px;
}

.job-name {
  text-align: center;
  margin: 15px 0;
  font-size: 34px;
  font-weight: bold;
}

.job-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
}

.job-section {
  margin-top: 25px;
  text-align: left;
}

.job-section-title {
  color: #5D4037;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.job-skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.job-skill-tag {
  font-size: 15px;
  display: inline-block;
}

.job-description-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5D4037;
}

.job-career-path {
  margin-top: 25px;
  text-align: left;
}

.job-career-path-title {
  color: #5D4037;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.job-career-path-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5D4037;
  margin-bottom: 15px;
}

.job-career-path-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 767px) {
  .section-title-mobile {
    text-align: left !important;
  }
  .content-mobile {
    text-align: left !important;
  }
  .tags-container-mobile {
    justify-content: flex-start !important;
  }
}

.job-engineer {
  background-color: #E2F8FC;
}
.badge-engineer {
  background-color: #43CDE6;
}
.job-engineer .job-name,
.job-engineer .job-section-title,
.job-engineer .job-career-path-title {
  color: #174851;
}

.job-designer {
  background-color: #FCE2EC;
}
.badge-designer {
  background-color: #EC7DD2;
}
.job-designer .job-name,
.job-designer .job-section-title,
.job-designer .job-career-path-title {
  color: #5A2338;
}

.job-marketer {
  background-color: #FCF6E2;
}
.badge-marketer {
  background-color: #FFC500;
}
.job-marketer .job-name,
.job-marketer .job-section-title,
.job-marketer .job-career-path-title {
  color: #534927;
}

.job-inside-sales {
  background-color: #E2E2FC;
}
.badge-inside-sales {
  background-color: #6C6CF7;
}
.job-inside-sales .job-name,
.job-inside-sales .job-section-title,
.job-inside-sales .job-career-path-title {
  color: #2C2C64;
}

.job-customer-success {
  background-color: #E2FCF4;
}
.badge-customer-success {
  background-color: #2ACE9B;
}
.job-customer-success .job-name,
.job-customer-success .job-section-title,
.job-customer-success .job-career-path-title {
  color: #104B38;
}

.job-field-sales {
  background-color: #FFEBD5;
}
.badge-field-sales {
  background-color: #F8B165;
}
.job-field-sales .job-name,
.job-field-sales .job-section-title,
.job-field-sales .job-career-path-title {
  color: #6E3E2D;
}

.job-sales-planning {
  background-color: #E6FCE2;
}
.badge-sales-planning {
  background-color: #5ED249;
}
.job-sales-planning .job-name,
.job-sales-planning .job-section-title,
.job-sales-planning .job-career-path-title {
  color: #214A1A;
}

.job-product-planning {
  background-color: #FFFBDE;
}
.badge-product-planning {
  background-color: #FFDD00;
}
.job-product-planning .job-name,
.job-product-planning .job-section-title,
.job-product-planning .job-career-path-title {
  color: #534927;
}

.job-finance {
  background-color: #FFE4E4;
}
.badge-finance {
  background-color: #EC7D7D;
}
.job-finance .job-name,
.job-finance .job-section-title,
.job-finance .job-career-path-title {
  color: #3C2121;
}

.job-pr {
  background-color: #F0FCDA;
}
.badge-pr {
  background-color: #A2D249;
}
.job-pr .job-name,
.job-pr .job-section-title,
.job-pr .job-career-path-title {
  color: #214A1A;
}

.job-hr {
  background-color: #FCE9E2;
}
.badge-hr {
  background-color: #F88D65;
}
.job-hr .job-name,
.job-hr .job-section-title,
.job-hr .job-career-path-title {
  color: #6E3E2D;
}

.job-corporate-sales {
  background-color: #DDF2FF;
}
.badge-corporate-sales {
  background-color: #43A5E6;
}
.job-corporate-sales .job-name,
.job-corporate-sales .job-section-title,
.job-corporate-sales .job-career-path-title {
  color: #174851;
}

.strength-ranking-header {
  background: linear-gradient(to right, #33618E 2%, #587EA2 54%, #587EA2 100%);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: relative;
  margin-bottom: 0;
}

.strength-ranking-crown {
  display: block;
  width: 40px;
  height: 37px;
  margin: 0 auto 10px;
}

.strength-ranking-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px;
  color: #FED44E;
}

.strength-ranking-subtitle {
  font-size: 16px;
  margin: 20px 0 0;
  line-height: 1.5;
  padding: 0 20px;
}

.job-recommendation-header {
  background: linear-gradient(to right, #33618E 2%, #587EA2 54%, #587EA2 100%);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: relative;
  margin-bottom: 0;
}

.job-recommendation-icon {
  display: block;
  width: 40px;
  height: 37px;
  margin: 0 auto 10px;
}

.job-recommendation-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px;
  color: #FED44E;
}

.job-recommendation-subtitle {
  font-size: 16px;
  margin: 20px 0 0;
  line-height: 1.5;
  padding: 0 20px;
}

.result-card:nth-of-type(2) {
  margin-top: 0;
}

.more-info-image {
  width: 100%;
  max-width: 600px;
  display: block;
}

.career-coach-analysis-section {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.career-coach-analysis-image {
  width: 100%;
  height: auto;
  display: block;
}

.recommendation-section {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: #FFFDF4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recommendation-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #2b5886;
  margin: 0 0 30px;
  position: relative;
  padding-bottom: 10px;
}

.recommendation-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #ccc;
  background: linear-gradient(to right, transparent, #ccc, transparent);
}

.recommendation-highlight {
  color: #f8971d;
}

.recommendation-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recommendation-item {
  display: flex;
  align-items: flex-start;
}

.recommendation-check-icon {
  min-width: 30px;
  height: 30px;
  margin-right: 15px;
  margin-top: 2px;
  background-color: #2b5886;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommendation-check-icon:before {
  content: '';
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.recommendation-text {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

@media (max-width: 480px) {
  .recommendation-title {
    font-size: 20px;
  }
  
  .recommendation-text {
    font-size: 16px;
  }
}

.testimonials-section {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.testimonials-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pro-coach-section {
  width: 100%;
  max-width: 600px;
  padding: 0;
  position: relative;
}

.pro-coach-header {
  background: linear-gradient(135deg, #4c7bb0 0%, #2b5886 100%);
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 0;
}

.pro-coach-title {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}

.pro-coach-image-container {
  width: 100%;
  background-color: #FCFFF4;
  padding: 0;
  margin: 0;
  text-align: center;
}

.pro-coach-full-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  padding: 20px;
}

.pro-coach-description {
  background-color: #FCFFF4;
  padding: 0px 20px 20px 20px;
  margin-top: 0;
}

.pro-coach-description p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 15px;
  color: #333;
}

.pro-coach-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .pro-coach-title {
    font-size: 22px;
  }
  
  .pro-coach-description p {
    font-size: 16px;
  }
}

.limited-campaign-section {
  width: 100%;
  max-width: 600px;
  padding: 0;
  position: relative;
  text-align: center;
}

.limited-campaign-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

.flow-section {
  width: 100%;
  max-width: 600px;
  padding: 0;
  position: relative;
  text-align: center;
  background-color: #FFFBF0;
}

.flow-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

.landing-timer-section {
  background-color: #F4FBFF;
}

.landing-footer {
  background-color: #fff;
}

.landing-tag {
  font-size: 15px;
  display: inline-block;
}

.landing-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.landing-job-section-text {
  font-size: 16px;
}

.line-button {
  display: inline-block;
  background-color: #06c755;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 8px;
}

.line-button-section {
  padding: 2rem 0 30px;
  background-color: #F4FBFF;
}

.pricing-cta-section .line-button-link {
  margin: 0;
}

.flow-section + .line-button-section {
  padding: 2rem 0 30px;
  background-color: #F4FBFF;
}

.experience-cta-section {
  background: #f3f8fb;
  padding: 48px 0;
  text-align: center;
}

.experience-cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3973a6;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  padding-left: 24px;
  padding-right: 24px;
}

.experience-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #168aff;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 48px;
  padding: 24px 80px 24px 64px;
  box-shadow: 0 8px 24px rgba(22,138,255,0.18);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  min-width: 340px;
}

.experience-cta-button:hover {
  background: #0f6fd1;
  box-shadow: 0 12px 32px rgba(22,138,255,0.22);
}

.experience-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #168aff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-left: 32px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(22,138,255,0.10);
}

.first-time-price-section {
  background-color: #F4FBFF;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 0;
}

.first-time-price-section + .line-button-section {
  padding-top: 0;
}

.results-footer {
  background: #fff;
  padding: 48px 0 24px 0;
}

.results-footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
}

.results-footer-logo {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  margin-left: 0;
}

.results-footer-logo-right {
  color: #3b9cff;
}

.results-footer-logo-job {
  color: #ffd86a;
}

.results-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
}

.results-footer-link {
  color: #222;
  font-size: 1.15rem;
  text-decoration: none;
}

.results-footer-link.bold {
  font-weight: 600;
}

.results-footer-copyright {
  margin-top: 48px;
  color: #888;
  font-size: 1rem;
  text-align: center;
}

.step-mail-preferences-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  min-height: 100vh;
  box-sizing: border-box;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
}

.step-mail-preferences-page input[type="email"] {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
}

.step-mail-preferences-page input[type="email"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: white;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.radio-option:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.step-mail-preferences-page input[type="radio"] {
  margin-right: 8px;
  appearance: auto;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  width: auto;
  height: auto;
  transform: none;
  accent-color: initial;
  background: initial;
  border: initial;
  border-radius: initial;
}

.radio-option label {
  margin: 0;
  cursor: pointer;
  color: #333;
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #4fb3d9 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(75, 179, 217, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(75, 179, 217, 0.4);
}

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

.flash-message {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.flash-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

.flash-error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #c62828;
}

.flash-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.notice-section {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 248, 220, 0.8);
  border-radius: 10px;
}

.notice-section ul {
  margin: 0;
  padding-left: 20px;
  color: #8a6d3b;
}

.notice-section li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.notice-section li:last-child {
  margin-bottom: 0;
}



@media (max-width: 600px) {
  .step-mail-preferences-page {
    padding: 20px;
    margin: 0;
  }
  
  .container {
    padding: 30px 20px;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 10px;
  }
} 
/*


 */

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
}

div, section, article, header, footer, nav, aside, table {
  max-width: 100%;
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}


