@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Noto+Sans+JP:wght@300;400;500;600&display=swap");
/* ========================================
           CSS Reset & Base
           ======================================== */
:root {
  --bg-color: #f5f5f5;
  --text-main: #000;
  --text-muted: #6b7280;
  --color-white: #fff;
  --color-gray-200: #E5E7EB;
}

.teequiz-app-container {
  /* ========================================
         Layout & Containers
         ======================================== */
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.teequiz-app-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000;
}
.teequiz-app-container button:focus {
  outline: none;
}
.teequiz-app-container .logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.teequiz-app-container .main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.teequiz-app-container .screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.teequiz-app-container .hidden {
  display: none !important;
}
.teequiz-app-container {
  /* ========================================
         Animations
         ======================================== */
}
.teequiz-app-container .fade-in {
  -webkit-animation: fadeIn 0.4s ease-in forwards;
          animation: fadeIn 0.4s ease-in forwards;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.teequiz-app-container {
  /* ========================================
         Start Screen
         ======================================== */
}
.teequiz-app-container .screen-start {
  z-index: 10;
  background-color: var(--color-white);
  padding: 32px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.teequiz-app-container .start-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  background-color: #b8b8b8;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  aspect-ratio: 400/600;
  overflow: hidden;
  position: relative;
  /* ← 追記: 絶対配置の基準点にする */
}
.teequiz-app-container .start-image-area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.teequiz-app-container .start-image-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
  height: 40%;
  top: 60%;
}
.teequiz-app-container .start-image-area-img {
  width: 100%;
  /* ← 追記 */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /* ← 追記: 画像を中央でトリミング */
}
.teequiz-app-container .start-text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 17.85%;
  position: absolute;
  z-index: 1;
  /* ← 追記: 画像の手前に配置 */
}
.teequiz-app-container .start-image-area-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.teequiz-app-container .start-text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 5.85%;
  position: absolute;
}
.teequiz-app-container .start-title {
  font-family: "kleinWeb75", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.251);
}
.teequiz-app-container .start-sub-text {
  font-size: 15px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
  text-shadow: 1px 1px 10px rgb(0, 0, 0);
}
.teequiz-app-container .start-sub-text-bottom {
  margin-bottom: 12px;
}
.teequiz-app-container .start-cta-text {
  font-size: 16px;
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
.teequiz-app-container .gender-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.teequiz-app-container .gender-btn {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  text-decoration: underline;
  text-underline-offset: 0px;
}
.teequiz-app-container .gender-btn:hover {
  text-decoration: none;
}
.teequiz-app-container {
  /* ========================================
         Question Screen
         ======================================== */
}
.teequiz-app-container .screen-question {
  padding: 32px 24px;
  width: 100%;
  margin: 0 auto;
  max-width: 650px;
}
.teequiz-app-container .question-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.teequiz-app-container .question-image-area {
  display: none;
}
.teequiz-app-container .question-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.teequiz-app-container .progress-section {
  margin-bottom: 48px;
}
.teequiz-app-container .step-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.teequiz-app-container .progress-bar-track {
  width: 100%;
  background-color: var(--color-gray-200);
  height: 4px;
}
.teequiz-app-container .progress-bar-fill {
  background-color: var(--text-main);
  height: 100%;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.teequiz-app-container .question-options-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.teequiz-app-container .question-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.625;
  text-align: center;
}
.teequiz-app-container .q-number {
  display: block;
  font-family: "kleinWeb75", sans-serif;
  margin-bottom: 1em;
}
.teequiz-app-container .options-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.teequiz-app-container .ck-button {
  background: var(--color-white);
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 100;
  text-align: center;
  padding: 16px 20px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.teequiz-app-container .ck-button:hover {
  background: #000;
  color: #fff;
}
.teequiz-app-container .question-back-area {
  margin-top: 32px;
}
.teequiz-app-container .back-btn {
  font-family: "kleinWeb65";
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.teequiz-app-container .back-btn:hover {
  color: var(--text-main);
}
.teequiz-app-container {
  /* ========================================
         Loading Screen
         ======================================== */
}
.teequiz-app-container .screen-loading {
  z-index: 20;
  background-color: var(--color-white);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50vh;
  width: 100%;
}
.teequiz-app-container .loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 24px;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.teequiz-app-container .loading-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.teequiz-app-container {
  /* ========================================
         Result Screen
         ======================================== */
}
.teequiz-app-container .screen-result {
  padding: 32px 24px;
}
.teequiz-app-container .result-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.625;
  margin-bottom: 24px;
}
.teequiz-app-container h2.result-title {
  margin-top: 0;
}
.teequiz-app-container .result-top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.teequiz-app-container .result-main-image-area {
  width: 100%;
  aspect-ratio: 585/840;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.teequiz-app-container .result-image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teequiz-app-container .result-desc {
  font-size: 14px;
  color: #000;
  line-height: 1.625;
  margin-bottom: 32px;
  font-weight: 100;
}
.teequiz-app-container .result-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.teequiz-app-container .result-product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.teequiz-app-container .product-img-wrapper {
  width: 100%;
  aspect-ratio: 215/286.66;
  margin-bottom: 8px;
  overflow: hidden;
}
.teequiz-app-container .product-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teequiz-app-container .product-name {
  font-size: 12px;
  color: #000;
  line-height: 1.375;
  margin-bottom: 12px;
  font-weight: 100;
}
.teequiz-app-container .product-price {
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
.teequiz-app-container .price_num {
  font-size: 15px;
  font-family: "kleinWeb57";
}
.teequiz-app-container .result-bottom-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.teequiz-app-container .result-extra-msg {
  font-size: 12px;
  color: #000;
  line-height: 2;
  margin-bottom: 32px;
  text-align: center;
}
.teequiz-app-container .result-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.teequiz-app-container .link-button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto;
}
.teequiz-app-container .link-button:hover {
  text-decoration: none;
}
.teequiz-app-container .result-back-area {
  margin-bottom: 16px;
}
.teequiz-app-container {
  /* ========================================
         PC/SP 改行出し分け
         ======================================== */
}
.teequiz-app-container .br-pc {
  display: none;
}
.teequiz-app-container .br-sp {
  display: inline;
}
.teequiz-app-container {
  /* ========================================
         Media Queries
         ======================================== */
  /* SP (Mobile) styles specifically targeting screen widths below PC breakpoint */
}
@media (max-width: 784px) {
  .teequiz-app-container .question-inner {
    position: relative;
    overflow: hidden;
  }
  .teequiz-app-container .question-image-area {
    display: none;
  }
  .teequiz-app-container .question-image-area img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .teequiz-app-container .question-image-area::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  .teequiz-app-container .question-content-area {
    position: relative;
    z-index: 2;
  }
  .teequiz-app-container .step-text {
    color: var(--color-white);
  }
  .teequiz-app-container .step-text span {
    font-family: "kleinWeb65";
    letter-spacing: 1.3px;
  }
  .teequiz-app-container .progress-bar-track {
    background-color: #E5E7EB;
  }
  .teequiz-app-container .result-extra-msg {
    text-align: left;
  }
  .teequiz-app-container .link-button {
    margin: 0;
  }
}
.teequiz-app-container {
  /* PC Layout (785px and above) */
}
@media (min-width: 785px) {
  .teequiz-app-container .teequiz-app-container {
    max-width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .teequiz-app-container {
    /* Start Screen PC */
  }
  .teequiz-app-container .screen-start {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .teequiz-app-container .start-inner {
    width: 88.88%;
    max-width: 1440px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: transparent;
    padding: 32px 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    aspect-ratio: initial;
  }
  .teequiz-app-container .start-image-area {
    position: relative;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 49.609%;
    background-color: #b8b8b8;
  }
  .teequiz-app-container .start-image-area::after {
    display: none;
  }
  .teequiz-app-container .start-image-area-img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .teequiz-app-container .start-text-area {
    width: 50%;
    background-color: var(--color-white);
    padding: 60px 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  .teequiz-app-container .start-title {
    font-size: 58px;
    margin-bottom: 24px;
    color: var(--text-main);
    text-shadow: initial;
  }
  .teequiz-app-container .start-sub-text,
  .teequiz-app-container .start-cta-text {
    color: var(--text-main);
    font-size: 17px;
    text-shadow: initial;
  }
  .teequiz-app-container .start-cta-text {
    font-size: 20px;
  }
  .teequiz-app-container .start-sub-text-bottom {
    margin-bottom: 24px;
  }
  .teequiz-app-container .gender-btn {
    color: var(--text-main);
    font-size: 22px;
  }
  .teequiz-app-container {
    /* Question Screen PC */
  }
  .teequiz-app-container .screen-question {
    width: 81.94%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 0;
  }
  .teequiz-app-container .question-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .teequiz-app-container .question-image-area {
    display: block;
    width: 49.57%;
    aspect-ratio: 585/532;
    -ms-flex-item-align: start;
        align-self: start;
    overflow: hidden;
    background-color: #b8b8b8;
  }
  .teequiz-app-container .question-image-area img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .teequiz-app-container .question-content-area {
    width: 50%;
    padding: 0 42px;
  }
  .teequiz-app-container .q-number {
    color: #000;
  }
  .teequiz-app-container .question-options-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .teequiz-app-container .question-text {
    text-align: center;
    margin-bottom: 64px;
  }
  .teequiz-app-container .options-container {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
  .teequiz-app-container .ck-button {
    text-align: center;
  }
  .teequiz-app-container .question-back-area {
    padding: 16px 0;
    margin-top: auto;
  }
  .teequiz-app-container {
    /* Result Screen PC */
  }
  .teequiz-app-container .screen-result {
    width: 88.88%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .teequiz-app-container .result-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .teequiz-app-container .result-top-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .teequiz-app-container .result-main-image-area {
    width: 45.7%;
    margin-bottom: 0;
  }
  .teequiz-app-container .result-details-area {
    width: 45.7%;
    padding: 0 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .teequiz-app-container .result-desc {
    line-height: 2;
  }
  .teequiz-app-container .result-products-grid {
    width: 86.4%;
    margin: 0 auto 32px auto;
  }
  .teequiz-app-container .result-bottom-section {
    max-width: 700px;
    margin: 48px auto 0 auto;
    width: 100%;
  }
  .teequiz-app-container .result-back-area {
    padding: 16px 0;
    text-align: left;
  }
  .teequiz-app-container {
    /* PC/SP 改行出し分け */
  }
  .teequiz-app-container .br-pc {
    display: inline;
  }
  .teequiz-app-container .br-sp {
    display: none;
  }
}
@media (max-width: 400px) {
  .teequiz-app-container button.ck-button[data-answer=シルエットや小物でトレンド感を楽しむスタイル] {
    letter-spacing: -1px;
  }
}/*# sourceMappingURL=teequiz.css.map */