html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: lightblue;
}

footer.mt-auto {
    margin-top: auto;
}

footer {
    max-width: 100%;
    box-sizing: border-box;
    height: auto;
    position: relative;
    word-wrap: break-word; /* 推奨: 長い単語を折り返す */
    overflow-wrap: break-word; /* モダンなブラウザ用 */
}


.lightblue {
    background-color: lightblue;
}

.site-title {
    font-family: 'Noto Sans JP', sans-serif;
}


.ddl-wrapper {
    display: flex; /* フレックスボックスを使用 */
    align-items: center; /* 中央揃え */
}

.label-font-manual {
    font-weight: bold;
    font-size: 18px;
}

.ddl-label {
    width: 60px; 
}

.ddl-label-2 {
    width: 130px; 
}

.flex {
    display: flex;
}

.flex-direction {
    flex-direction: column;
}

.font-bold {
    font-weight: bold;
}

.font-color-purple {
    color: mediumpurple;
}


/* カスタムCSSファイルに追加 */
.custom-alert-lightgreen {
    background-color: #A4F4A4;
}

.custom-alert-orange {
    background-color: orange;
}


/* コンテナのスタイル */
.container-index {
    display: flex; /* フレックスボックスのレイアウトを使用 */
    flex-wrap: nowrap; /* 折り返しを防ぐ */
    width: 100%; /* 幅を100%に設定 */
    padding-left: 15px; /* 左右のパディングを追加 */
    padding-right: 15px;
    margin-right: auto; /* 中央に揃えるためのマージン */
    margin-left: auto; /* 中央に揃えるためのマージン */
    box-sizing: border-box; /* パディングを含めたサイズ設定 */
}

/* 左側のナビゲーションメニューのスタイル */
.col-md-3-index {
    flex: 0 0 content;
    height: auto; /* 高さは自動に設定 */
}

/* 右側のコンテンツのスタイル */
.col-md-9-index {
    flex: 1; /* 残りのスペースを埋める */
    height: auto; /* 高さは自動に設定 */
}


.privacy-policy > li {
    margin-bottom: 1.5em; /* 行間を空ける */
}



/*
    モバイル向けの設定 
 */
@media (max-width: 767.98px) {
    body {
        margin-bottom: 120px;  /*余白はクリア*/
    }

    footer .container {
        display: flex;
        flex-wrap: wrap;
    }

    footer a {
        white-space: normal;
        flex: 1 1 auto;
        min-width: 100px;
    }
}
