@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #676A76;
    background: #f9f9f9;
}

a {
    color: #ff92ae;
}

.font-english {
    font-family: 'Varela Round', sans-serif;
}

.flex-box-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
}

.font-bold {
    font-weight: bold;
}

.font-pink {
    color: #ff92ae;
}

.bg-white {
    background: #fff;
}

.section {
    padding: 100px 80px;
}

.section.last {
    padding-bottom: 160px;
}

.section-title {
    padding-bottom: 60px;
    font-size: 30px;
    text-align: center;
    color: #ff92ae;
}

.border-area {
    border: 5px solid #faacb9;
}

.small-title {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #ff92ae;
}

.sp {
    display: none;
}

.link-image {
    height: 12px;
    margin: 0 2px;
}

@media screen and (max-width:750px) {
    body {
        font-size: 15px;
        line-height: 28px;
    }
    
    .font-small {
        font-size: 13px;
    }
    
    .section {
        width: 80%;
        margin: 0 auto;
        padding: 60px 10%;
    }
    
    .section.last {
        padding-bottom: 120px;
    }
    
    .sp {
        display: inherit;
    }
}

/**
* 固定部分
*/
.border-top,
.border-right,
.border-left,
.border-bottom,
.sp-border-top {
    position: fixed;
    display: block;
    background: #faacb9;
    z-index: 10;
}

.border-top,
.border-bottom,
.sp-border-top {
    width: 100%;
    height: 60px;
}

.border-left,
.border-right {
    width: 60px;
    height: 100%;
}

.border-top {
    top: 0;
    left: 0;
}

.border-left {
    top: 0;
    left: 0;
}

.border-right {
    top: 0;
    right: 0;
}

.border-bottom {
    bottom: 0;
    left: 0;
}

.sp-border-top {
    display: none;
}

.fixed-image {
    position: fixed;
    bottom: 50px;
    right: 70px;
    width: 15%;
    z-index: 10;
}

/**
* 固定部分 SP
*/
@media screen and (max-width:750px) {
    .border-top,
    .border-bottom {
        height: 10px;
    }

    .border-left,
    .border-right {
        width: 10px;
    }
    
    .sp-border-top {
        display: block;
        height: 10px;
    }
    
    .fixed-image {
        bottom: 15px;
        right: 15px;
        width: 20%;
    }
}

/**
* header
*/
.nav {
    width: 600px;
    height: 60px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.nav-list {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    font-weight: bold;
}

.nav-list a {
    display: block;
    padding: 0 19px;
    color: #fff;
    text-decoration: none;
}

.nav-list a:hover {
    color: #676A76;
}

.nav-list-logo img {
    width: 180px;
    vertical-align: middle;
}

.menu-trigger {
    display: none;
}

@media screen and (max-width:750px) {
    .nav {
        position: fixed;
        display: none;
        z-index: 5;
        width: 100%;
        height: 100vh;
        padding-top: 30%;
        background: rgba(255, 255, 255, 0.8);
    }
    
    .nav-list {
        width: 35%;
        margin: 0 auto;
        font-size: 18px;
        border-bottom: 1px solid #faacb9;
    }
    
    .nav-list:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        text-align: center;
        color: #ff92ae;
    }

    .nav-list.sns {
        margin-top: 20px;
        text-align: center;
    }

    .nav-list.sns a {
        padding: 0;
    }

    .nav-list.sns img {
        width: 40px;
    }
    
    .nav-list-logo {
        display: none;
    }
    
    /* メニューの開閉ボタン */
    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    .menu-trigger {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10;
        width: 39px;
        height: 36px;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #faacb9;
        border-radius: 4px;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 16px;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    
    /* activeクラスがついた時の動き */
    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(16px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-16px) rotate(45deg);
    }
}

/**
* first-view
*/
.first-view {
    width: 100%;
    height: 100vh;
    background: url("../images/main.jpg");
    background-size: cover;
    background-position: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
}

.first-view__logo img {
    width: 200px;
}

/**
* about
*/
.about-area {
    width: 600px;
    margin: 0 auto;
}

.about__instructor {
    margin-top: 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.about__instructor img {
    width: 220px;
    margin-right: 30px;
}

.about__instructor-description__title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.about__instructor-description__title span {
    font-size: 14px;
    font-weight: normal;
}

.about__instructor-description__policy {
    margin-top: 20px;
}

.about__instructor-description__policy .font-bold {
    margin-bottom: 10px;
}

.about__blog {
    margin-top: 60px;
}

.about__blog__text {
    margin-bottom: 20px;
}

.about__blog-link {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
}

/**
* about sp
*/
@media screen and (max-width:750px) {
    .about-area {
        width: 100%
    }
    
    .about__instructor {
        display: block;
        width: 260px;
        margin: 0 auto;
        margin-top: 40px;
    }
    
    .about__instructor img {
        width: 250px;
    }
    
    .about__instructor-description {
        margin-top: 5px;
    }
}

/**
* lesson
*/
.lesson__description {
    width: 600px;
    margin: 0 auto;
}

.lesson__division {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 60px;
}

.lesson__division-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #faacb9;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.lesson__course {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.lesson__course.second {
    -webkit-justify-content: center;
    justify-content: center;
}

.lesson__course-section {
    width: 30%;
    padding: 30px;
    margin-top: 20px;
    margin-right: 3%;
    background: #fff;
}

.lesson__course-section:last-child {
    margin-right: 0;
}

.lesson__course-section__title {
    padding-bottom: 10px;
    text-align: center;
    font-size: 20px;
    border-bottom: 1px solid #faacb9;
}

.lesson__course-section__fee {
    padding-top: 10px;
    text-align: center;
}

.lesson__course-section__target {
    padding: 10px 0 20px 0;
}

.lesson__course-section__target.second {
    padding-bottom: 0;
}

/**
* lesson sp
*/
@media screen and (max-width:750px) {
    .lesson__description {
        width: 100%;
    }
    
    .lesson__course {
        display: block;
        width: 100%;
    }
    
    .lesson__course-section {
        width: 77.5%;
        padding: 10%;
        margin-top: 40px;
        background: #fff;
    }
    
    .lesson__course-section:first-child {
        margin-top: 20px;
    }
}

/**
* location
*/
.location {
    width: 600px;
    margin: 0 auto;
}

.location__description {
    margin-bottom: 60px;
}

.location__room {
    display: -webkit-flex;
    display: flex;
}

.location__room-description {
    margin-right: 30px;
}

/**
* location sp
*/
@media screen and (max-width:750px) {
    .location {
        width: 80%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .location__description {
        margin-bottom: 40px;
    }
    
    .location__room {
        display: block;
        width: 260px;
        margin: 0 auto;
        position: relative;
    }
    
    .location__room-description {
        padding-top: 275px;
    }
    
    .location__room-image {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/**
* contact
*/
.contact__info {
    display: inline-block;
    padding: 50px;
    margin-top: 40px;
    background: #fff;
}

.contact__info-email {
    margin-bottom: 30px;
}

.contact__info-email a {
    font-size: 16px;
}

.contact__info-email img {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

/**
* contact sp
*/
@media screen and (max-width:750px) {
    .contact__info {
        padding: 10%;
    }
}