@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #222;
}

h1 {
  color: #222;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  color: #222;
  margin-bottom: 30px;
  font-size: 1.8em;
  font-weight: 400;
}

h3 {
  color: #222;
  font-size: 1.4em;
  font-weight: 500;
  margin-bottom: 15px;
}

.question {
  font-size: 1.3em;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 400;
}

.start-description {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1em;
  font-weight: 300;
}

.btn {
  background: linear-gradient(45deg, #007acc, rgb(0, 76.25, 127.5));
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 122, 204, 0.3);
}
.btn:disabled {
  background: #bbbbbb;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.result-link {
  display: inline-block;
  background: #007acc;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}
.result-link:hover {
  background: rgb(0, 91.5, 153);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 122, 204, 0.3);
}

.container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
  padding: 40px;
  text-align: center;
}

.result-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin: 20px 0;
  border-left: 4px solid #007acc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.result-title {
  color: #007acc;
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 500;
}

.result-description {
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}
.result-description strong {
  font-size: 1.2em;
}

.recommendation-section {
  margin-top: 40px;
}
.recommendation-section h3 {
  color: #007acc;
  font-size: 1.4em;
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
}

.chart-container {
  position: relative;
  height: 300px;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.score-display {
  background: rgb(178.5, 224.25, 255);
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
}

.score-item {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 1.1em;
  font-weight: 400;
}
.score-item .score-value {
  font-weight: 600;
  color: #007acc;
}

#start-screen .start-description {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1em;
  font-weight: 300;
}

#question-screen .progress {
  width: 100%;
  height: 6px;
  background: rgb(250.75, 250.75, 250.75);
  border-radius: 3px;
  margin: 20px 0;
  overflow: hidden;
}
#question-screen .progress-bar {
  height: 100%;
  background: linear-gradient(45deg, #007acc, rgb(0, 76.25, 127.5));
  transition: width 0.3s ease;
  border-radius: 3px;
}
#question-screen .options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
#question-screen .option {
  width: calc(50% - 6px);
  background: white;
  border: 2px solid rgb(212.5, 212.5, 212.5);
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  font-size: 1.1em;
  line-height: 1.5;
  font-weight: 400;
}
#question-screen .option:hover {
  background: rgb(178.5, 224.25, 255);
  border-color: #007acc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 122, 204, 0.15);
}
#question-screen .option.selected {
  background: #007acc;
  border-color: rgb(0, 91.5, 153);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 122, 204, 0.3);
}

#result-screen .score-display {
  background: rgb(178.5, 224.25, 255);
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
}
#result-screen .chart-container {
  position: relative;
  height: 300px;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}
#result-screen .score-item {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 1.1em;
  font-weight: 400;
}
#result-screen .score-item .score-value {
  font-weight: 600;
  color: #007acc;
}

.screen {
  display: none;
}
.screen.active {
  display: block;
}

@media (max-width: 768px) {
  .container {
    padding: 25px;
    margin: 10px;
  }
  h1 {
    font-size: 2em;
  }
  .question {
    font-size: 1.1em;
  }
  .option {
    font-size: 1em;
    padding: 16px;
  }
  .chart-container {
    height: 250px;
    padding: 15px;
  }
  .btn {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 20px;
  }
  h1 {
    font-size: 1.8em;
  }
  h2 {
    font-size: 1.5em;
  }
  .question {
    font-size: 1em;
  }
  .option {
    font-size: 0.95em;
    padding: 14px;
  }
  .chart-container {
    height: 200px;
  }
}
/*# sourceMappingURL=style.css.map */
