body {
    font-size: 16px;
}

.inner {
    width: 1080px;
    margin: 0 auto;
    padding: 80px 0;
}

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

.text-primary {
    color: #d0111c !important;
}

/**
 メイン
 */
header {
    position: relative;
}

.logo {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 99999;
}

@media screen and (max-width: 768px) {
    .logo {
        top: 20px;
        left: 20px;
    }
}

.lp-lang {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    text-align: center;
}

.language-list {
    display: inline-block;
    width: auto;
    list-style: none;
    padding-left: 0;
}

.language-list a {
    color: #fff;
    font-weight: bold;
}

.language-list::after {
    display: block;
    content: "";
    clear: both;
}

.language-list li {
    float: left;
    margin:0 10px;
}


.lp-catch {
    width: 100%;
    height: 100vh;
    background-image: url('../../../images/school/lp/slide4.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .lp-catch {
        background-image: url('../../../images/school/lp/slide4_sp.jpg');
    }
}

.lp-catch .layer-dark {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.35);
}

.lp-catch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-image: url(../images/top-imgs/bg.png);
    background-position: 50%;
    z-index: 200;
}

.lp-catch h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    color: #d0111c;;
    padding-top: calc(50vh - 140px);
}

.lp-catch span {
    display: inline-block;
    margin-top: 24px;
    padding: 8px;
    background: #fff;
}

@media screen and (max-width: 768px) {
    .lp-catch h1 {
        font-size: 24px;
    }

    .lp-catch span {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}


.lp-catch p {
    margin-top: 40px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .lp-catch p {
        font-size: 16px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/**
 カード
 */
.lp-cards::after {
    display: block;
    content: "";
    clear: both;
}

.lp-card {
    width: calc(25% - 6px);
    float: left;
    background-color: #fff;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.lp-card:nth-child(4n) {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .lp-card {
        width: 100%;
        float: none;
        margin-right: 0;
    }
}

.lp-card__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #d0111c;
}

.lp-card__subtitle {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #d0111c;
}

.lp-card__desc {
    font-size: 14px;
}

.lp-card__image img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 8px;
}

.lp-card__video iframe {
    max-width: 100%;
    width: 100%;
    margin-bottom: 8px;
}

/**
 フッター
 */
footer {
    width: 100%;
    background-color: #d0111c;
    color: #fff;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 0 3%;
    }
}

footer h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 48px;
}

footer .copyright {
    text-align: center;
}

/**
 ボックス
 */
.box {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .box {
        padding: 12px;
    }
}

/**
 LPセクション
 */
section.lp-area {
    width: 100%;
    background-color: #f3eddf;
}

@media screen and (max-width: 768px) {
    section.lp-area {
        padding: 0 3%;
    }
}

section.lp-area:nth-of-type(2n+1) {
    background-color: #fffcf5;
}

section.lp-area h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 48px;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 768px) {
    section.lp-area h2 {
        font-size: 28px;
    }
}

section.lp-area h2::before {
    display: block;
    content: "";
    width: 120px;
    height: 120px;
    background-image: url('../images/top-imgs/piano-pop.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -30px;
    left: 0;
}

@media screen and (max-width: 768px) {
    section.lp-area h2::before {
        top: -60px;
        width: 60px;
        height: 60px;
    }
}

section.lp-area h2::after {
    display: block;
    content: "";
    width: 120px;
    height: 120px;
    background-image: url('../images/top-imgs/vio-pop.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -30px;
    right: 0;
}

@media screen and (max-width: 768px) {
    section.lp-area h2::after {
        top: -60px;
        width: 60px;
        height: 60px;
    }
}


/**
 CVセクション
 */
.cv-area {
    width: 100%;
    background-image: url('../../../images/school/document.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.cv-area .layer-dark {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cv-area button {
    background-color: #ffea00;
    color: #000;
    font-size: 48px;
    font-weight: bold;
    padding: 16px 36px;
    border: none;
    position: relative;
    animation-name: scaleUp;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    box-shadow: 5px 5px 1px #ccc;
}

@media screen and (max-width: 768px) {
    .cv-area button {
        font-size: 20px;
    }
}

.cv-area .wechat {
    margin-top: 60px;
    background: #fff;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #eee;
    border-radius: 8px;
}

.cv-area .wechat .qr {
    display: inline-block;
    width: 120px;
}

@media screen and (max-width: 768px) {
    .cv-area .wechat {
        font-size: 16px;
        padding: 8px 12px;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.02);
    }
    20% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.cv-area button:hover {
    background-color: #ffff00;
}

.cv-area button::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 0;
    margin: auto;
    height: 30px;
    width: 15px;
    background: url(../images/icons/more-button-arrow-bl.png) no-repeat;
    background-size: contain;
}

/**
 リスト
 */
.lp-list {
    list-style: none;
    padding-left: 0;
}

.lp-list li {
    margin-bottom: 12px;
}

.lp-list__title {
    color: #d0111c;
    font-weight: bold;
    font-size: 20px;
}

.lp-list__desc {

}

/**
 フォーム
 */
.form-page #send {
    background-color: #ffea00;
    font-size: 24px;
    font-weight: bold;
    padding: 16px 36px;
    border: none;
    position: relative;
    animation-name: scaleUp;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    box-shadow: 5px 5px 1px #ccc;
}

.form-page .mg_b_5 {
    margin-bottom: 5px !important;
}

.form-page .text_center {
    text-align: center;
}

.form-page .text_left {
    text-align: left;
}

.form-page .line_w_r {
    border-right: none !important;
}

.form-page .no_border {
    border: none !important;
}

.form-page .clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.form-page .line-icon {
    width: 160px;
    margin: 20px 0;
}

.form-page .form-hint {
    float: right;
    cursor: pointer;
    position: relative;
}

.form-page .form-hint .svg {
    width: 24px;
    height: 24px;
}

.form-page .form-hint:hover .svg {
    stroke: #0288d1;
}

.form-page .form-hint .message {
    position: absolute;
    bottom: 40px;
    left: -300px;
    font-size: 1.1rem;
    width: 300px;
    padding: 6px 8px;
    z-index: 999;
    background: #ade1fe;
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .form-page .form-hint .message {
        bottom: 40px;
        left: -80vw;
        width: 80vw;
        max-width: 300px;
    }
}

.form-page label.error {
    display: inline-block;
    color: #d13232;
    font-size: 1.2rem;
    margin-top: 6px;
    margin-left: 12px;
}

.form-page .form_table {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 140%;
}

.form-page .form_table > tbody > tr {
    border: 0;
}

.form-page .form_table > tbody > tr > th {
    background: #645752;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-align: center;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 8px 10px;
}

.form-page .form_table > tbody > tr > td {
    font-size: 1.5rem;
    padding: 10px;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    background-color: #ffffff;
    width: 50%;
    vertical-align: top;
}

.form-page .form_table > tbody > tr > td.bg-main {
    background-color: #fffcf5;
}

.form-page .form_table > tbody > tr > td.focus {
    outline: 1px solid #2da5a4;
}

.form-page .form_table > tbody > tr > td.no_focus {
    outline: none !important;
}

.form-page .form_table > tbody > tr > td.w_full {
    width: 100%;
    border-right: none;
}

@media screen and (max-width: 768px) {
    .form-page .form_table > tbody > tr > th {
        font-size: 1.4rem;
    }

    .form-page .form_table > tbody > tr > td { /*width: calc(100% - 20px);*/
        width: 100%;
        display: block;
        border-right: none;
        font-size: 1.4rem;
    }

    .form-page .form_table > tbody > tr > td.w_full {
        width: 100%;
    }
}

.form-page input[type=text], .form-page input[type=password], .form-page input[type=email], .form-page input[type=tel], .form-page textarea, .form-page select, .form-page .uneditable-input {
    display: inline-block;
    padding: 4px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-page input[type=text], .form-page input[type=password], .form-page input[type=email], .form-page input[type=tel], .form-page select, .form-page textarea {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.form-page input[type=password], .form-page input[type=email], .form-page input[type=tel], .form-page textarea, .form-page select, .form-page .uneditable-input {
    display: inline-block;
    min-width: 210px;
    padding: 4px;
    font-size: 1.3rem;
    line-height: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #ffffff;
}

.form-page input[type=radio], .form-page input[type=checkbox] {
    margin-right: 6px;
}

.form-page .form_table input[type="text"], .form-page .form_table input[type="text"]:hover, .form-page .form_table input[type="text"]:focus, .form-page .form_table input[type="tel"], .form-page .form_table input[type="tel"]:hover, .form-page .form_table input[type="tel"]:focus, .form-page .form_table input[type="email"], .form-page .form_table input[type="email"]:hover, .form-page .form_table input[type="email"]:focus {
    outline: none;
    border: none;
    box-shadow: none;
    font-size: 1.6rem;
    height: 120%;
    padding-left: 0 !important;
    width: 100%;
}

.form-page .form_table input[type="text"].inline, .form-page .form_table input[type="text"]:hover.inline, .form-page .form_table input[type="text"]:focus.inline, .form-page .form_table input[type="tel"].inline, .form-page .form_table input[type="tel"]:hover.inline, .form-page .form_table input[type="tel"]:focus.inline, .form-page .form_table input[type="email"].inline, .form-page .form_table input[type="email"]:hover.inline, .form-page .form_table input[type="email"]:focus.inline {
    width: auto;
}

.form-page .form_table textarea {
    outline: none;
    border: none;
    box-shadow: none;
    font-size: 1.6rem;
    height: 120%;
    padding-left: 0 !important;
    width: 100%;
    resize: none;
    overflow: hidden;
    line-height: 1.9;
}

.form-page .form_table textarea#course, .form-page .form_table textarea#abr_course, .form-page .form_table textarea#jpn_course, .form-page .form_table textarea#jpn_masterclass_name {
    font-weight: bold;
    color: #2da5a4;
    height: 90px;
}

.form-page .form_table label {
    display: inline-block;
    margin-right: 24px;
}

@media screen and (max-width: 768px) {
    .form-page .form_table label {
        margin-right: 12px;
    }
}

.form-page textarea::placeholder, .form-page input::placeholder {
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .form-page select {
        width: 100%;
        padding: 12px;
        height: 45px;
    }
}

.form-page input:-ms-input-placeholder {
    color: #aaaaaa;
}

.form-page input::-ms-input-placeholder {
    color: #aaaaaa;
}

.form-page .input_label {
    margin-left: 5px;
    padding: 3px;
    font-size: 12px;
    line-height: 12px;
    text-indent: 0;
    border-radius: 3px;
    color: #ffffff;
    display: inline-block;
    background: #5c5c5c;
    font-weight: bold;
}

.form-page .input_label.require {
    background: #d13232;
}

.form-page .input_label.option {
    background: #777;
}