@charset "UTF-8";

html{
    font-size: 100%;
}
body{
    color: #343A40;
    font-family:     "Noto Sans JP", "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic","Meiryo",sans-serif;
	overflow: hidden;
	height: 100%;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
li{
    list-style: none;
}
a{
    color: #707070;
    text-decoration: none;
}
a:hover{
    opacity: 0.7;
}
.wrapper{
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}

/*--------------------------------
header
--------------------------------*/
#header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    padding-bottom: 10px;
}
#header .logo a{
    display: block;
}
#header .logo{
    max-width: 285px;
    line-height: 0;
}
.navi{
    display: flex;
    text-align: center;
}
.navi li{
    padding-left: 40px;
    font-weight: bold;
    font-size: 0.87rem;
}

/*--------------------------------
mainvisual
--------------------------------*/
.mainvisual{
    margin-bottom: 50px;
}
/*--------------------------------
introduction
--------------------------------*/
.introduction {
  margin-bottom: 80px;
  text-align: center;
}
.catchphrase{
    font-size: 1.5rem;
    font-weight: bold;
    color: #1466BF;
    margin-bottom: 20px;
}
.introduction .text{
     font-size: 0.87rem;
     text-align: left;
     line-height: 2;
     text-align: center;
}
.section-title{
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}
/*--------------------------------
about
--------------------------------*/
#about{
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
#about .img{
    width: 50%;
}
#about .detail{
    width: 50%;
    padding-left: 30px;
}
#about .detail p{
    font-size: 0.87rem;
    text-align: left;
     line-height: 2;
}
/*--------------------------------
examination
--------------------------------*/
#examination{
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
#examination .img{
    width: 50%;
}
#examination .detail{
    width: 50%;
    padding-left: 30px;
}
#examination .detail p{
    font-size: 0.87rem;
    text-align: left;
     line-height: 2;
}
/*--------------------------------
features
--------------------------------*/
#features{
    margin-bottom: 80px;
}
#features .features-list{
    display: flex;
    flex-wrap: wrap;
}
#features .features-list li img{
    margin-bottom: 10px;
}
#features .features-list li{
    width: 23.5%;
    margin: 0 2% 2% 0;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}
#features .features-list li:nth-child(4n){
 margin-right: 0;
}
/*--------------------------------
lineup
--------------------------------*/
#lineup{
    background: #E8F3FF;
    padding-top: 50px;
    padding-bottom: 80px;
    height: auto;
}
#lineup .lineup-list{
    display: flex;
    flex-wrap: wrap;
}
#lineup .lineup-list li{
    width: 23.5%;
    margin: 0 2% 2% 0;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}
#lineup .lineup-list li:nth-child(4n){
    margin-right: 0;
}
#lineup .lineup-list li img{
    margin-bottom: 10px;
}
/*--------------------------------
mobile
--------------------------------*/
@media screen and (max-width: 767px) {
    
    .wrapper {
        padding: 0 40px;
    }

    /*--------------------------------
    header
    --------------------------------*/
    #header {
        display: block;
        padding-top: 20px;
    }
    
    #header .logo {
        max-width: 250px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .navi {
        display: block;
        padding-bottom: 20px;
    }
    
    .navi li {
        padding-left: 0;
        margin-bottom: 5px;
        font-size: 1rem;
    }

    /*--------------------------------
    mainvisual
    --------------------------------*/
    .mainvisual {
        margin-bottom: 30px;
    }

    /*--------------------------------
    introduction
    --------------------------------*/
    .introduction {
        margin-bottom: 50px;
    }
    
    .catchphrase {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    /*--------------------------------
    about & examination
    --------------------------------*/
    #about,
    #examination {
        display: block;
        margin-bottom: 50px;
    }

    #about .img,
    #examination .img {
        width: 100%;
        margin-bottom: 20px;
    }

    #about .detail,
    #examination .detail {
        width: 100%;
        padding-left: 0;
    }

    /*--------------------------------
    features & lineup
    --------------------------------*/
    #features {
        margin-bottom: 50px;
    }
    
    #features .features-list,
    #lineup .lineup-list {
        justify-content: space-between;
    }
    
    #features .features-list li,
    #lineup .lineup-list li {
        width: 48%;
        margin: 0 0 20px 0;
    }
    
    #features .features-list li:nth-child(4n),
    #lineup .lineup-list li:nth-child(4n) {
        margin-right: 0;
    }
    
    #features .features-list li:nth-child(2n),
    #lineup .lineup-list li:nth-child(2n) {
        margin-right: 0;
    }
    
    #features .features-list li:nth-child(odd),
    #lineup .lineup-list li:nth-child(odd) {
        margin-right: 4%;
    }

    /*--------------------------------
    lineup
    --------------------------------*/
    #lineup {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}