@font-face {
    font-family: 'SFProDisplay';
    src: url('../font/SF-Pro-Display-Regular.otf');
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:focus {
    outline: 0;
}

h1,h2,h3,h4,h5,h6,p,a,span {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    font-weight: 100;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

.pc {
    display: block;
}

.tablet {
    display: none;
}

.sp {
    display: none;
}

#modal {
    display: none;
}

.br_sp {
    display: none;
}





/*------------------------------*/
/*header                        */
/*------------------------------*/
header {
    height: 140px;
    width: 100%;
    padding: 0 40px;
    background: rgba(0,0,0,0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

header a h1 .logo {
    height: auto;
    width: 200px;
    display: block;
}

.menu {
    height: 80px;
    width: 420px;
    padding: 0 66px;
    background: #FFFFFF;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.101961);
    border-radius: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu_list a {
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
    font-family: 'Roboto';
    color: #111111;
}

.active_menu a {
    color: #F68067;
    position: relative;
}

.active_menu a span {
    width: 25px;
    height: 7px;
    background: #F68067;
    border-radius: 4px;
    display: block;
    position: absolute;
    bottom: -15px;
    left: calc(50% - 13px);
}

.tablet_btn {
    display: flex;
    align-items: center;
}

.hd_contact_btn {
    height: 60px;
    width: 220px;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #111111;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu_btn {
    margin-left: 50px;
    cursor: pointer;
}

.menu_btn_box {
    height: 60px;
    width: 60px;
    background: #111;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu_btn_box div {
    height: 4px;
    width: 25px;
    margin-bottom: 5px;
    background: #FFF;
    border-radius: 20px;
}

.menu_btn_box div:last-child {
    margin: 0;
}

#modal {
    height: 100%;
    width: 100%;
    background: #FFF;
    position: fixed;
    z-index: 999;
    box-sizing: border-box;
}

.modal_scroll {
    height: 100%;
    width: 100%;
    padding: 0 40px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.modal_header {
    height: 140px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal_header img {
    height: auto;
    width: 200px;
}

.close_btn {
    height: 60px;
    width: 60px;
    background: #111;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.close_btn div {
    height: 4px;
    width: 35px;
    background: #FFF;
    top: 28px;
    left: 13px;
    border-radius: 20px;
    position: absolute;
}

.close_btn div:first-child {
    transform: rotate(45deg);
}

.close_btn div:last-child {
    transform: rotate(-45deg);
}

.modal_menu {
    height: calc(100% - 140px);
    width: 100%;
    padding: 100px 0 50px;
    text-align: center;
    box-sizing: border-box;
}

.modal_menu_list {
    margin-bottom: 30px;
}

.modal_menu_list:last-child {
    margin: 0;
}

.modal_menu_list a {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: #111111;
}

.modal_menu_list a.mm_active {
    color: #F68067;
}

.modal_menu_list a.mm_contact {
    height: 60px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    background: #111;
    border-radius: 30px;
    margin: 50px auto 0;
}





/*------------------------------*/
/*mainvisual                    */
/*------------------------------*/
#mainvisual {
    height: 770px;
    width: 100%;
    background: #eee;
    background-image: url(../img/mainvisual.jpg);
    background-size: cover;
    background-position: center;
}

.mainvisual_content {
    height: 100%;
    width: 100%;
    padding: 0 30px 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-sizing: border-box;
}

.mv_txt {
    margin-bottom: 70px;
}

.mv_txt h2 {
    font-size: 64px;
    font-family: 'Roboto';
    font-weight: bold;
    color: #fff;
}

.mv_img {
    height: 55px;
    width: 350px;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
}

.mv_img img {
    height: 55px;
}





/*------------------------------*/
/*about                         */
/*------------------------------*/
.about_content {
    width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    align-items: flex-end;
}

.ab_txt {
    width: 610px;
    margin: 0 50px 70px 0;
}

.ab_title {
    margin-bottom: 45px;
}

.ab_title h4 {
    font-family: 'SFProDisplay','Roboto';
    color: #555555;
    line-height: 28px;
}

.ab_bar {
    height: 10px;
    width: 80px;
    background: #F68067;
    border-radius: 30px;
    margin-top: 10px;
}

.ab_txt h2 {
    font-family: 'Roboto';
    font-weight: bold;
    color: #111111;
}

.about_content img {
    width: 260px;
}





/*------------------------------*/
/*step                          */
/*------------------------------*/
#step {
    background: #F5F5F5;
}

.step_content {
    width: 1120px;
    margin: 0 auto;
    padding: 60px 0;
}

.st_title h4 {
    font-family: 'SFProDisplay','Roboto';
    line-height: 33px;
    text-align: center;
    color: #555555;
}

.st_title h4 span {
    height: 77px;
    width: 77px;
    background: #F68067;
    display: inline-block;
    line-height: 77px;
    border-radius: 50%;
    font-family: 'SFProDisplay','Roboto';
    font-size: 60px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 5
}

.st_items {
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
}

.st_item {
    width: 350px;
    background: #FFFFFF;
    box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.113725);
    border-radius: 20px;
}

.st_item_top {
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.st_item_top h4 {
    font-family: 'SFProDisplay','Roboto';
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #111111;
    margin-bottom: 30px;
}

.st_item_top img {
    width: 207px;
}

.st_item_bottom {
    width: 297px;
    margin: 28px auto 30px;
}

.st_item_bottom p {
    font-family: 'Roboto','Roboto';
    font-weight: 300;
    font-size: 15px;
    color: #111111;
    line-height: 26px;
}

.st_btn a {
    height: 83px;
    width: 408px;
    margin: 0 auto;
    background: #F68067;
    border-radius: 50px;
    font-family: 'SFProDisplay','Roboto';
    font-size: 28px;
    line-height: 33px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}





/*------------------------------*/
/*howto                         */
/*------------------------------*/
.howto_content {
    width: 1120px;
    margin: 0 auto;
    padding: 80px 0;
}

.howto_content h4 {
    font-family: 'SFProDisplay','Roboto';
    font-size: 28px;
    line-height: 33px;
    text-align: center;
    color: #555555;
}

.hc_items {
    margin: 75px 0 50px;
    display: flex;
    justify-content: space-between;
}

.hc_item {
    width: 350px;
    padding: 30px 0;
    background: #FFFFFF;
    box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.113725);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hc_item h5 {
    font-family: 'SFProDisplay','Roboto';
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #111111;
}

.hc_item img {
    height: 120px;
    width: auto;
    margin: 30px 0;
}

.hc_txt {
    width: 297px;
}

.hc_txt p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 15px;
    line-height: 26px;
    color: #111111;
}

.howto_content a {
    height: 83px;
    width: 520px;
    margin: 0 auto;
    background: #111111;
    border-radius: 50px;
    color: #FFFFFF;
    font-family: 'SFProDisplay','Roboto';
    font-size: 28px;
    line-height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
}





/*------------------------------*/
/*news_btn                      */
/*------------------------------*/
#news_btn {
    background: #F5F5F5;
}

.nb_content {
    width: 1120px;
    margin: 0 auto;
    padding: 90px 0;
}

.nb_btn {
    height: 100px;
    width: 100%;
    background: #55C79A;
    border-radius: 50px;
    font-family: 'SFProDisplay','Roboto';
    font-size: 37px;
    color: #FFFFFF;
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nb_btn img {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 25px;
    right: 25px;
}





/*------------------------------*/
/*footer                        */
/*------------------------------*/
.ft_top {
    background: #EEEEEE;
}

.ftt_content {
    width: 960px;
    margin: 0 auto;
    padding-top: 85px;
    position: relative;
}

.ftt_content h2 {
    font-family: 'SFProDisplay','Roboto';
    line-height: 45px;
    margin-bottom: 35px;
    color: #111111;
    text-align: center;
}

.ftt_app {
    height: 70px;
    width: 455px;
    margin: 0 auto 20px;
}

.ftt_app a:last-child {
    margin-left: 20px;
}

.ftt_app img {
    height: 100%;
    width: auto;
}

.ftt_img {
    height: 300px;
    display: flex;
    justify-content: space-between;
}

.ftt_img img:first-child {
    width: 250px;
}

.ftt_img img:last-child {
    width: 275px;
}

.ftt_app_img {
    width: 285px;
    position: absolute;
    bottom: -150px;
    left: calc(50% - 143px);
}

.ftb_content {
    width: 830px;
    margin: 0 auto;
    padding: 200px 0 0;
    text-align: center;
}

.showroom_logo {
    width: 290px;
}

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

.ftb_content ul li a {
    font-family: 'SFProDisplay','Roboto';
    font-size: 16px;
    line-height: 50px;
    color: #111111;
}

.ftb_sns {
    margin: 40px 0 25px;
    display: flex;
    justify-content: center;
}

.ftb_sns a:last-child {
    margin-left: 25px;
}

.ftb_twitter {
    height: 60px;
    width: 200px;
    background: #26B4FF;
    border-radius: 50px;
    padding-left: 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.ftb_facebook {
    height: 60px;
    width: 200px;
    background: #3463CC;
    border-radius: 50px;
    padding-left: 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.ftb_twitter img {
    width: 24px;
}

.ftb_facebook img {
    width: 15px;
}

.ftb_twitter p, .ftb_facebook p {
    font-family: 'SFProDisplay','Roboto';
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    margin-left: 25px;
}

.copyright {
    padding: 20px 0;
    background: #F5F5F5;
    text-align: center;
}

.copyright p {
    font-family: 'SFProDisplay','Roboto';
    font-size: 12px;
    line-height: 14px;
    color: #111111;
}





@media screen and (max-width: 1200px) {
    /*mainvisual*/
    #mainvisual {
        height: 600px;
    }

    .mv_txt h2 {
        font-size: 48px;
    }

    /*step*/
    .step_content {
        width: 1000px;
    }

    .st_item {
        width: 310px;
    }

    .st_item_bottom {
        width: 280px;
    }

    .howto_content {
        width: 1000px;
    }

    .hc_item {
        width: 310px;
    }

    .hc_txt {
        width: 280px;
    }

    /*news_btn*/
    .nb_content {
        width: 1000px;
    }
}





@media screen and (max-width: 1040px) {
    h2 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px;
    }

    .pc {
        display: none;
    }

    .tablet {
        display: block;
    }

    /*header*/
    .hd_contact_btn {
        display: none;
    }

    /*mainvisual*/
    #mainvisual {
        height: 500px;
    }

    .mv_txt h2 {
        font-size: 32px;
    }

    .mv_img {
        height: 45px;
        width: 290px;
    }

    .mv_img img {
        height: 45px;
    }

    /*about*/
    .about_content {
        width: 750px;
    }

    .ab_txt {
        margin: 0 30px 50px 0;
    }

    .ab_bar {
        width: 70px;
    }

    .about_content img {
        width: 200px;
    }

    /*step*/
    .step_content {
        width: 750px;
    }

    .st_item {
        width: 240px;
    }

    .st_item_top {
        height: 260px;
    }

    .st_item_top img {
        width: 120px;
    }

    .st_item_bottom {
        width: 200px;
    }

    /*howto*/
    .howto_content {
        width: 750px;
    }

    .hc_item {
        width: 240px;
    }

    .hc_item img {
        height: 70px;
        margin: 20px 0;
    }

    .hc_txt {
        width: 200px;
    }

    .hc_txt p {
        line-height: 22px;
    }

    /*news_btn*/
    .nb_content {
        width: 700px;
    }

    /*footer*/
    .ftt_content {
        width: 750px;
    }

    .ftt_img {
        height: 240px;
    }

    .ftt_img img:first-child {
        width: 200px;
    }

    .ftt_img img:last-child {
        width: 230px;
    }

    .ftt_app_img {
        width: 240px;
        left: calc(50% - 120px);
    }

    .ftb_content {
        width: 750px;
    }
}





@media screen and (max-width: 767px) {
    /*header*/
    header {
        height: 90px;
        padding: 0 20px;
    }

    header a h1 .logo {
        width: 100px;
        display: block;
    }

    #menu_btn {
        margin-left: 30px;
    }

    .modal_scroll {
        padding: 0 20px;
    }

    .modal_header {
        height: 90px;
    }

    .modal_header img {
        width: 100px;
    }

    /*mainvisual*/
    #mainvisual {
        height: 400px;
    }

    .mainvisual_content {
        padding: 0 20px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .mv_txt {
        margin-bottom: 20px;
    }

    .mv_txt h2 {
        font-size: 28px;
    }

    .mv_img {
        width: 100%;
        justify-content: center;
    }

    .mv_img a:last-child {
        margin-left: 15px;
    }

    /*about*/
    .about_content {
        width: 450px;
        flex-direction: column;
        position: relative;
    }

    .ab_txt {
        width: 100%;
        margin: 0;
        padding-bottom: 130px;
    }

    .ab_title {
        margin-bottom: 30px;
    }

    .ab_txt h2 {
        font-size: 24px;
    }

    .about_content img {
        width: 150px;
        position: absolute;
        bottom: 0;
        z-index: -1;
    }

    /*step*/
    .step_content {
        width: 450px;
    }

    .st_items {
        flex-direction: column;
        align-items: center;
    }

    .st_item {
        width: 100%;
        margin-bottom: 30px;
    }

    .st_item:last-child {
        margin: 0;
    }

    .st_item_bottom {
        width: 80%;
    }

    .st_btn a {
        height: 60px;
        width: 300px;
        font-size: 24px;
    }

    /*howto*/
    .howto_content {
        width: 450px;
    }

    .hc_items {
        margin: 50px 0;
        flex-direction: column;
        align-items: center;
    }

    .hc_item {
        width: 100%;
        margin-bottom: 30px;
    }

    .hc_item:last-child {
        margin: 0;
    }

    .hc_item img {
        height: auto;
        width: 120px;
    }

    .hc_txt {
        width: 80%;
    }

    .howto_content a {
        height: 60px;
        width: 300px;
        font-size: 24px;
    }

    /*news_btn*/
    .nb_content {
        width: 400px;
    }

    .nb_btn {
        height: 60px;
    }

    .nb_btn img {
        height: 40px;
        width: 40px;
        top: 10px;
        right: 15px;
    }

    /*footer*/
    .ftt_content {
        width: 450px;
    }

    .ftt_content h2 {
        font-size: 28px;
    }

    .ftt_app {
        height: 50px;
        width: 335px;
    }

    .ftt_img {
        height: 155px;
    }

    .ftt_img img:first-child {
        width: 130px;
    }

    .ftt_img img:last-child {
        width: 150px;
    }

    .ftt_app_img {
        width: 140px;
        bottom: -70px;
        left: calc(50% - 70px);
    }

    .ftb_content {
        width: 450px;
        padding: 100px 0 0;
    }

    .showroom_logo {
        width: 250px;
    }

    .ftb_content ul {
        flex-wrap: wrap;
        width: 380px;
        margin: 40px auto 0;
    }

    .ftb_twitter, .ftb_facebook {
        height: 40px;
        width: 160px;
        padding-left: 20px;
    }

    .ftb_twitter img {
        width: 20px;
    }

    .ftb_facebook img {
        width: 11px;
    }

    .ftb_twitter p, .ftb_facebook p {
        margin-left: 15px;
        font-size: 16px;
    }
}





@media screen and (max-width: 500px) {
    h4 {
        font-size: 20px;
    }

    .br_sp {
        display: block;
    }

    /*mainvisual*/
    #mainvisual {
        height: 500px;
        background-image: url(../img/mainvisual_sp.png);
    }

    .mv_txt h2 {
        font-size: 24px;
    }

    .mv_img {
        margin-bottom: 20px;
    }

    .mv_img img {
        height: 46px;
    }

    .mv_img a:last-child {
        margin-left: 10px;
    }

    /*about*/
    .about_content {
        width: 300px;
        padding-top: 50px;
    }

    .ab_txt {
        padding-bottom: 80px;
    }

    .ab_title h4 {
        font-size: 20px;
    }

    .ab_bar {
        height: 8px;
        width: 60px;
        margin-top: 5px;
    }

    .ab_txt h2 {
        font-size: 20px;
    }

    .about_content img {
        width: 120px;
    }

    /*step*/
    .step_content {
        width: 90%;
        padding: 50px 0;
    }

    .st_title h4 {
        font-size: 24px;
    }

    .st_title h4 span {
        font-size: 36px;
        height: 50px;
        width: 50px;
        line-height: 50px;
        margin: 0 5px;
    }

    .st_items {
        margin: 30px 0;
    }

    .st_btn a {
        height: 50px;
        width: 240px;
        font-size: 20px;
    }

    /*howto*/
    .howto_content {
        width: 90%;
        padding: 50px 0;
    }

    .howto_content h4 {
        font-size: 20px;
    }

    .hc_items {
        margin: 30px 0;
    }

    .hc_item img {
        width: 90px;
    }

    .howto_content a {
        height: 60px;
        width: 90%;
        font-size: 20px;
    }

    /*news_btn*/
    .nb_content {
        width: 90%;
        padding: 70px 0;
    }

    .nb_btn {
        height: 60px;
    }

    .nb_btn img {
        height: 40px;
        width: 40px;
    }

    /*footer*/
    .ftt_content {
        width: 90%;
        padding-top: 50px;
    }

    .ftt_content h2 {
        font-size: 24px;
        margin: 0 auto 20px;
        width: 280px;
        line-height: 30px;
        font-weight: bold;
    }

    .ftt_app {
        height: 40px;
        width: 262px;
    }

    .ftt_app a:last-child {
        margin-left: 10px;
    }

    .ftt_img {
        height: 125px;
    }

    .ftt_img img:first-child {
        width: 100px;
    }

    .ftt_img img:last-child {
        width: 120px;
    }

    .ftt_app_img {
        width: 100px;
        left: calc(50% - 50px);
    }

    .ftb_content {
        width: 300px;
        padding: 90px 0 0;
    }

    .showroom_logo {
        width: 200px;
    }

    .ftb_content ul {
        width: 300px;
        margin: 20px auto 0;
        flex-direction: column;
    }

    .ftb_sns {
        margin: 20px 0;
    }

    .ftb_sns a:last-child {
        margin-left: 15px;
    }

    .ftb_twitter, .ftb_facebook {
        height: 30px;
        width: 120px;
        padding-left: 18px;
    }

    .ftb_twitter img {
        width: 15px;
    }

    .ftb_facebook img {
        width: 9px;
    }

    .ftb_twitter p, .ftb_facebook p {
        font-size: 12px;
        margin-left: 10px;
    }
}





@media screen and (max-width: 420px) {
    #mainvisual {
        height: 400px;
    }
}
