@import 'variables.css';


html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    scroll-behavior: auto !important; /*bootstrap5のstyleでsmoothが規定されているのでキャンセル*/
}

@media (max-width: 576px) {
    html, body {
        min-height: 100dvh;
    }
}

body {
    font-family: 'Arial', 'Roboto', -apple-system, BlinkMacSystemFont, 'Noto Sans JP', sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    background-color: #fff;
    color: #000;
}

main {
    padding-top: 60px;
}

div dialog a { outline: none }

button {
    background: none;
    border: none;
    margin: 0;
    display: flex; 
    flex-direction: row;
}

/* ボタン選択時のアウトラインを非表示にする */
button,
a,
input[type="button"],
input[type="submit"],
textarea,
select {
    outline: none; /* アウトラインを非表示にする */
    border: none;  /* 必要に応じてボーダーも非表示にする */
}

button:focus,
a:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
textarea:focus,
select:focus {
    outline: none; /* フォーカス時にもアウトラインを非表示にする */
}

h1 {
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 576px; /* bodyと同じ幅に設定 */
    background-color: #fff; /* 背景色（任意） */
    padding: 0px;
    height: 100vh;
    position: relative;
}

.breadcrumb {
    padding: 0;
    font-size: 13px;
    color: #bbb;
    background-color: #fff;
}

.breadcrumb a {
    color: #bbb;
    text-decoration: none
}

.caption {
    font-size: 14px;
    color: #aaa;
    padding: 0px 10px;
    display: block;
    margin-top: -10px;
}

.skeleton {
    background-color: #eee;
    border-radius: 4px;
    min-height: 1em;
    animation: shimmer 1.5s infinite linear;
    background: linear-gradient(
        to right,
        #eeeeee 0%,
        #dddddd 20%,
        #eeeeee 40%,
        #eeeeee 100%
    );
    background-size: 1000px 100%;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



