@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body{
    color: #111;
    font-family: 'Noto Serif JP','Noto Sans JP', serif, sans-serif;
}

.section{
    padding: 140px 0;
}

.headline-en{
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 500;
}

.headline-ja{
    font-size: 16px;
}

.contents-area{
    width: 1000px;
    margin: 0 auto;
    /* background-color: aqua; */
}

.btn{
    position: relative;
    height: 48px;
    width: 240px;
    margin: 0 auto;
    background-color: #111;
}

.btn i{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #FFF;
}

.btn a{
    display: block;
    text-align: center;
    line-height: 48px;
    color: #FFF;
    font-family: "Noto Sans JP";
}

.header {
    /* psf */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.hum-menu {
    display: flex;
    flex-flow: column;
    row-gap: 10px;
    width: 40px;
    margin-top: 44px;
    margin-left: 50px;
}

.hum-menu span {
    height: 2px;
    width: 100%;
    background-color: #fff;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(rgba(0,0,0, .6), rgba(0,0,0, .6));
    z-index: 1;
}

.overlay.is-active {
    display: block;
}

.drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: fit-content;
    padding: 44px 50px;
    background-color: #fff;
    z-index: 2;
}

.drawer.is-active {
    display: block;
}

.drawer i {
    position: absolute;
    top: 44px;
    right: -64px;
    color: #FFF;
    font-size: 40px;
}

.drawer-menu {
    display: flex;
    flex-flow: column;
    row-gap: 24px;
}

.drawer-brand {
    font-size: 24px;
}

/* main video */

#mv{
    /* psr */
    position: relative;
}
.mv-video{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.logo{
    /* psa */
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    font-size: 32px;
}

/* NEWS */
.news-contents{
    display: flex;
    margin-bottom: 64px;
}

.news-contents .section-headline{
    width: 30%;
}

.news-list{
    display: flex;
    flex-flow: column;
    row-gap: 32px;
    width: 70%;
}

.news{
    display: flex;
    column-gap: 24px;
    width: 100%;
    border-bottom: 1px solid #A1A1A1;
    padding-bottom: 16px;
    font-family: "Noto Sans JP";
}
.news-date{
    font-weight: 500;
}

/* 模写課題⓵ */
#concept {
    position: relative;
    background: url(../img/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
}

#concept::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
}

#concept .contents-area {
    position: relative;
}

/* Concept */

#concept .section-headline {
    margin-bottom: 140px;
}

.concept:nth-of-type(2) {
    margin-bottom: 140px;
    /* color: red; */
}

.concept-title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 500;
}

.concept-text {
    line-height: 2.0;
}

/* experience */
#experience {
    padding-bottom: 0;
}

#experience .section-headline {
    margin-bottom: 48px;
    text-align: center;
}

.experience {
    position: relative;
    display: block;
    width: 250px;
    margin: 0 10px;
}

.experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2));
}

.experience-img {
    aspect-ratio: 1/1;
    /* 親要素一杯に広げる */
    object-fit: cover;
    width: 100%;
}

.experience-location {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
}

.experience-date {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-weight: 700;
}

/* Product */
#product {
    padding-bottom: 0;
}

#product .contents-area {
    width: 100%;
}

#product .section-headline {
    margin-bottom: 48px;
    text-align: center;
}

.product-list {
    display: flex;
    width: 100%;
}

.product {
    width: 100%;
}

.product-img {
    aspect-ratio: 3/2;
    object-fit: cover;
    width: 100%;
}

/* 模写課題⓶ */

.footer {
    padding-top: 90px;
}

.footer .contents-area {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #A1A1A1;
    padding-bottom: 90px;
}

.footer-logo {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
}

.footer-nav ul {
    display: flex;
    column-gap: 30px;
}

.footer-sns p {
    margin-bottom: 16px;
    font-weight: 500;
    text-align: center;
}

.footer-sns i {
    color: #111111;
    font-size: 20px;
}

.footer-sns ul {
    display: flex;
    column-gap: 30px;
}

.copylight {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    font-family: "Noto Sans JP";
    font-size: 14px;
}

/* slick settings */
.slick-arrow {
    height: 40px;
    width: 40px;
}

.slick-arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slick-next {
    right: -40px;
}

.slick-next:before {
    background: url(../img/slick-right.png);
    background-size: cover;
}

.slick-prev {
    left: -40px;
}

.slick-prev:before {
    background: url(../img/slick-left.png);
    background-size: cover;
}

/* イベントページのstyle(PC) */

#event.section {
    padding-top: 260px;
    padding-bottom: 0;
}

.header-event {
    width: 100%;
    padding: 44px 0;
    background-color: #111;
}

.header-event .hum-menu {
    margin-top: 0;
}

.event-contents {
    display: flex;
}

.event-img {
    aspect-ratio: 3/4;
    /* 親要素一杯に広げる */
    object-fit: cover;
    width: 50%;
}

.event-info {
    width: 500px;
    padding-left: 34px;
}

.event-title {
    margin-bottom: 32px;
    font-size: 32px;
    font-weight: 500;
}

.event-text {
    margin-bottom: 64px;
    font-family: "Noto Serif JP";
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.event-info_head {
    margin-top: 32px;
    margin-bottom: 8px;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
}

.event-info_exc {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 400;
}

.event-price {
    font-family: "Noto Sans JP";
    line-height: 2;
    font-size: 16px;
    font-weight: 400;
}

.event-price_red {
    font-size: 24px;
    font-weight: 500;
    color: #FF0000;
}

.line2 {
    line-height: 2;
}

.btn_event{
    position: relative;
    height: 48px;
    width: 100%;
    margin-top: 32px;
    background-color: #111;
}

.btn_event a{
    display: block;
    text-align: center;
    /* margin-left: 10px; */
    line-height: 48px;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
}

.btn_event i{
    margin-right: 10px;
    font-size: 18px;
}

/* ここまで */

/* レスポンシブ */
@media screen and (max-width: 599px) {
    /* 599px以下の端末でスタイルが優先される */
    .section{
        padding: 70px 0;
    }

    .headline-en {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .headline-ja {
        font-size: 12px;
    }

    .logo {
        top: 50%;
        font-size: 24px;
    }

    .contents-area {
        width: 100%;
        padding: 0 15px;
    }

    .hum-menu {
        width: 32px;
        margin-top: 24px;
        margin-left: 15px;
    }

    .drawer {
        width: 70vw;
        padding: 24px 15px;
    }

    .drawer i {
        top: 24px;
        right: -40px;
        font-size: 32px;
    }

    #news .section-headline {
        margin-bottom: 70px;
    }

    .news-contents {
        flex-flow: column;
        margin-bottom: 48px;
    }

    .news-list {
        width: 100%;
    }

    .news {
        flex-flow: column;
    }

    .news-date {
        margin-bottom: 14px;
        font-size: 14px;
    }

    #concept .section-headline {
        margin-bottom: 70px;
    }

    .concept:nth-of-type(2) {
        margin-bottom: 70px;
    }

    .concept-title {
        font-size: 18px;
    }

    .concept-text {
        font-size: 14px;
    }

    #experience .section-headline {
        margin-bottom: 24px;
    }

    .experience {
        width: 69vw;
    }

    #product .contents-area {
        padding: 0;
    }

    #product .section-headline {
        margin-bottom: 24px;
    }

    .product-list {
        flex-flow: column;
    }

    .footer {
        padding-top: 64px;
    }

    .footer .contents-area {
        align-items: center;
        flex-flow: column;
        width: calc(100% - 30px);
        padding-bottom: 64px;
    }

    .footer-logo {
        margin-bottom: 24px;
    }

    .footer-nav {
        margin-bottom: 64px;
        text-align: center;
    }

    .footer-nav li {
        font-size: 14px;
    }

    .footer-sns p {
        margin-bottom: 24px;
    }

    /* Slick */
    .slick-list {
        aspect-ratio: 1/1;
        width: 69vw;
        margin: 0 auto;
    }

    .slick-next {
        right: 0px;
    }

    .slick-prev {
        left: 0px;
    }

    /* イベントページstyle(SP) */

    #event.section{
        padding-top: 138px;
    }

    .header-event{
        height: 68px;
        padding: 24px 0;
    }

    .header-event .logo{
        top: 24px;
    }

    .event-contents {
        flex-flow: column;
    }

    .event-img {
        width: 100%;
    }

    .event-title {
        margin-top: 32px;
        margin-bottom: 8px;
        font-size: 24px;
        font-weight: 500;
    }

    .event-info {
        /* margin: 0 15px; */
        padding: 0;
        width: 100%;
    }

    .event-text {
        line-height: 2;
        border-bottom: 1px solid #A1A1A1;
        margin-bottom: 32px;
        padding-bottom: 24px;
    }


    /* ここまで */

}