@charset "utf8";

body{
    background-color: #e5e5e5;
    font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
    letter-spacing: .08em;
}
.wrap{
    max-width: 1280px;
    margin: 0 auto;
}
.content{
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}
.content::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #181818;
    z-index: -1;
    bottom: -5vw;
}
.sp_block{
    display: none;
}
.text{
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .08em;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex.reverse{
    flex-direction: row-reverse;
}
.fw_bold{
    font-weight: bold;
}
.ps_re{
    position: relative;
}
.ps_ab{
    position: absolute;
}
a:hover{
    text-decoration: none;
}
.title{
    margin-bottom: 50px;
}
.title h1{
    font-size: 80px;
    letter-spacing: .08em;
    font-family: 'Avenir-Light', sans-serif;
    display: inline-block;
}
.title h2{
    font-size: 18px;
    display: inline-block;
    letter-spacing: .08em;
}
.line{
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-top: 20px;
    padding-left: 40px;
    margin-top: -20px;
}
.line::before{
    content: "";
    position: absolute;
    background-color: #181818;
    width: 20px;
    height: 2px;
    transform: translateY(-50%);
    top: 75%;
    left: 0;
}
.text_line{
    padding-left: 40px;
    margin: 15px 0 50px;
}

/* HEADER */
#header{
    background-color: #181818;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 59px 5%;
    z-index: 999;
}
.header_content{
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header a{
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.12em;
    transition: .4s;
}
#header a:hover{
    opacity: .6;
}
#header .pc_menu ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#header .pc_menu ul li{
    margin-left: 30px;
}
.toggle,
.sp_menu{
    display: none;
}

/* FOOTER */
#footer{
    background-color: #181818;
    color: #fff;
}
.single{
    margin-right: 40px;
}
.single2 li:nth-child(2){
    margin: 56px 0;
}
.single li{
    margin-bottom: 10px;
}
.second li{
    padding: 10px 0 10px 15px;
    border-left: 1px solid #fff;
    margin-bottom: 0;
}
#footer li a{
    color: #fff;
    transition: .4s;
}
#footer li a:hover{
    opacity: .6;
}
#footer .flex{
    justify-content: space-between;
}
.sitemap{
    display: flex;
}
.footer_content{
    padding: 100px 0 200px;
    position: relative;
}
.gotop{
    position: absolute;
    bottom: 50px;
    transform: translateX(-50%);
    left: 50%;
}
.copyright{
    background-color: #fff;
    color: #181818;
    text-align: center;
    padding: 15px 0;
}
.copyright .text{
    font-size: 12px;
}

/* MV */
.mv{
    padding-left: 5vw;
    background-color: #181818;
    position: relative;
}
.mv_content{
    transform: translateY(150px);
    padding: 18vw 5vw;
    background: url(./img/pc_mv.png) no-repeat center center / cover;
}
.mv_content h1{
    font-size: 3.3vw;
    font-weight: normal;
    color: #fff;
    line-height: 1.5;
    letter-spacing: .06em;
}
.scroll_img{
    position: absolute;
    bottom: -150px;
    left: 2.5vw;
}

/* SECTION 01 */
.sec01{
    padding-right: 5vw;
    margin-top: 300px;
}
.sec01 .wrap{
    transform: translateX(2.5vw);
}
.sec01 .text_box{
    padding-left: 40px;
    padding-top: 60px;
    width: 53%;
}
.sec01 .flex .ps_ab{
    font-size: 44px;
    letter-spacing: .08em;
    font-weight: bold;
    color: #ccc;
    top: 0;
    left: 40px;
}
.sec01 .flex.adjust .ps_ab{
    left: 47%;
}
.sec01 .flex.adjust .text_box{
    padding-left: 0;
    padding-right: 40px;
}
.sec01 .flex .text_box .text{
    text-align: justify;
}
.sec01 .flex{
    margin-top: 80px;
    align-items: flex-start;
    justify-content: space-between;
}
.sec01 .content::before{
    right: -5vw;
}

/* SECTION 02 */
.sec02{
    margin-top: 250px;
    padding-left: 5vw;
}
.sec02 .wrap{
    transform: translateX(-2.5vw);
}
.sec02 .content::before{
    left: -5vw;
}
.sec02 .flex{
    justify-content: space-between;
}
.sec02 .flex .text_box{
    width: 68%;
}
.view_more{
    margin-top: 30px;
    background-color: #181818;
    color: #fff;
    padding: 20px 100px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: .08em;
    transition: .4s;
    position: relative;
    cursor: pointer;
}
.view_more::before,
.view_more::after{
    position: absolute;
    height: 1px;
    width: 10px;
    background-color: #fff;
    content: "";
    top: 50%;
    right: 75px;
    transition: .4s;
}
.view_more::before{
    transform: translateY(-50%) rotate(90deg);
}
.active.view_more::before{
    transform: translateY(-50%) rotate(0);
}
.view_more::after{
    transform: translateY(-50%);
}
.view_more:hover{
    opacity: .6;
}
.more_content{
    padding-top: 80px;
}

/* SECTION 03 */
.sec03{
    padding-right: 5vw;
    margin-top: 250px;
}
.sec03 .wrap{
    transform: translateX(2.5vw);
}
.sec03 .content:nth-of-type(2){
    background-color: #e4e4e4;
}
.sec03 .content::before{
    right: -5vw;
}
.sec03 .content:nth-of-type(2)::after{
    content: "";
    position: absolute;
    bottom: -5vw;
    right: -5vw;
    background-color: #181818;
    width: 100%;
    height: 5vw;
    z-index: 1;
}
.sec03 .flex{
    justify-content: space-between;
}
.sec03 .box{
    width: 24%;
    background-color: #e4e4e4;
}
.sec03 .box .img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
.sec03 .box .text{
    line-height: 1.4;
    font-size: 14px;
    text-align: center;
    background-color: #181818;
    color: #fff;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec03 .text.att{
    font-size: 12px;
    text-align: center;
    color: #929292;
    margin-top: 30px;
}
.sec03_pc_view{
    top: -2vw;
    right: 0;
    z-index: 1;
    width: 36vw;
}
.sec03_sp_view{
    display: none;
}
.sec03 .content:nth-of-type(2) .flex{
    justify-content: flex-start;
}
.sec03 .content:nth-of-type(2) .text_box{
    margin-left: 40px;
}
.sec03 .content:nth-of-type(2) .text_line{
    margin: 15px 0 0;
}
.sec03 .view_more{
    margin-left: 40px;
}
.sec03 .view_more::before,
.sec04 .view_more::before{
    display: none;
}
.sec03 .view_more::after,
.sec04 .view_more::after{
    left: 0;
    width: 0;
}
.sec03 .view_more:hover,
.sec04 .view_more:hover{
    opacity: 1;
}
.sec03 .view_more:hover::after,
.sec04 .view_more:hover::after{
    animation: line .4s forwards;
}
@keyframes line{
    0%{
        width: 0;
    }
    100%{
        width: 40px;
    }
}
.sec03 .sitesBox + .sitesBox{
    margin-top: 40px;
}


/* SECTION 04 */
.sec04{
    background: url(./img/pc_sunset.png) no-repeat bottom center / cover;
    position: relative;
    z-index: 0;
    padding: 240px 0;
}
.sec04 .flex{
    align-items: center;
}
.sec04 .col_2{
    width: 50%;
}
.sec04 .col_2:nth-of-type(2){
    background-color: #fff;
    padding: 40px 60px;
}
.sec04 .text_box .line{
    padding-left: 0;
    margin-bottom: 30px;
}
.sec04 .text_box .line::before{
    left: -40px;
}
.sec04 .col_2:nth-of-type(1){
    text-align: center;
}
.sec04 h1{
    color: #fff;
}
.sec04 .title{
    margin-bottom: 0;
}
.sec04 .text_box h3{
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 20px;
}
.sec04 .text_box ul{
    margin-top: 10px;
}
.sec04 .view_more{
    background-color: #fff;
    color: #181818;
}
.sec04 .view_more::after{
    background-color: #181818;
}

.down_fade{
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
}

@-webkit-keyframes sdb {
    0% {
      -webkit-transform: translateY(-20px);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(0);
      opacity: 0;
    }
}
@keyframes sdb {
    0% {
      transform: translateY(-20px);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      opacity: 0;
    }
}

@media screen and (max-width:1500px){
    .wrap,
    .header_content{
        max-width: 1024px;
    }
    .text{
        font-size: 15px;
    }

    /* SECTION 01 */
    .sec01,
    .sec03{
        padding-right: 40px;
    }
    .sec01 .wrap {
        transform: translateX(20px);
    }
    .sec01 .content::before,
    .sec03 .content::before,
    .sec03 .content:nth-of-type(2)::after{
        right: -40px;
    }
    .sec01 .img{
        width: 45%;
    }
    .sec01 .img img{
        width: 100%;
    }

    /* SECTION 02 */
    .sec02{
        padding-left: 40px;
    }
    .sec01 .wrap {
        transform: translateX(-20px);
    }
    .sec02 .content::before {
        left: -40px;
    }
    .sec02 .flex .img{
        width: 34%;
    }
    .sec02 .flex .text_box{
        width: 62%;
    }
    .sec02 .flex .img img{
        width: 100%;
    }

    /* SECTION 03 */
    .sec03 .content:nth-of-type(2) .img{
        width: 50%;
    }
    .sec03 .content:nth-of-type(2) .text_box {
        margin-left: 0;
        padding-left: 30px;
        width: 50%;
    }
}

@media screen and (max-width:1200px){
    .wrap, .header_content{
        width: 85%;
    }
    .title h1{
        font-size: 50px;
    }
    .title h2,
    .line{
        font-size: 18px;
    }
    .view_more{
        font-size: 14px;
    }

    /* SECTION 01 */
    .sec01,
    .sec03{
        padding-right: 20px;
    }
    .sec01 .wrap,
    .sec03 .wrap{
        transform: translateX(10px);
    }
    .sec01 .content::before,
    .sec03 .content::before,
    .sec03 .content:nth-of-type(2)::after{
        right: -20px;
    }
    .sec01 .flex .ps_ab{
        font-size: 30px;
    }
    .sec01 .text_box{
        padding-top: 40px;
    }

    /* SECTION 02 */
    .sec02{
        padding-left: 20px;
    }
    .sec02 .content::before {
        left: -20px;
    }
    .sec02 .wrap{
        transform: translateX(-10px);
    }

    /* SECTION 03 */
    .sec03 .box .text{
        height: 80px;
    }
}

@media screen and (max-width:991px){
    .wrap{
        width: 75%;
    }
    .sp_block{
        display: block;
    }
    .pc_none{
        display: none;
    }
    .text{
        font-size: 26px;
    }
    .title h1{
        font-size: 75px;
    }
    .title h2{
        font-size: 26px;
    }
    .line{
        font-size: 26px;
    }
    .text_line{
        padding-left: 0;
    }
    .view_more{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 26px;
        padding: 25px 0;
    }
    .view_more::before, .view_more::after{
        height: 2px;
        width: 20px;
    }
    .content::before{
        bottom: -70px;
    }

    /* HEADER */
    .pc_menu{
        display: none;
    }
    #header{
        padding: 40px 5%;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
    .header_content{
        width: 100%;
    }
    .mv_content {
        background: url(./img/sp_mv.png) no-repeat center center / cover;
    }
    .toggle{
        display: block;
        width: 76px;
        text-align: center;
        z-index: 999;
        position: relative;
    }
    .toggle div{
        display: block;
        width: 50px;
        height: 32px;
        position: relative;
        margin: auto;
    }
    .toggle span {
        position: absolute;
        background: #fff;
        width: 50px;
        height: 3px;
        left: 0;
        right: 0;
        margin: auto;
        transition: all .4s ease;
    }
    .toggle span:nth-child(1) {
        top: 0;
    }
    .toggle span:nth-child(2) {
        top: 15px;
    }
    .toggle span:nth-child(3) {
        top: 29px;
    }
    .open .toggle span:nth-child(1) {
        -webkit-transform: translateY(16px) rotate(-45deg);
        transform: translateY(16px) rotate(-45deg);
    }
    .open .toggle span:nth-child(2){
        opacity: 0;
    }
    .open .toggle span:nth-child(3) {
        -webkit-transform: translateY(-13px) rotate(45deg);
        transform: translateY(-13px) rotate(45deg);
    }
    .toggle p.txt{
        color: #fff;
        font-size: 18px;
        padding-top: 13px;
    }
    body.fixed{
        position: fixed;
        width:100%;
    }
    .sp_menu{
        display: block;
        position: fixed;
        top: 0;
        height: 100%;
        width: 85%;
        right: -85%;
        background-color: #181818;
        z-index: 998;
    }
    #header .sp_menu li a{
        color: #fff;
        padding: 40px 30px;
        font-size: 26px;
        display: block;
        font-weight: bold;
        border-bottom: 1px solid #fff;
    }
    #header .sp_menu ul{
        padding: 160px 0 20px;
    }
    .open .rgba{
        width: 100%;
        height: 100vh;
        background-color: rgba(255,255,255,.78);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 997;
        transition: .4s;
    }
    

    /* FOOTER */
    .footer_content{
        padding: 80px 0 150px;
    }
    .gotop img{
        width: 40px;
    }
    #footer .flex{
        display: block;
    }
    #footer .logo{
        text-align: center;
        margin-bottom: 80px;
    }
    #footer li,
    #footer li a{
        font-size: 24px;
    }
    .sitemap{
        display: block;
    }
    .second li{
        border-left: none;
        padding: 20px 50px;
        position: relative;
    }
    .second li::before{
        content: "";
        background-color: #fff;
        height: 2px;
        width: 25px;
        transform: translateY(-50%);
        top: 50%;
        left: 0;
        position: absolute;
    }
    .single{
        margin-right: 0;
        border-bottom: 1px solid #fff;
    }
    .single li.arrow{
        padding: 35px 0;
    }
    .open.single{
        padding-bottom: 15px;
    }
    .single2 li a{
        display: block;
        padding: 35px 0;
        border-bottom: 1px solid #fff;
    }
    .single2 li:nth-child(2){
        margin: 0;
    }
    .sitemap li.arrow{
        position: relative;
    }
    .sitemap li.arrow::before{
        position: absolute;
        content: "";
        display: inline-block;
        background-image: url(./img/arrow.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 20px;
        right: 20px;
        transition: .4s;
    }
    .single .second{
        display: none;
    }
    .single li{
        margin-bottom: 0;
    }
    .open.single li.arrow::before{
        transform: rotate(90deg);
    }
    .sitemap .single2 li.arrow::before{
        transform: translateY(-50%);
        top: 50%;
    }
    .copyright .text{
        font-size: 18px;
    }

    /* MV */
    .mv_content h1{
        font-size: 45px;
    }
    .mv_content{
        transform: translateY(143px);
        padding: 52vw 5%;
    }
    .scroll_img {
        position: absolute;
        bottom: -100px;
        left: 10%;
    }

    /* SECTION 01 */
    .sec01{
        margin-top: 200px;
    }
    .sec01 .flex .ps_ab{
        position: initial;
        transform: translateY(50%);
        font-size: 64px;
    }
    .sec01 .flex.reverse{
        flex-direction: initial;
    }
    .sec01 .img,
    .sec01 .text_box{
        width: 100%;
    }
    .sec01 .text_box{
        padding-top: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    .sec01 .flex{
        margin-top: 20px;
    }

    /* SECTION 02 */
    .sec02{
        margin-top: 150px;
    }
    .sec02 .flex .img,
    .sec02 .flex .text_box{
        width: 100%;
    }
    .sec02 .flex .img{
        margin-bottom: 20px;
    }

    /* SECTION 03 */
    .sec03{
        margin-top: 150px;
    }
    .sec03 .content:nth-of-type(2)::after{
        bottom: -70px;
        height: 70px;
    }
    .sec03 .box{
        width: 100%;
        margin-bottom: 30px;
    }
    .sec03 .box .text{
        height: 100px;
        font-size: 26px;
    }
    .sec03 .box .img{
        padding: 50px 0;
    }
    .sec03 .box .img img{
        width: 320px;
    }
    .sec03 .content:nth-of-type(2) .img{
        display: none;
    }
    .sec03 .content:nth-of-type(2) .text_box{
        width: 100%;
        padding-left: 0;
    }
    .sec03 .view_more{
        margin-left: 0;
    }
    .sec03 .content:nth-of-type(2) .line{
        margin-bottom: 20px;
    }
    .sec03 .view_more::after{
        width: 40px;
    }
    .sec03_pc_view{
        display: none;
    }
    .sec03_sp_view{
        display: block;
        width: 84vw;
        margin-left: -50vw;
        margin-right: -50vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-bottom: 40px;
    }
    .sec03_sp_view img{
        width: 100%;
    }
    .sec03 .text.att{
        font-size: 26px;
    }

    .sec03 .sitesBox + .sitesBox {
        margin-top: 70px;
    }


    /* SECTION 04 */
    .sec04 {
        padding: 140px 0 330px;
        background: url(./img/sp_sunset.png) no-repeat bottom center / cover;
    }
    .sec04 .col_2{
        width: 100%;
    }
    .sec04 .flex.reverse{
        flex-direction: column-reverse;
    }
    .sec04 .wrap{
        width: 100%;
        padding: 0 40px;
    }
    .sec04 .text_box .line{
        padding-left: 40px;
    }
    .sec04 .text_box .line::before{
        left: 0;
    }
    .sec04 .text_box h3{
        margin-top: 70px;
        font-size: 26px;
    }
    .sec04 .col_2:nth-of-type(2) {
        padding: 80px 60px;
        margin-bottom: 150px;
    }
    .sec04 .view_more{
        width: 80%;
        margin: 50px auto 0;
    }
    .sec04 .view_more::after{
        width: 40px;
    }
}

@media screen and (max-width:749px){
    .wrap{
        width: 80%;
    }
    .content{
        padding: 50px 0;
    }
    .content::before{
        bottom: -40px;
    }
    .title h1{
        font-size: 25px;
    }
    .title h2{
        font-size: 14px;
    }
    .text{
        font-size: 14px;
    }
    .line{
        font-size: 16px;
        padding-left: 25px;
    }
    .line::before{
        width: 15px;
    }
    .view_more{
        font-size: 14px;
        padding: 20px 0;
    }
    .view_more::before, .view_more::after {
        height: 2px;
        width: 12px;
    }
    
    /* HEADER */
    #header{
        padding: 20px 5%;
    }
    .header_content .logo{
        width: 80px;
    }
    .toggle p.txt{
        font-size: 12px;
        padding-top: 5px;
    }
    .toggle{
        width: 60px;
    }
    .toggle div{
        width: 35px;
        height: 22px;
    }
    .toggle span{
        width: 35px;
        height: 2px;
    }
    .toggle span:nth-child(2){
        top: 10px;
    }
    .toggle span:nth-child(3){
        top: 20px;
    }
    .open .toggle span:nth-child(1) {
        -webkit-transform: translateY(7px) rotate(-45deg);
        transform: translateY(7px) rotate(-45deg);
    }
    #header .sp_menu li a{
        font-size: 14px;
        padding: 20px;
    }
    #header .sp_menu ul {
        padding: 80px 0 20px;
    }

    /* FOOTER */
    #footer .logo{
        margin: 0 auto 20px;
        width: 80px;
    }
    #footer li, #footer li a{
        font-size: 14px;
    }
    .single li.arrow,
    .single2 li a{
        padding: 20px 0;
    }
    .sitemap li.arrow::before{
        width: 7px;
        height: 15px;
    }
    .second li::before{
        height: 1px;
        width: 15px;
    }
    .second li{
        padding: 15px 30px;
    }
    .gotop img{
        width: 27px;
    }
    .footer_content{
        padding: 50px 0 100px;
    }
    .gotop{
        bottom: 30px;
    }
    .copyright{
        padding: 5px 0;
    }
    .copyright .text{
        font-size: 14px;
    }


    /* MV */
    .mv_content h1{
        font-size: 20px;
        text-align: center;
    }
    .mv_content {
        transform: translateY(79px);
    }
    .scroll_img{
        width: 10px;
        left: 8%;
        bottom: -60px;
    }

    /* SECTION 01 */
    .sec01 .flex .ps_ab{
        font-size: 25px;
    }
    .sec01{
        margin-top: 150px;
    }

    /* SECTION 02 */
    .sec02{
        margin-top: 80px;
    }

    /* SECTION 03 */
    .sec03{
        margin-top: 80px;
    }
    .sec03 .box .img img{
        width: 50%;
        max-width: 320px;
    }
    .sec03 .box .text {
        height: 60px;
        font-size: 14px;
    }
    .sec03 .text.att{
        font-size: 14px;
        margin-top: 0;
    }
    .sec03 .content:nth-of-type(2) .line{
        font-size: 14px;
    }
    .sec03 .content:nth-of-type(2)::after{
        bottom: -40px;
        height: 40px;
    }

    .sec03 .sitesBox + .sitesBox {
        margin-top: 40px;
    }


    /* SECTION 04 */
    .sec04 .col_2:nth-of-type(2){
        padding: 20px;
        margin-bottom: 100px;
    }
    .sec04 .text_box .line {
        padding-left: 25px;
    }
    .sec04 .text_box h3 {
        margin-top: 30px;
        font-size: 15px;
    }
    .sec04 .wrap {
        padding: 0 20px;
    }
    .sec04 {
        padding: 80px 0 200px;
    }
}

/*サロン見学クローズ対応*/
.link_off {
  background: #aaa;
  cursor: auto;
  margin-left: 40px;
  margin-top: 30px;
  color: #fff;
  padding: 20px 100px;
  display: inline-block;
}

.caution {
  margin-left: 40px;
  margin-top: 30px;
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .link_off {
    font-size: 14px;
    margin-left: 0;
  }

  .caution {
  margin-left: 0;
  }
}