@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&display=swap');


html,
body,
pre {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: @apply text-base;
}

/* ロゴ系 */
.app__logo {
  color: inherit;
  width: auto;
  height: auto;
}

.app__logo__group {
  fill: #F39800;
  transform-origin: center center;
  transform: scale(0.4);
}

/* フォーム系 */
.form {
  display: flex;
  flex-direction: column;
}

.form__row {
  @apply mt-4;
}

/* ログイン画面 */
.landing {
  overflow-y: auto;
}

.landing__content {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
  background-color: #F2F5F7;
  @apply min-h-screen;
}

.landing__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100%;
}

.landing__header {
  margin-bottom: 20px;
}

.landing__header__subtitle {
  margin-bottom: 24px;
  font-size: 1rem;
  @apply font-bold;
}

.landing__header__title {
  width: 260px;
}

.landing__container {
  min-width: 350px;
  padding: 16px 20px 16px 20px;
  margin: 0px auto 80px auto;
  gap: 32px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 1px 2px 8px 0px #0000001F;
}

@media (min-width: 640px) {
  .landing__container {
    width: 528px;
    height: 360px;
    padding: 32px 40px 32px 40px;
    gap: 20px;
    border-radius: 12px;
  }
}

.landing__footer__copyright {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.landing__footer__copyright__text {
  display: inline-block;
  margin-left: 3px;
  @apply text-sm;
}

.landing__right {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2F5F7;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
