/* base.html */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    background: linear-gradient(
        to bottom, 
        var(--bg-1) 0%, 
        var(--bg-2) 30%, 
        var(--bg-3) 100%
    );
    color: var(--text);
}

.header {
    height: 56px; 
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; 
}

.main {
    display: flex;
    flex-direction: column;
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 20px;
    padding-right: 20px;
    /* min-height: calc(100dvh - 56px - 56px); */
    flex: 1;
}

.footer {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  /* overflow-y: hidden; */
}

h1 {
    text-align: center;
    margin-top: 3rem;
}

/* レスポンシブ */

/* @media (min-width: 768px) {
    .wrapper {
        max-width: 480px;
        margin: auto;
    }

    .title_set {
        top: 10%;
        left: 10%;
        text-align: center;
    }

    .kajimaru_mikan_position {
        height: 280px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

} */

/* PC用メッセージは最初は非表示 */
.pc-message {
  display: none;
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: var(--text);
}

/* スマホではアプリ本体を表示 */
@media screen and (max-width: 768px) {
    .wrapper {
      display: flex;
    }
    .pc-message {
      display: none;
    }
}

/* PCではメッセージだけ表示 */
@media screen and (min-width: 769px) {
    .wrapper {
      display: none;
    }
    .pc-message {
      display: flex;
      min-height: 100vh;
      align-items: center;
      justify-content: center;
    }
}
