/*------共通部品------*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
a {
    color: #000dc5;
    text-decoration: none;
}

a:hover {
    color: #1784cc;
}

h2 {
    text-align: center;
    font-size: 35px;
    margin-top: 0px;
    margin-bottom: 10px;
}

/*------ヘッダー------*/
#top-menu {
    background-color: #242F3E;
    display: flex;
    flex-flow: column;
    position: sticky;
    top: 0;
    z-index: 10;
}

/*------コンテンツ------*/
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    padding-left: 0px;
    background-color: #fff;
}

#TopContents{
    flex-wrap: wrap;
    display: flex;
}

#TopMain{
    min-width: -webkit-fill-available;
    min-width: -moz-available;
}

#TopLink {
    background-color: #005276;
}

#TopLinkLine {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    margin: 10px auto;
}

.LinkBox {
    width: 200px;
    margin: 6px;
    padding: 10px;
    border: 2px solid #d5dbdb;
    text-align: center;
}

.LinkBoxTitle {
    font-weight: bold;
    font-size: 17px;
}

.LinkBox>a {
    color: #fff;
}

#BluePrintArticle {
    margin: 30px auto;
    width: 100%;
}

#Service {
    padding-top: 5px;
    padding-bottom: 30px;
    background-color: #fbf8f8;
}

#ServiceLine {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ServiceBlock {
    width: 280px;
    height: 250px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding: 10px;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    max-width: 280px;
}

.ServiceBlock>ul {
    overflow: auto;
    overflow-x: hidden;
    margin-top: 2px;
    height: 90%;
}

#Notes {
    margin-top: 10px;
    text-align: center;
    padding: 10px;
}

#HowToUse {
    padding-top: 5px;
    padding-bottom: 30px;
}

#HowToUseLine {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    margin: 10px auto;
    text-align: center;
}

.HowToUseLineBox {
    padding: 20px;
    background-color: #232f3e;
    margin: 5px 30px;
    width: 150px;
    height: 150px;
}

.HowToUseIcon {
    width: 100px;
    padding-left: auto;
    padding-right: auto;
}

.HowToUseLineBox>a {
    color: #fff;
}

/*------公開記事スライダー------*/
.slick-list {
    height: 440px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 6px solid #666;
    border-right: 6px solid #666;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
    padding: 0px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 15px;
    display: block;
    border-radius: 50%;
    background: #ccc;
}

.slick-dots .slick-active button {
    background: #333;
}

.photo {
    min-height: 150px;
    background-position: center;
    background-size: cover;
}

.slider {
    width: 94%;
    margin: 0 auto;
    height: fit-content;
    padding: 20px;
}

.slider img {
    width: 100%;
    height: 50%;
}

.slider .slick-slide {
    margin: 0 10px;
}


/*------フッター------*/
#FooterMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.FooterMenuList {
    width: 200px;
    text-align: left;
}

.FooterMenuList>a {
    color: #fff;
    font-size: 17px;
}

.FooterMenuSubList {
    list-style: none;
    padding-left: 4px;
    margin-top: 10px;
}

.FooterMenuSubList a {
    color: #fff;
}

#CopyRight {
    text-align: right;
}

.footerFixed {
    margin: 0px;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
}

footer {
    bottom: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    background: #242F3E;
    color: #fff;
}

/*------1023px------*/
@media screen and (max-width:1023px) {
    #pageTitle>h1 {
        font-size: 20px;
    }

    .ServiceBlock>ul>li {
        padding-bottom: 4px;
    }

    #nav li a {
        display: none;
    }

    #top-menu {
        position: fixed;
        right: 10px;
        z-index: 100;
    }
    #TopContents {
        top: 50px;
        position: relative;
      }
}

/*------800px------*/
@media screen and (max-width:800px) {
    .ServiceBlock {
        width: 100%;
        margin-right: 20px;
    }
}

/*------500px------*/
@media screen and (max-width:500px) {
    .LinkBox {
        width: 100%;
    }
}