@charset "UTF-8";

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans', "Helvetica Neue", "Helvetica", 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 1.4em;
    /* フォントサイズはpxを0.1倍してremで指定 ex)15px→1.5rem */
    /* 【参考】https://qiita.com/kiyodori/items/722c8001190b0922dabb */
    letter-spacing: 0.1em;
    color: #707070;
}

img {
    max-width: 100%;
}

/* サイト全体のコンテンツ幅を設定 */
.container {
    max-width: 1920px;
    margin: 0 auto
}

/* 中のコンテンツ部分の最大幅を設定 */
.wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* フォント関係 */
.section_title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 44px 0 80px;
    text-align: center;
    color: #B7617D;
}

.index{
    font-size: 3.1rem;
    font-weight: bold;
    color: #B7617D;
    letter-spacing: 0.05em;
}
.sentence {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
}
.visual_img img{
    display: inline-block;
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    object-fit: cover;
}

/* リンク非アクティブ */
.selected{
    pointer-events: none;
}

/* ボタンのホバーエフェクト（PCのみ） */
@media(min-width: 1024px) {
    .btn:hover{
        opacity: 0.7;
        transition: .3s ease-in-out;
    }
}

/* 背景色によって色を変更（PCのみ） */
@media(min-width: 481px) {
    .midnightHeader.white li{
        color: #fff;
    }
}

/* TOPボタン（PCのみ）
------------------------------- */
@media(min-width: 481px) {
    #page_top .arrowbox{
        position: fixed;
        right: 40px;
        bottom: 50px;
        width: 70px;
        z-index: 997;
    }
}

/* Google fonts 記述例 */
.Noto-sans-JP {
    font-family: 'Noto Sans JP', sans-serif;
}
.Noto-sans {
    font-family: 'Noto Sans', sans-serif;
}

/* header
-------------------------------- */
header{
    position: relative;
}

/* ロゴ帯部分（スマホのみ表示）
------------------------------- */
@media(min-width: 481px) {
    .top_area{
        display: none;
    }
}

.top_content {
    height: 100vh;
    background: url(../img/header_img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
}
header h1{
    text-align: center;
    position: absolute; /* top_menu_areaの上にlogoを浮かせる */
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
header h1 img{
    width: 83px;
    padding-top: 60px;
}

/* ---- メニューの見た目（PCのみ） ---- */
@media(min-width: 481px) {

    header nav{
        position: fixed;
        width: 230px;
        z-index: 999;
    }
    header nav ul {
        padding: 45px 0 0 45px;
        z-index: 999;
    }
    header .change li {
        margin-bottom: 14px;
        font-size: 1.7rem;
        font-weight: bold;
        color: #B7617D;
    }
    header .change li:last-child {
        margin-bottom: 0;
    }
}

/* navをホバーすると英語から日本語に変える（PCのみ） */
@media(min-width: 481px) {
    header ul li a {
        position: relative;
        display: inline-block;
        line-height: 1;
        overflow: hidden;
        width: 100%;
    }
    ul li a::after {
        position: absolute;
        top: 0;
        left: 0;
        content: attr(data-hover);
        display: block;
        width: 100%;
        transition: .3s ease-in-out;
        transform: translateY(1.4em);
    }
    header ul li a span {
        display: inline-block;
        transition: .3s ease-in-out;
    }
    header ul li a:hover::after,
    header ul li a:focus::after {
        transform: translateY(0);
    }
    header ul li a:hover span,
    header ul li a:focus span {
        transform: translateY(1.4em);
    }
}
/* ここまで（navをホバーすると英語から日本語に変える） */

/* menuとグルテンフリーを横並びに */
header .stecker{
    position: absolute;
    top: 45px;
    right: 45px;
    z-index: 1;
}
header .stecker img{
    width: 150px;
    height: 150px;
}

/* PCのみ */
@media(min-width: 481px) {
    header .copy {
        width: 100%;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
    }
    header .copy span img{
        max-width: 80%;
    }
}

/* about
-------------------------------- */
#about{
    z-index: 0;
}
#about .back{
    background-color: #B7617D;
    z-index: -999;
}
#about h2{
    color: #fff;
    padding-bottom: 0;
}
.about_content {
    min-height: 600px;
    display: flex;
    justify-content: space-between;
}

.about_content .about_img{
    width: 30%;
}
.about_img img{
    height: 95%;
    padding-left: 10%;
}

.about_content .paragraph {
    padding: 100px 0;
    margin-left: 120px;
    width: 70%;
    color: #fff;
}
.about_content h3{
    font-size: 4rem;
    padding-bottom: 60px;
    text-align: left;
    color: #fff;
}

.about_content .sentence{
    font-size: 2rem;
    line-height: 1.9;
    max-width: 700px;
    text-align: left;
}


/* quolity
-------------------------------- */
#quality{
    color: #B7617D;
}
#quality .back{
    background-color: rgba(206, 180, 132, 0.38);
}
.quality_content .item{
    display: flex;
}
.quality_content .paragraph{
    width: 60%;
    border-radius: 43px;
    padding: 60px 60px;
    margin-bottom: 60px;
}
.quality_content .index{
    margin-bottom: 40px;
    letter-spacing: 0;
}
.quality_content .item_img{
    width: 45%;
    position: relative;
}
.quality_content .item_img img{
    position: absolute;
    bottom: 60px;
}

.quality_content .border{
    border-bottom: 2px solid #B7617D;
    margin-bottom: 60px;
}

/* imgをparagraphにかぶせる */
.quality_content .item_1 .item_img,.item_3 .item_img{
    margin-left: -40px;
}
.quality_content .item_2 .item_img{
    margin-right: -30px;
    width: 40%;
}

/* item_2の左右入れ替え */
.quality_content .item_2 .paragraph{
    order: 2;
}
.quality_content .item_2 .item_img{
    order: 1;
}

/* service
-------------------------------- */
#service{
    background-color: #B7617D;
    color: #fff;
}
.service_content{
    padding-bottom: 60px;
}
.service_content h2{
    color: #fff;
}
.service_content h3{
    color: #fff;
    padding-bottom: 40px;
}
.service_content .title_area{
    text-align: center;
    margin-bottom: 80px;
}
.service_content .img_area{
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.service_content .item_area{
    margin: 0 2%;
    width: 21%;
}
.service_content .item_area h4{
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.service_content .item_area.last{
    margin-right: 0;
}

/* imgを正方形にする */
.service_content .item_img{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #fff;
    background-color:rgba(255,255,255,0.1);
}
.service_content .item_img::before {
    content: "";
    display: block;
    padding-top: 100%;
}
.service_content .item_img img {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}
/* materialを正方形に4つ並べる（ここまで） */


/* lesson
-------------------------------- */
#lesson .border_box{
    border: #B7617D 4px solid;
    margin-bottom: 100px;
}

.lesson_content .index{
    text-align: center;
    margin: 70px 0 80px;
}

.lesson_content .lesson_img{
    width: 80%;
    margin: 0 auto 60px;
}

.lesson_content h4{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.lesson_content .lead{
    text-align: center;
    margin-bottom: 60px;
}

.lesson_content h4{
    color: #B7617D;
}

.lesson_content .material_content{
    text-align: center;
    margin-bottom: 120px;
}

.lesson_content .material_content h5{
    font-size: 2rem;
    color: #B7617D;
    margin-bottom: 30px;
}

/* materialを正方形に4つ並べる */
.lesson_content .item{
    flex-flow: row wrap;
    display: flex;
    justify-content: center;
    margin: 0 2%;
}
.lesson_content .item div{
    position: relative;
    width: 20%;
    margin: 2%;
}
.lesson_content .item div::before {
    content: "";
    display: block;
    padding-top: 100%;
}
.lesson_content .item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* materialを正方形に4つ並べる（ここまで） */

.lesson_content .material{
    border: solid 2px #B7617D;
    color: #B7617D;
    text-align: center;
}

.lesson_content .material span{
    width: 100%;
    line-height: 2.5rem;
    font-size: 1.2vw;
    font-weight: 400;
}
@media screen and (max-width: 1300px) {
.lesson_content .material span{
    font-size: 2rem;
}
}

.lesson_content .btn{
    text-align: center;
    margin-bottom: 120px;
}
.lesson_content .btn a{
    padding: 20px 50px;
    background-color: #B7617D;
    border-radius: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
}

/* online shop
-------------------------------- */
#online_shop{
    background-color: #B7617D;
}
#online_shop h2{
    color: #fff;
}
#online_shop h3{
    color: #fff;
    padding-bottom: 60px;
    font-size: 3rem;
}
.online_shop_content{
    display: flex;
    justify-content: space-between;
}
.online_shop_content .paragraph{
    width: 47%;
    max-width: 900px;
    color: #fff;
    text-align: center;
}
.online_shop_content h3{
    display: inline-block;
    text-align: left;
}
.online_shop_content .sentence{
    margin-bottom: 120px;
    line-height: 2.5;
    display: inline-block;
    text-align: left;
}
.online_shop_content .btn_online{
    text-align: center;
    margin-bottom: 120px;
}
.online_shop_content .btn_online a{
    padding: 20px 50px;
    background-color: #fff;
    border-radius: 15px;
    color: #B7617D;
    font-weight: 900;
    font-size: 1.6rem;
    width: 100%;
}
/* ボタンのホバーエフェクト（PCのみ） */
@media(min-width: 1024px) {
    .online_shop_content .btn_online a:hover{
        background-color: rgba(255,255,255,0.5);
        transition: .4s ease-in-out;
    }
    .online_shop_content .btn_online a:hover{
        color: #fff;
        transition: .4s ease-in-out;
    }
}
.online_shop_content .online_img{
    width: 26%;
    position: relative;
}
.online_shop_content .online_img_1 img{
    position: absolute;
    top: -80px;
    padding-right: 0.5%;
}
.online_shop_content .online_img_2 img{
    position: absolute;
    bottom: 50px;
    padding-left: 0.5%;
}

/* access
-------------------------------- */
#access{
    padding-bottom: 50px;
    background: url(../img/visual_3.jpg);
    background-color:rgba(255,255,255,0.5);
    background-blend-mode:lighten;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.access_content{
    display: flex;
    justify-content: space-around;
    margin-bottom: 100px;
}
.access_content span{
    display: block;
}
.access_content .address_area{
    height: 350px;
    color: #444444;
}
.access_content .address_area .number{
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
}
.access_content .address_area .address{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.access_content .address_area .access{
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 100px;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* Instagram
-------------------------------- */
#instagram{
    margin-bottom: 144px;
}
#instagram .gallery{
    display: flex;
    flex-wrap: wrap;
}
#instagram li{
    position: relative;
    width: 31%;
    margin: 1%;
}
#instagram li::before{
    content: "";
    display: block;
    padding-top: 100%;
}
#instagram li img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
}

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

footer .footer_content{
    width: 100%;
    background-color: #B7617D;
}
footer .footer_menu ul{
    display: flex;
    justify-content: center;
}
footer .footer_menu ul li{
    margin: 40px 0;
    color: #fff;
}
footer .footer_menu ul li.lesson{
    padding: 5px 40px 5px 0;
}
footer .footer_menu ul li.online_shop{
    padding: 5px 40px 5px;
    border-right: solid 2px #fff;
    border-left: solid 2px #fff;
}
footer .footer_menu ul li.contact{
    padding: 5px 0 5px 40px;
}

footer .logo{
    text-align: center;
    margin-bottom: 40px;
}
footer .logo img{
    padding: 20px 0;
    height: 150px;
}

/* sns */
.sns_content{
    margin: 0 auto 40px;
}
.sns_content ul{
    display: flex;
    justify-content:center;
    align-items: center;
}
.sns_content li{
    width: 80px;
    height: 80px;
    background-color: #fff;
    margin-right: 60px;
    color: #B7617D;
    border-radius: 50%;
    position: relative;
}
.sns_content li:last-child{
    margin-right: 0;
}
.sns_content li a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 3rem;
}

footer .copyright{
    text-align: center;
    font-size: 0.5rem;
    color: #fff;
    padding-bottom: 20px;
}

