/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-red-500: oklch(63.7% 0.237 25.331);
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-2xl: 42rem;
    --font-weight-bold: 700;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .mx-auto {
    margin-inline: auto;
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }
  .mb-5 {
    margin-bottom: calc(var(--spacing) * 5);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .flex {
    display: flex;
  }
  .h-6 {
    height: calc(var(--spacing) * 6);
  }
  .w-6 {
    width: calc(var(--spacing) * 6);
  }
  .w-64 {
    width: calc(var(--spacing) * 64);
  }
  .w-full {
    width: 100%;
  }
  .max-w-2xl {
    max-width: var(--container-2xl);
  }
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }
  .border-\[\#ffc0cb\] {
    border-color: #ffc0cb;
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .text-center {
    text-align: center;
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .text-\[\#6d554e\] {
    color: #6d554e;
  }
  .text-red-500 {
    color: var(--color-red-500);
  }
  .underline {
    text-decoration-line: underline;
  }
  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .hover\:bg-\[\#ffc0cb\] {
    &:hover {
      @media (hover: hover) {
        background-color: #ffc0cb;
      }
    }
  }
  .hover\:text-white {
    &:hover {
      @media (hover: hover) {
        color: var(--color-white);
      }
    }
  }
  .sm\:flex-row {
    @media (width >= 40rem) {
      flex-direction: row;
    }
  }
  .md\:flex-row {
    @media (width >= 48rem) {
      flex-direction: row;
    }
  }
}
@layer components {
  .font-circle {
    font-family: "M PLUS Rounded 1c", sans-serif;
  }
  h2 {
    font-family: "M PLUS Rounded 1c", sans-serif;
  }
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #6d554e;
    background-color: #e0ffff;
    line-height: 1.6;
    font-weight: 800;
  }
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eae2ff;
    background-image: url("./images/img_cloud.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
  }
  .countdown-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    border-radius: 15px;
    display: inline-block;
  }
  .countdown-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #ff69b4;
    margin: 0 auto 0.5rem;
    text-shadow: 1px 1px 0 #ffffff;
  }
  .countdown {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 10px;
    min-width: 60px;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
    border: 2px solid #ffc0cb;
  }
  @media (min-width: 768px) {
    .countdown__item {
      min-width: 80px;
      padding: 1rem;
      gap: 0.2rem;
    }
  }
  .countdown__number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff69b4;
    line-height: 1;
  }
  @media (min-width: 768px) {
    .countdown__number {
      font-size: 2.5rem;
    }
  }
  .countdown__label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6d554e;
  }
  @media (min-width: 768px) {
    .countdown__label {
      font-size: 0.75rem;
    }
  }
  .footer {
    background-color: #583c32;
    background-image: radial-gradient(#68493e 20%, transparent 20%), radial-gradient(#68493e 20%, transparent 20%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 5px solid #ffc0cb;
  }
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer p, .footer a {
    color: #fff;
  }
  .footer a.link {
    display: block;
    margin: 1em auto;
  }
  .footer .app-explain h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
  }
  @media (min-width: 768px) {
    .footer .app-explain h2 {
      font-size: 1.8rem;
    }
  }
  .footer .app-explain p {
    font-size: 0.8rem;
    margin: 0 auto;
  }
  @media (min-width: 768px) {
    .footer .app-explain p {
      font-size: 1.2rem;
    }
  }
  .footer .site-notice {
    font-size: 0.8rem;
    padding: 0 2rem;
  }
  @media (min-width: 768px) {
    .footer .site-notice {
      font-size: 1rem;
    }
  }
  .footer .app-info {
    margin: 0 auto;
    text-align: center;
  }
  .footer .app-info .app-icon {
    width: 30vw;
    max-width: 100px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
  }
  .footer .app-info .app-badge {
    width: 100%;
    float: none;
    display: flex;
    justify-content: center;
    margin: 1rem auto 3rem;
  }
  @media (min-width: 768px) {
    .footer .app-info .app-badge {
      padding: 0;
      margin: 1rem auto 2rem;
    }
  }
  .footer .app-info .app-badge .appstoreBtn {
    width: 30vw;
    max-width: 150px;
    height: 10vw;
    max-height: 50px;
    background: url("./images/btn_appstore.png") center center no-repeat;
    background-size: 100% auto;
    margin: 0 2vw 0 0;
  }
  @media (min-width: 768px) {
    .footer .app-info .app-badge .appstoreBtn {
      width: 150px;
    }
  }
  .footer .app-info .app-badge .googleplayBtn {
    width: 30vw;
    max-width: 150px;
    height: 10vw;
    max-height: 50px;
    background: url("./images/btn_googleplay.png") center center no-repeat;
    background-size: 100% auto;
    margin: 0 2vw 0 0;
    float: none;
  }
  .footer .app-info .app-badge .amazonBtn {
    width: 30vw;
    max-width: 150px;
    height: 10vw;
    max-height: 50px;
    background: url("./images/btn_amazon.png") center center no-repeat;
    background-size: 100% auto;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer .app-info .app-badge .amazonBtn {
      width: 150px;
    }
  }
  .footer div.site-info {
    width: 100%;
    margin: 0 auto 5rem;
  }
  .footer div.site-info .logo {
    width: 20vw;
    max-width: 70px;
    display: block;
    margin: 0 auto;
  }
  .footer div.site-info .logo img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .footer div.site-info .copy {
    font-size: 0.8rem;
    margin: 1rem auto;
  }
  @media (min-width: 768px) {
    .footer div.site-info .copy {
      font-size: 1rem;
    }
  }
  .footer div.site-info .link {
    font-size: 0.8rem;
  }
  .star {
    position: absolute;
    top: -50px;
    width: 40px;
    height: 40px;
    background-image: url("./images/star.png");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
  }
  @keyframes fall {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    100% {
      transform: translate(-50vw, 100vh) rotate(360deg);
    }
  }
  @keyframes icon-bounce {
    0%, 10%, 20%, 30%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  .animate-icon-bounce {
    animation: icon-bounce 2s infinite;
  }
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
    }
  }
}
