@charset "UTF-8";

img {
    max-width:100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.site-title {
    width: 120px;
    line-height: 1px;
    padding: 10px 0;
}

.site-title a {
    display: block;
}

.inner {
    width: 890px;
    margin: 0 auto;
    padding: 0 4%;
    text-align: center;
}

.section-title {
    display: inline-block;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: solid 1px #383e45;
}

@media screen and (max-width:600px) {
    .inner {
        max-width: 100%;
    } 
}

/* ---------------------------
#header
--------------------------- */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header img {
    width:120px;
    max-width: 100%;
}

#header ul {
    display: flex;
}

#header ul li {
    padding:0 20px;
    font-size: 0.9rem;
}

#header ul li a {
    color:black;
}

#header ul li a:hover {
    color:olivedrab;
}


@media screen and (max-width:600px) {
    #header {
        flex-direction: column;
}

#header ul {
    flex-direction: column;
    width: 100%;
}

}

/* ---------------------------
#mainvisual
--------------------------- */
#mainvisual img {
    width: 100%;
    max-width: 1920px;
    height: 600px;
    object-fit: cover;
    margin-bottom: 60px;
}

@media screen and (max-width:600px) {
    #mainvisual img {
        /* height: 100vh; */
        width: 100vw;
    } 
}


/* ---------------------------
#about
--------------------------- */
#about img {
    border-radius: 50%;
    max-width: ;
    width: 100px;
    height: 100px;
}

#about .plofile {
    display: flex;
    width: 700px;
    align-items: center;
    margin: 0 auto 120px;
}

#about .contents {
    padding: 0 20px;
}

#about .name {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 10px;
}

#about p {
    font-size: 0.9rem;
    text-align: left;
}

@media screen and (max-width:600px) {   
#about .plofile {
    flex-direction: column;
    width: 100%;
}

}

/* ---------------------------
#lesson
--------------------------- */

#lesson ul {
    display: flex;
    justify-content: space-between;
}

#lesson li {
    padding: 0 10px;
    margin-bottom: 120px;
}

#lesson .kind {
    max-width: 100%;
}

#lesson .lesson-title {
    font-size: 1rem;
    margin-bottom: 10px;
}

#lesson p {
    font-size: 0.9rem;
}

@media screen and (max-width:600px) {
    #lesson ul {
        flex-direction: column;
    }

    #lesson li {
        margin-bottom: 30px;
    }

    #lesson li:last-child {
        margin-bottom: 120px;
    }

    #lesson .kind {
        width: 100%;
    }
}

/* ---------------------------
#price
--------------------------- */
#price .list {
    align-items: center;
    margin: 0 auto 120px;
    padding: 0 4%;
}

#price dl{
    display: flex;
}

#price dt{
    width: 50%;
    text-align: center;
  }
  
#price dd{
    width: 50%;
    text-align: center;
  }

  @media screen and (max-width:600px) {
    #price dl{
        flex-direction: column;
        text-align: center;
    }
    #price dt{
        width: 100%;
      }
      
    #price dd{
        width: 100%;
        margin-bottom: 30px;
    }
}

/* ---------------------------
#access
--------------------------- */
#access .map {
    position: relative;
    padding-bottom: 40%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

#access .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

#access .info dl{
    display: flex;
    margin: 20px 0 120px;
}

#access .info dt{
    color: dimgray;
    font-weight: bold;
    text-align: left;
    padding: 0 10px;
    width: 30%;
  }
  
#access .info dd{
    text-align: left;
    padding: 0 10px;
    width: 70%;
  }


  

@media screen and (max-width:600px) {
    #access .map {
        max-width:100%;
    }
    #access .info dl{
        flex-direction: column;
    }
    #access .info dt{
        width: 100%;
        text-align: center;
    }
    #access .info dd{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* ---------------------------
#footer
--------------------------- */

footer {
    color: white;
    font-size: 0.7rem;
    background-color: black;
    bottom: 0;
    height: 60px;
    text-align: center;
    line-height: 60px;
}