@charset "utf-8";

/* Setup Navi v5.1.0 common style sheet */

/* Desktop向けスタイル(1200px以上) */
body {
    font-family: Meiryo, メイリオ, sans-serif;
    font-weight: 400 !important;
    letter-spacing: 0.1em;
    overflow-x: hidden;
    color: #5a5a5a;
    /* top基準背景色 */
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    margin-top: 60px;
    width: 100vw;
}

main>div.container {
    width: 1200px;
    padding-left: 0;
    padding-right: 0;
}

/* Bootstrap モーダル */
.modal-content{
    background-color: #f5f5f5;
}
/* Bootstrap モーダルタイトル */
.modal-title {
    color: #5a5a5a;
    text-align: start;
}

/* タイトルブロック */
div#pagetitle {
    max-height: 230px;
    margin-bottom: 40px;
}

div#pagetitle h1 {
    font-size: 36px;
}

div#pagetitle h2 {
    font-size: 30px;
}

ul {
    list-style: none;
    /* ブラウザスタイル打ち消し */
    padding-inline-start: 0;
}

/* 汎用青ボタン */
a.commonBtn {
    display: block;
    width: 100%;
    padding: 15px 0;
    color: #fff;
    background-color: #005aba;
    text-align: center;
    font-size: 16px;
    margin: 20px 0;
}

/* 汎用紫ボタン */
a.otherLinkBtn {
    display: block;
    width: 100%;
    padding: 15px 0;
    color: #fff;
    background-color: #AE5DA1;
    text-align: center;
    font-size: 16px;
    margin: 20px 0;
}

/* パンくずリスト */
div.breadcrumb_list ul {
    display: flex;
    gap: 0;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 0;
    /* 追加 */
    flex-wrap: wrap;
}

/* 大なり記号 */
div.breadcrumb_list ul li+li::before {
    /* content: ">"; */
    content: "\03E";
}

/* 中サイズDesktop向けスタイル(1200px未満-992px) */
@media screen and (max-width: 1199px) {

    /* Bootstrap padding追加 */
    main>div.container {
        width: 970px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* 小サイズDesktop/大タブレット向けスタイル(992px未満-768px) */
@media screen and (max-width: 991px) {

    /* widthのみ変更 */
    main>div.container {
        width: 750px;
    }
}

/* 中タブレット/スマホ向けスタイル1(768px未満) */
@media screen and (max-width: 767px) {

    main>div.container {
        width: 100%;
        margin: 0 auto;
    }

    div#pagetitle {
        margin-bottom: 10px;
    }

    div#pagetitle h1 {
        font-size: 24px;
        margin: 10px 0;
        padding: 0px;
    }

    div#pagetitle h2 {
        font-size: 20px;
        margin: 10px 0;
        padding: 0px;
    }

}

/* スマホ向けスタイル2(480px以下) */
@media screen and (max-width: 480px) {}