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

.CourseContentList a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    content: '';        
    width: 100%;        
    height: 2px;        
    background: #1784cc;
    visibility: hidden;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .8s;
}
a:hover::after {
    visibility: visible;
    transform: scale(1, 1);
}

a:hover {
    color: #1784cc;
}

h2 {
    position: relative;
    text-align: center;
    font-size: 40px;
}

#basis:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #ff5f02;
}

#application:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #002cf0;
}
#practice:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #00aa0e;
}

.line{
    display: flex;
    justify-content: center;
}

hr{
    width: 70%;
    height: 6.5px;
    margin-left: -2px;
    margin-right: -2px;
    margin-top: 13.5px;
    border: 0px;
    background-color: black;
}
.Lanleft,.Lanright{
    height: 30px;
    
}

/*------ヘッダー------*/
#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;
}

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

#TitleImage{
    width: 100%;
}

#TitleImageShort{
    display: none;
}

#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;
}

.CourseTitleIcon{
    height: 50px;
    vertical-align: bottom;
}

.CourseContentsBlock{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.CourseContent{
    width: 350px;
    border: 5px solid #005276;
    margin: 30px;
    padding: 15px;
    background-color: white;
    box-shadow: 10px 10px #00000063;
    transition: all 0.3s ease;
}

.CourseContentTitle{
    font-size: 25px;
    font-weight: bold;
    color: #0362a1;
}


.Preparation{
    display: grid;
    width: 400px;
    height: 150px;
    border: 2px solid red;
    text-align: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: bold;
    color: red;
}

/*------フッター------*/
#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;
}

@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: 55px;
        position: relative;
    }
    #TitleImage{
        display: none;
    }
    #TitleImageShort{
        display: block;
        width: 100%;
    }
}