@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

strong {
  color: #fd8c8e;
  font-weight: 600;
}

sup {
  margin-right: 2px;
  font-size: 10px;
}

.hero {
  background: #fd8c8e;
  color: #ffffff;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 23px;
    font-feature-settings: 'palt';
  }
}

.hero .subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .hero .subtitle {
    font-size: 16px;
  }
}

.hero picture {
  margin: 0 0 20px;
  display: block;
}

.hero picture img {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #fd8c8e;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 60px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

.section .container {
  position: relative;
  z-index: 2;
}

.section-white {
  background: #ffffff;
}

.section h2 {
  font-size: 28px;
  color: #fd8c8e;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .section h2 {
    font-size: 21px;
  }
}

.section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.section p.product-note {
  margin-top: -14px;
  font-size: 12px;
  color: #666;
  text-align: right;
}

.problem-section {
  text-align: center;
}

.problem-section .problem-subtitle {
  color: #fd8c8e;
  font-size: 18px;
  font-weight: 600;
}

.problem-points {
  display: grid;
  gap: 20px;
  margin: 40px auto;
  max-width: 480px;
}

@media (max-width: 640px) {
  .problem-points {
    margin: 40px auto;
  }
}

.problem-point {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: left;
}

.problem-point:nth-of-type(2) {
  text-align: right;
}

.problem-point h3 {
  color: #fd8c8e;
  margin-bottom: 15px;
  font-size: 18px;
  margin-top: 10px;
}

.problem-point.problem-dry {
  background: #ffffff url("../img/onayami01.png") no-repeat 90% top;
  background-size: 160px;
  padding-right: 120px;
}

.problem-point.problem-normal {
  background: #ffffff url("../img/onayami02.png") no-repeat 0% top;
  background-size: 210px;
  padding-left: 120px;
}

.problem-point.problem-oily {
  background: #ffffff url("../img/onayami03.png") no-repeat 90% top;
  background-size: 160px;
  padding-right: 120px;
}

@media (max-width: 480px) {
  .problem-point.problem-dry,
  .problem-point.problem-normal,
  .problem-point.problem-oily {
    padding: 14px 24px 10px 20px;
    background-size: 110px;
    background-position: 94% top;
    text-align: left;
  }
  .problem-point.problem-dry h3,
  .problem-point.problem-normal h3,
  .problem-point.problem-oily h3 {
    font-size: 17px;
    font-feature-settings: 'palt';
  }
  .problem-point.problem-dry p,
  .problem-point.problem-normal p,
  .problem-point.problem-oily p {
    font-size: 15px;
  }
  .problem-point.problem-normal {
    background-position: 96% top;
    background-size: 140px;
  }
}

.new-proposal {
  background: #e9ecef;
}

.new-proposal .container {
  position: relative;
}

.new-proposal-description {
  margin-bottom: 30px;
  text-align: center;
}

.skin-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 50px 0;
}

@media (max-width: 768px) {
  .skin-types {
    grid-template-columns: repeat(1, 1fr);
  }
}

.skin-type-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 24px 24px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid;
  text-align: center;
}

.skin-type-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.skin-type-card h3 .type-name {
  font-weight: 700;
}

.skin-type-card p {
  font-size: 15px;
  margin-bottom: 10px;
}

.skin-type-card picture {
  margin: 0;
  padding: 0;
}

.skin-type-card.dry-card {
  border-top-color: #69c;
}

.skin-type-card.dry-card h3 {
  color: #69c;
}

.skin-type-card.sensitive-card {
  border-top-color: #4ba;
}

.skin-type-card.sensitive-card h3 {
  color: #4ba;
}

.skin-type-card.oily-card {
  border-top-color: #da0;
}

.skin-type-card.oily-card h3 {
  color: #da0;
}

.skin-type-card.aging-card {
  border-top-color: #96c;
}

.skin-type-card.aging-card h3 {
  color: #96c;
}

.skin-type-card picture img {
  width: 100%;
}

.diagnosis-section {
  background: #fd8c8e;
  color: #ffffff;
  text-align: center;
}

.diagnosis-intro {
  margin-bottom: 40px;
}

.diagnosis-intro h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .diagnosis-intro h2 {
    font-size: 24px;
  }
}

.quiz-embed {
  background: #ffffff;
  border-radius: 15px;
  padding: 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  color: #333;
}

.quiz-embed .quiz-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.quiz-embed h1 {
  color: #fd8c8e;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .quiz-embed h1 {
    font-size: 24px;
    margin: -10px 0 10px;
  }
}

.product-card .product-price .tax-note {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.question {
  display: none;
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.question.active {
  display: block;
  animation: fadeIn 0.5s;
}

.question-text {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  font-weight: normal;
  color: #333;
}

.question-text span {
  margin-right: 10px;
  color: #fd8c8e;
  font-size: 21px;
  font-family: "Montserrat", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    align-items: center;
  }
}

.btn {
  min-width: 200px;
  padding: 10px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.btn-yes {
  background-color: #fd8c8e;
  color: #ffffff;
}

.btn-no {
  background-color: #a0a0a0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .btn {
    min-width: 250px;
  }
}

.quiz-loading {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 16px;
}

.quiz-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #fd8c8e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.quiz-loading p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.diagnosis-result {
  text-align: center;
  padding: 20px 20px;
}

.diagnosis-result .result-loading {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.diagnosis-result h3 {
  color: #fd8c8e;
  font-size: 21px;
  margin-bottom: 15px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .diagnosis-result h3 {
    font-size: 20px;
  }
}

.diagnosis-result p {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
}

.diagnosis-result .loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #fd8c8e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 30px;
}

.brand-section {
  text-align: center;
}

.brand-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fd8c8e;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .brand-section h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.brand-content {
  padding: 0;
  border-radius: 15px;
  margin: 0 0 30px;
}

@media (max-width: 768px) {
  .brand-content p {
    text-align: left;
  }
}

.brand-image {
  margin: 0 0 30px;
}

.brand-image img {
  width: 100%;
  border-radius: 15px;
}

.products-section {
  margin-top: 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(253, 140, 142, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card:hover .product-badge {
  background: #fd8c8e;
  color: white;
}

.product-card:hover .product-title {
  color: #fd8c8e;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fd8c8e 0%, #9bc53d 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card .product-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 30px;
}

.product-card .product-image img {
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .product-card .product-image {
    height: 180px;
    padding-top: 20px;
  }
  .product-card .product-image img {
    max-width: 160px;
    max-height: 160px;
  }
}

.product-card .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #fd8c8e;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid #fd8c8e;
  z-index: 2;
}

@media (max-width: 768px) {
  .product-card .product-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
}

.product-card .product-info-card {
  padding: 24px;
  text-align: left;
}

@media (max-width: 768px) {
  .product-card .product-info-card {
    padding: 20px;
  }
}

.product-card .product-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.61;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.product-card .product-feature {
  font-size: 14px;
  color: #666;
  line-height: 1.61;
  margin-bottom: 0;
  min-height: 40px;
}

@media (max-width: 768px) {
  .product-card .product-feature {
    font-size: 12.5px;
    font-feature-settings: 'palt';
    margin-bottom: 14px;
    min-height: auto;
  }
}

.product-card .product-price {
  font-size: 22px;
  font-weight: 500;
  font-family: "Montserrat", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #fd8c8e;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-card .product-price .tax-note {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.product-card .product-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

@media (max-width: 768px) {
  .product-card .product-title-wrapper {
    gap: 6px;
  }
}

.product-card .product-title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.61;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.product-card .product-title a {
  color: #333;
  text-decoration: none;
}

.product-card .product-title a:hover {
  color: #fd8c8e;
}

.product-card .medical-badge {
  color: #333;
  border: 1px solid #333;
  padding: 5px 6px;
  line-height: 1;
  font-size: 11px;
  font-weight: 400;
  border-radius: 0;
  white-space: nowrap;
  font-feature-settings: 'palt';
  letter-spacing: 0.02em;
  flex-shrink: 0;
  align-self: flex-start;
}

.fixed-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 238, 0.95);
  z-index: 1000;
  padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(253, 140, 142, 0.2);
  transform: translateY(0);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
}

.fixed-navigation.hidden {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  .fixed-navigation {
    padding: 15px 0;
  }
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 650px;
  margin: 0 auto;
  gap: 15px;
}

@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 10px;
  }
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.nav-left a {
  color: #666;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-left {
    width: 100%;
    justify-content: center;
  }
}

.gift-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  font-size: 24px;
  line-height: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(253, 140, 142, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(253, 140, 142, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(253, 140, 142, 0);
  }
}

.nav-text {
  color: white;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
}

.nav-text span {
  font-size: 11px;
  font-weight: 400;
}

.nav-text span small {
  margin-left: 4px;
  font-size: 6px;
  vertical-align: middle;
}

.nav-text .emphasis {
  color: #fd8c8e;
  font-size: 15px;
  font-weight: 700;
  display: block;
  font-feature-settings: 'palt';
}

@media (max-width: 768px) {
  .nav-text {
    font-size: 13px;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }
}

.nav-btn {
  background: #fd8c8e;
  color: white;
  border: 2px solid #fd8c8e;
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-btn:hover {
  color: #fd8c8e;
  background: white;
  border-color: #fd8c8e;
}

.nav-btn.primary {
  background: rgba(253, 140, 142, 0.1);
  color: #fd8c8e;
  border: none;
  font-weight: 700;
  padding: 8px 16px;
  font-size: 12px;
}

.nav-btn.primary:hover {
  background: #fd8c8e;
}

.nav-btn svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-btn {
    padding: 6px 12px;
    font-size: 11px;
    gap: 4px;
  }
  .nav-btn.primary {
    padding: 2px 20px 4px;
    font-size: 12px;
  }
  .nav-btn svg {
    width: 12px;
    height: 12px;
  }
}

.share-section {
  margin: 20px 0 0;
  padding: 30px;
  background: rgba(253, 140, 142, 0.05);
  border-radius: 15px;
}

@media (max-width: 768px) {
  .share-section {
    margin: 20px -20px 0;
    padding: 30px 10px 10px;
    border-radius: 0;
  }
}

.share-section h3 {
  color: #fd8c8e;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.share-section .campaign-info {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 0;
  box-shadow: 0 6px 24px rgba(253, 140, 142, 0.1);
}

@media (max-width: 768px) {
  .share-section .campaign-info {
    padding: 20px;
  }
}

.share-section .campaign-info-description {
  margin-bottom: 20px;
  font-size: 14.5px;
  text-align: left;
  line-height: 1.61;
}

.share-section picture {
  display: block;
  margin: 0 0 40px;
}

.share-section picture img {
  width: 100%;
  margin: 0 0 4px;
}

.share-section picture span {
  font-size: 12px;
  color: #666;
  text-align: center;
  display: block;
  font-feature-settings: 'palt';
}

.share-section .campaign-flow {
  margin-bottom: 20px;
}

.share-section .campaign-flow h4 {
  color: #fd8c8e;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.share-section .flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.share-section .step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  border-left: 4px solid #fd8c8e;
}

.share-section .step .step-number {
  background: #fd8c8e;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 17px;
  flex-shrink: 0;
}

.share-section .step .step-content {
  flex: 1;
}

.share-section .step .step-content strong {
  color: #fd8c8e;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

.share-section .step .step-content p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.share-section .step .step-content p a {
  color: #fd8c8e;
}

.share-section .step-arrow {
  color: #fd8c8e;
  font-size: 20px;
  font-weight: 700;
}

.share-section .campaign-details,
.share-section .campaign-notes {
  margin-bottom: 30px;
}

.share-section .campaign-details h4,
.share-section .campaign-notes h4 {
  color: #fd8c8e;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.share-section .campaign-details:last-child,
.share-section .campaign-notes:last-child {
  margin-bottom: 0;
}

.share-section .details-list,
.share-section .notes-list {
  color: #fd8c8e;
  background: #f8f9fa;
  padding: 16px 30px;
  border-radius: 0;
  margin: 0;
  list-style-type: disc;
  font-feature-settings: 'palt';
}

.share-section .details-list li,
.share-section .notes-list li {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 14px;
  color: #333;
  text-align: left;
}

.share-section .details-list li:last-child,
.share-section .notes-list li:last-child {
  margin-bottom: 0;
}

.share-section .details-list li strong,
.share-section .notes-list li strong {
  color: #fd8c8e;
}

.share-section .notes-list li {
  color: #666;
  font-size: 13px;
}

.share-section .share-buttons {
  text-align: center;
  justify-content: center;
}

.share-section .share-buttons .share-btn {
  background: #fd8c8e;
  margin: 15px 0;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(253, 140, 142, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  justify-content: center;
}

.share-section .share-buttons .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(253, 140, 142, 0.4);
}

.share-section .share-buttons .share-btn a {
  color: white;
  text-decoration: none;
}

.question-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  padding: 30px;
}

@media (max-width: 768px) {
  .question-card {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: none;
    margin: 0 -20px 0;
    padding: 0;
  }
}

.question-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #fd8c8e;
  text-align: left;
  display: flex;
  align-items: flex-start;
  font-feature-settings: 'palt';
}

@media (max-width: 768px) {
  .question-title {
    font-size: 15.5px;
    margin-bottom: 20px;
  }
}

.question-number {
  display: inline-block;
  background: #fd8c8e;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-right: 12px;
  font-size: 15px;
  flex-shrink: 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .question-number {
    margin-right: 6px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
  }
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fbfbfc;
}

.option:hover {
  border-color: #fd8c8e;
  transform: translateX(3px);
}

.option.selected {
  color: #fd8c8e;
  border-color: #fd8c8e;
  background: white;
}

.option input[type="radio"] {
  display: none;
}

.option input[type="radio"]:checked + label {
  color: #fd8c8e;
  font-weight: 700;
}

.option label {
  cursor: pointer;
  flex: 1;
  line-height: 1.6;
  font-size: 15px;
  text-align: left;
}

@media (max-width: 768px) {
  .option label {
    font-size: 14px;
    font-feature-settings: 'palt';
    letter-spacing: .05em;
  }
}

@media (max-width: 768px) {
  .option {
    padding: 12px;
  }
}

.submit-container {
  text-align: center;
  margin-top: 35px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .submit-container {
    padding: 25px 20px;
    margin-top: 30px;
  }
}

.submit-btn {
  background: #fd8c8e;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 140, 142, 0.3);
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
}

.submit-btn.fade-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

.submit-btn.fade-out {
  animation: fadeOutDown 0.3s ease forwards;
}

.submit-btn:hover:not(:disabled) {
  background: #fd7375;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 140, 142, 0.4);
}

.submit-btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .submit-btn {
    width: 250px;
    padding: 14px 30px;
    font-size: 16px;
  }
}

.error-message {
  background: #e74c3c;
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
  animation: shake 0.5s ease;
}

@media (max-width: 768px) {
  .error-message {
    font-size: 14px;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.progress-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}

.progress-indicator .progress-text {
  font-size: 18px;
  font-weight: 600;
  color: #fd8c8e;
  font-family: "Montserrat", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .progress-indicator .progress-text {
    font-size: 16px;
  }
}

.progress-indicator .progress-bar {
  flex: 1;
  height: 6px;
  background-color: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
}

.progress-indicator .progress-bar .progress-fill {
  height: 100%;
  background: #fd8c8e;
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 14.28%;
}

@media (max-width: 768px) {
  .progress-indicator .progress-bar {
    height: 5px;
  }
}

@media (max-width: 768px) {
  .progress-indicator {
    gap: 15px;
  }
}

.question-card {
  display: none;
  animation: fadeInUp 0.5s ease forwards;
}

.question-card.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .navigation-buttons {
    flex-direction: column;
    padding: 10px 20px;
    margin-top: 20px;
    gap: 12px;
  }
}

.nav-btn {
  background: white;
  color: #fd8c8e;
  border: 2px solid #fd8c8e;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #fd8c8e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn.prev-btn {
  background: white;
}

.nav-btn.prev-btn:hover {
  background: white;
  color: #fd8c8e;
}

@media (max-width: 768px) {
  .nav-btn.prev-btn {
    order: 2;
  }
}

@media (max-width: 768px) {
  .nav-btn.submit-btn {
    order: 1;
  }
}

@media (max-width: 768px) {
  .nav-btn {
    width: 250px;
    padding: 12px 30px;
    font-size: 15px;
  }
}

/*# sourceMappingURL=index.map */