/*----------------- Fonts ---------------------*/
@font-face {
  font-family: Iowan;
  src: url("../fonts/IowanOldStBTRoman.ttf");
}
@font-face {
  font-family: Aga;
  src: url("../fonts/AGaramondPro-Regular.otf");
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
    font-family: Aga;
}
/*----------------- layout ---------------------*/
body {
    min-width: 1024px;
}
@media only screen and (max-width: 767px){
    body {
        min-width: auto;
        
    }
}

.l-container{
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;    
}
.page-lp{
    background: #000000;
}
.pc-only{
    display: block !important;
}
.sp-only{
    display: none !important;
}

@media only screen and (max-width: 767px){
    .l-container{
        max-width: 100%;    
    }
    .pc-only{
        display: none !important;
    }
    .sp-only{
        display: block !important;
    }
    .c-btn01.pc-only{
        display: none !important;
    }
}

/*----------------- component --------------------*/

/* button */
.c-btn01{
    font-size: 1.2rem;    
    border: 1px solid #fff;
    padding: 4px 0;    
    width: 134px;
    display: inline-block !important;
    text-align: center;
    position: relative; 
}
.c-btn01::before{
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;    
    left: 0;
    top: 50%;
}

.c-btn01--noBg{
    color: #fff;
    margin: -4px -4px 2px 24px;
}

.c-btn01--noBg::before{
    background: #fff;
}
.c-btn01--noBg:hover{
    color: #000;
    background: #fff;    
}
.c-btn01--noBg:hover{
    color: #000;
    background: #fff;    
}

.c-btn01--bgWhite{
    background: #fff;
	color: #000;
}
.c-btn01--bgWhite::before{    
    background: #000;
}
.c-btn01--bgWhite:hover{
    background: #000;
    color: #fff;    
}

/* title */
.c-title01{
    text-align: center;
    color: #fff;
}
.c-title01 .c-title01__lg{
    font-size: 5.4rem;
    line-height: 7.3rem;
    transition: 0.4s;
    font-family: Iowan;
}
.c-title01 .c-title01__sm{
    font-size: 1.8rem;
}
@media only screen and (max-width: 767px){
    .c-title01 .c-title01__lg{
        font-size: 2.7rem;
        line-height: 3.6rem;
    }
    .c-title01 .c-title01__sm{
        font-size: 1rem;
    }

}
 /* banner */
 .c-banner_bg {
    background-image: url('../images/banner.png');
    background-size: cover;
 }
.c-banner{   
    background-color: rgba(0, 0, 0, .3);
    padding: 79px 0 92px;
}
.c-banner .c-banner__txt{
    color: #fff;
    font-size: 3.2rem;
    text-align: center;
    padding-bottom: 32px;
}
.c-banner .c-banner__btn{
    width: 415px;
    color: #000;
    background: #fff;
    text-align: center;
    font-size: 2.4rem;
    line-height: 75px;
    cursor: pointer;
    display: block;
    transition: .3s;
    margin: 0 auto;
    position: relative;
    border: 1px solid #fff;
}
.c-banner .c-banner__btn:hover{
    color: #fff;
}
.c-banner .c-banner__btn::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: #333;    
    transform-origin: center center;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .c-banner .c-banner__btn:hover::before {
    transform: scale(1, 1);
    color: #fff;
  }

@media only screen and (max-width: 767px){
    .c-banner{
        background:url('../images/bannerSP.png');
        background-size: cover;
        padding: 40px 20px 45px;
    }
    .c-banner .c-banner__txt{
        font-size: 1.6rem;
    }
    .c-banner .c-banner__btn{
        width: 100%;
        font-size: 1.2rem;
        line-height: 36px;
    }
}
/*----------------- header --------------------*/

.c-header01{
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
}
.c-header01.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, .3);
    padding-bottom: 20px;
}
@media only screen and (max-width: 767px){
    .c-header01.fixed {
        position: static;
    }
    .c-header_menusp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
          align-items: center;
    }
    .c-header_menusp.fixed {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        padding: 20px;
        background: rgba(0, 0, 0, .3);
        z-index: 9999;
    }
}

.banner_fixed {
    position: fixed;
    bottom: 0;
    overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    z-index: -1;
}
.banner_fixed img {
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    font-family: 'object-fit:cover';
}

/* logo */
.c-header .c-header__logo{
    float: left;
}
/* nav */
.c-header .c-header__nav{
    float: right;
}
.c-header .c-header__nav .menu{    
    float: left;
    display: inline-flex;
}
.c-header .c-header__nav .menu li {
    padding-left: 15px;
}
.c-header .c-header__nav .menu li a{
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.c-header .c-header__nav .menu li a:hover{
    border-bottom: 2px solid #fff;
}

/* MV title */
.c-header .mv-title{
    text-align: center;
    padding: 200px 0 160px;
}
.c-header .mv-title .mv-title02{
    color: #fff;
    font-size: 1.4rem;
    padding: 17px 0 27px;
}
/* view-detail */
.viewDetail {
    width: 100%;
    position: absolute;
    z-index: 2;
    margin: -110px 0 0 0;
    text-align: center;
    -webkit-animation: arrow-jump 3s infinite; /* Safari 4+ */
  -moz-animation:    arrow-jump 3s infinite; /* Fx 5+ */
  -o-animation:      arrow-jump 3s infinite; /* Opera 12+ */
  animation:         arrow-jump 3s infinite; /* IE 10+, Fx 29+ */
}
@keyframes arrow-jump {
    0%   { opacity: 0;
        -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          -0-transform: translateY(0);
          transform: translateY(0);
    }
    50% { opacity: 1; 
          -webkit-transform: translateY(15px);
          -moz-transform: translateY(15px);
          -0-transform: translateY(15px);
          transform: translateY(15px);
    }
    100% { opacity: 0; 
          -webkit-transform: translateY(15px);
          -moz-transform: translateY(15px);
          -0-transform: translateY(15px);
          transform: translateY(15px);
    }
    
}
.c-header .mv-title .mv-title00 {
    font-size: 34px;
    color: #fff;
    margin-top: 10px;
}
@media only screen and (max-width: 767px){
    .c-header .mv-title .mv-title00 {
        font-size: 24px;
    }
    .c-header{
        min-height: 100vh;
        padding: 0 20px;
    }
    .c-header01{
        padding-top: 20px;
    }
    
    /* logo */
    .c-header .c-header__logo{
        float: left;
    }
    /* nav */
    .c-header .c-header__nav{
        display: none;
        width: 100%;
        float: none;        
        position: fixed;
        z-index: 9999;
        background: #fff; 
        left: 0;
        top: 60px;
    }
    .c-header .c-header__nav.open {
        display: block;
    }
    .c-header .c-header__nav .menu{ 
        width: 100%;   
        float: none;
        display: block;
        margin-top:  10px;   
    }
    .c-header .c-header__nav .menu li {
        padding-left: 0;
    }
    .c-header .c-header__nav .menu li a{
        color: #000;
        text-align: left;
        display: block;
        padding: 5px 15px;
        margin-bottom: 0;
        border-bottom: 1px solid #ddd;
    }
    .c-header .c-header__nav .menu li a:hover{
        border-bottom: 1px solid #ddd;
    }
    
    /* MV title */
    .c-header .mv-title{
        text-align: left;
        padding: 80px 0;
    }
    .c-header .mv-title .mv-title01 img{
        width: 70%;
        height: auto;
    }
    .c-header .mv-title .mv-title02{
        font-size: 1.3rem;
    }
    /* view-detail */
    .viewDetail {
        margin: -70px 0 0 0;
    }
    .viewDetail img{
        height: 200px;
    }
    /* menu SP */
    .menuSP {
        width: 35px;
        height: 26px;
         position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    
    .bar1, .bar2, .bar3 {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #fff;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .menuSP .bar1 {
        top: 7px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .menuSP .bar2 {
        opacity: 0;
        top: 13px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .menuSP .bar3 {
        top: 16px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .is-change .bar1 {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -1px;
        left: 5px;
    }

    .is-change .bar2 {
        width: 0%;
        opacity: 0;
    }
    .is-change .bar3 {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 24px;
        left: 5px;
    }
}


/*----------------- footer --------------------*/
.c-footer{
    text-align: center;
    padding: 54px 0;
}
.c-footer .c-footer__privacy{
    color: #fff;
    font-size: 1.4rem;
}
.c-footer .c-footer__privacy:hover{
    text-decoration: underline;
}
.c-footer .c-footer__copright{
    font-size: 1.2rem;
    padding-top: 45px;
    color: #fff;
}
@media only screen and (max-width: 767px){
    .c-footer{
        padding: 25px 0;
    }
    .c-footer .c-footer__copright{       
        padding-top: 20px;
        color: #fff;
    }
}
/*----------------- content --------------------*/
.p-lp{
    color: #fff;
    background: #000000;
    z-index: 1;
    padding-top: 200px;
}

@media only screen and (max-width: 767px){
    .p-lp {
        padding-top: 100px;
    }
}

/* lp01 */
.p-lp01{
    /*margin-top: -60px;*/
    /*padding: 68px 0 23px;*/
}
.p-lp01 .p-lp01__block{
    width: 983px;
    margin: 50px auto 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-lp01 .p-lp01__block .lp01Block-item{
    width: 50%;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 93px;  
    -webkit-box-sizing: border-box;
          box-sizing: border-box;  
}
.p-lp01 .p-lp01__block .lp01Block-item:nth-child(2n){
    padding-left: 30px;
}
.p-lp01 .p-lp01__block .lp01Block-item .lp01Block-img{
    padding: 13px 23px 0 0;
}

.p-lp01 .p-lp01__block .lp01Block-item .lp01Block-txt .title{
    font-size: 2.4rem;
    font-family: Iowan;
}
.p-lp01 .p-lp01__block .lp01Block-item .lp01Block-txt .txt{
    font-size: 1.8rem;
    line-height: 25px;
    padding-top: 5px;
}
@media only screen and (max-width: 767px){
    .p-lp01{
        background:url('../images/lp01_bgSP.png') center no-repeat ;
        background-size:  cover; 
    }
    .p-lp01 .p-lp01__block{
        width: 100%;
        padding: 0 20px;
        margin: 50px auto 0;
        overflow: hidden;
    }
    
    .p-lp01 .p-lp01__block .lp01Block-item{
        width: 100%;
        float: none;
        padding-bottom: 20px;    
    }
    .p-lp01 .p-lp01__block .lp01Block-item:nth-child(2n){
        padding-left: 0;
    }
    .p-lp01 .p-lp01__block .lp01Block-item .lp01Block-img{
        width: 30%;
        padding: 0 10px 0;
    }
    .p-lp01 .p-lp01__block .lp01Block-item .lp01Block-img img{
        width: 100%;
        height: auto;
    }
    .p-lp01 .p-lp01__block .lp01Block-item .lp01Block-txt{
        width: 70%;
    }
    
    .p-lp01 .p-lp01__block .lp01Block-item .lp01Block-txt .title{
        font-size: 1.8rem;
    }
    .p-lp01 .p-lp01__block .lp01Block-item .lp01Block-txt .txt{
        font-size: 1.2rem;
        line-height: 22px;
        padding-top: 5px;
    }
}

/* lp02 */

.p-lp02{
    padding: 165px 0 144px;
}
.p-slide {  
    width:990px;
    display:block;
    margin: 38px auto 0;
}
.p-slide__wrapper{
    position: relative;
}
.p-slide .p-slide_box {
    position: relative;
}
.p-slide .p-slide_box_bg { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}
.p-slide .p-slide_box_text { 
    width: 373px;
    position: absolute;
    right: 50px;
    bottom: 58px;
}
.p-slide .p-slide_box_text h3{ 
    font-size: 2.4rem;
}
.p-slide .p-slide_box_text p{ 
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 25px;
}
.p-slide .p-slide_box_text .slideBtn{
    width: 135px;
    font-size: 1.2rem;
    line-height: 28px;
    color: #000;
    background: #fff;
    display: block;
    text-align: center;    
}

.slick-prev, .slick-next{
    width: 40px !important;
    height: 138px !important;
    z-index: 1;
}
.slick-prev:before, .slick-next:before{
    content: '' !important;
}
.slick-prev{
    left: -15px !important;
    background:url('../images/click-prev.png') !important;
}
.slick-next{
    right: -15px !important;
    background:url('../images/click-next.png') !important;
}
.p-slide .slick-slider {
    margin-bottom: 0;
}
.p-slide .slick-dots{ 
width: auto;
bottom: 10px !important;    
right: 41px !important;
}
.p-slide .slick-dots li{ 
width: 5px;
bottom: 3px !important;
}
.p-slide .slick-dots li button{
    content: "";
    width: 5px;
    height: 5px;
    background: #ccc;
    color: transparent;
}
.p-slide .slick-dots li button:hover ,.p-slide .slick-dots li.slick-active button {
    background: #fff;
}
.p-slide .slick-dots li button:before {
    display: none !important;
}
.p-slide .action{
    display:block;
    margin: 18px auto;
    width:100%;
    text-align:center;
}
.p-slide .action a {
    width: 220px;
    font-size: 1.4rem;
    line-height: 50px;    
    margin-right: 30px;
    color:#fff;   
    /* background: #1a1a1a;     */
    display:inline-block;
}
.p-slide .action a:nth-child(4n) {
    margin-right: 0;
}
.p-slide .action a:hover{
    background: #1a1a1a;
}
@media only screen and (max-width: 767px){
    .p-lp02{
        padding: 80px 0 74px;
    }
    .p-slide {  
        width:100%;
        padding: 0 20px;
        display:block;
    }
    .p-slide__wrapper{
        position: unset;
        margin-bottom: 30px;
    }
    .p-slide .p-slide_box_text { 
        width: 100%;
        position: unset;
    }
    .p-slide .p-slide_box_text h3 { 
        font-size: 2rem;
        margin-top: 20px;
    }
    .p-slide .p-slide_box_text p { 
        font-size: 1.4rem;
        line-height: 22px;       
    }    
    .slick-prev, .slick-next{
        width: 20px !important;
        height: 69px !important;
    }   
    .slick-prev{
        left: 10px !important;
        background:url('../images/click-prevSP.png') !important;
    }
    .slick-next{
        right: 10px !important;
        background:url('../images/click-nextSP.png') !important;
        
    }
    .p-slide .action{
        display:none;
    } 
    .p-slide .slider-nav img{
        width: 100%;
        height: auto;
    }  
    .p-slide .slick-dots {
        bottom: 180px !important;
        right: 20px;
    }
}

/* Discover */
.p-discover .p-discover__title{
    text-align: center;
    padding: 30px 0 23px;
    font-size: 3.2rem;
}
.lp02List{
    width: 990px;
    margin: 0 auto;
    overflow: hidden;
}
.lp02List .lp02List-item {
    color: #fff;
    width: 223px;
    float: left;
    margin: 0 30px 30px 0;
}
.lp02List .lp02List-item:nth-child(4n) {
    margin-right: 0;
}
.lp02List .lp02List-item .lp02List-item__img{
    width: 223px;
    height: 135px;
}

.lp02List .lp02List-item .lp02List-item__txt{
    font-size: 1.6rem;
    line-height: 25px;
    margin-top: 18px;    
}

@media only screen and (max-width: 767px){
    .p-discover .p-discover__title{
        padding: 20px 0;
        font-size: 2rem;
    }
    .lp02List{
        width: 100%;
        padding: 0 10px;
    }
    .lp02List .lp02List-item {
        width: calc(50% - 14px);
        margin: 7px 7px 15px 7px;
    }
    .lp02List .lp02List-item:nth-child(4n) {
        margin-right: 0;
    }
    .lp02List .lp02List-item .lp02List-item__img, .lp02List .lp02List-item .lp02List-item__img img{
        width: 100%;
        height: auto;
    }    
    .lp02List .lp02List-item .lp02List-item__txt{
        font-size: 1.4rem;
        line-height: 22px;
        margin-top: 10px;    
    }
}

/* lp03 */
.p-lp03{
    padding: 168px 0 111px;   
}
.p-carModels{
    width: 990px;
    margin: 33px auto 0;
}
.p-carModels .p-car{
    overflow: hidden;
}
.p-carModels .carModels{
    width: calc(50% - 20px);
    float: left;
    margin: 0 40px 40px 0;
}
.p-carModels .carModels:nth-child(2n){
    margin-right: 0;
}
.p-carModels .carModels .carModels__img{
    height: 330px;
}
.p-carModels .carModels .carModels__img img{
    width: 100%;
}
.p-carModels .carModels .carName{
    text-align: center;
    font-size: 1.8rem;
    font-family: Iowan;
    margin: 30px 0 22px;
}
.p-carModels .carModels .carModels__detail{
    text-align: center;
}
.p-carModels .carModels .carModels__detail img{
    margin-right: 5px;
}
.p-carModels .carModels .carModels__detail span{
    margin: 0 20px;
}
@media only screen and (max-width: 767px){
    .p-lp03{
        padding: 80px 0 30px;   
    }
    .p-carModels{
        width: 100%;
        padding: 0 20px;
    }
    .p-carModels .carModels{
        width: 100%;
        float: left;
        margin: 0 0 40px 0;
    }
   
    .p-carModels .carModels .carModels__img, .p-carModels .carModels .carModels__img img{
        width: 100%;
        height: auto;
    }
    .p-carModels .carModels .carName{
        margin: 5px 0;
    }
    .p-carModels .carModels .carModels__detail{
        text-align: center;
    }
    .p-carModels .carModels .carModels__detail img{
        margin-right: 5px;
    }
    .p-carModels .carModels .carModels__detail span{
        margin: 0 20px;
    }
}
    
/* Amenities */
.p-amenities{
    margin: 0 auto;
}
.p-amenities .p-amenities__title{
    font-size: 2.4rem;
    text-align: center;
    margin: 27px 0;
}
.p-amenities_txt {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin-bottom: 27px;
}
.p-amenities .p-amenities__list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.p-amenities .p-amenities__list .p-amenities__item{
    margin: 0 16px 20px;
    float: left;
}

.p-amenities .p-amenities__list .amenities-img{
    width: 223px;
    height: 135px;
}
.p-amenities .p-amenities__list .amenities-name{
    font-size: 1.8rem;
    text-align: center;
    padding-top: 14px;
}

@media only screen and (max-width: 767px){
    .p-amenities .p-amenities__title{
        font-size: 2em;
        margin: 13px 0;
    }
    .p-amenities .p-amenities__list{
        display: block;
        overflow: hidden;        
    }    
    .p-amenities .p-amenities__list .p-amenities__item{
        width: calc(50% - 10px);
        margin: 0 5px;
                
    }    
    .p-amenities .p-amenities__list .amenities-img, .p-amenities .p-amenities__list .amenities-img img{
        width: 100%;
        height: auto;
    }
    .p-amenities .p-amenities__list .amenities-name{
        font-size: 1.4rem;        
    }
    
}

/* Usage Step */
.p-usageStep{
    margin-top: 142px;
}
.p-stepList{
    width: 830px;
    margin: 36px auto 0;
    overflow: hidden;
}
.p-stepList .stepList-item{
    display: flex;
    align-items: center;  
    padding: 45px 0 93px;  
}
.p-stepList .stepList-item .stepList-img{
    width: 415px;
    float: left;
    position: relative;
}
.p-stepList .stepList-item .stepList-img p{
    font-size: 4.8rem;
    font-family: Iowan;
    line-height: 1;    
    position: absolute;
    top: -60px;
}
.p-stepList .stepList-item .stepList-img p span{
    font-size: 7.2rem;
}

.p-stepList .stepList-item .stepList-txt{
    float: right;
    padding: 0 0 0 30px;
    line-height: 25px;    
}
.p-stepList .stepList-item .stepList-txt .title{
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.p-stepList .stepList-item .stepList-txt .txt p{
    font-size: 1.8rem;
    margin-bottom: 22px;
}
.p-stepList .stepList-item .txt-note{
    font-size: 1.4rem !important;
    line-height: 22px;
}

.p-stepList .stepList-item:nth-child(2n){
    display: -webkit-flex; /* Safari */
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
    display: flex;
    flex-direction: row-reverse;
}
.p-stepList .stepList-item:nth-child(2n) .stepList-img p{
    right: 0
}
.p-stepList .stepList-item:nth-child(2n) .stepList-txt{
    padding: 0 30px 0 0;  
}
@media only screen and (max-width: 767px){
    .p-usageStep{
        margin-top: 70px;
		padding: 0 20px;
    }
    .p-stepList{
        width: 100%;
        margin: 36px auto 0;
        overflow: hidden;
    }
    .p-stepList .stepList-item{
        display: block;        
        padding: 30px 0;  
    }
   
    .p-stepList .stepList-item .stepList-img{
        width: 100%;
        float: none;
    }
    .p-stepList .stepList-item .stepList-img img{
        width: 100%;
        height: auto;
    }
    .p-stepList .stepList-item .stepList-img p{
        font-size: 2.4rem;
        top: -30px;
    }
    .p-stepList .stepList-item .stepList-img p span{
        font-size: 3.5rem;
    }
    
    .p-stepList .stepList-item .stepList-txt{
        float: none;
        padding: 20px 0 0;   
    }

    .p-stepList .stepList-item .stepList-txt .title {
        font-size: 2rem;
    }
    .p-stepList .stepList-item .stepList-txt .txt p {
        font-size: 1.4rem;
    }

    .p-stepList .stepList-item:nth-child(2n){       
        display: block;
        flex-direction: unset;
    }
    .p-stepList .stepList-item:nth-child(2n) .stepList-img p{
        left: 0
    }
    .p-stepList .stepList-item:nth-child(2n) .stepList-txt{
        padding: 20px 0 0;;  
    }

}

/* lp04 */
.p-lp04{
    padding: 168px 0 0;
}
.p-tab{
    width: 830px;
    margin: 32px auto 0;
}
.p-tab .nav-tabs {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.p-tab .nav{
    width: 34%;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    display:block; 
    float: left;
    -webkit-box-sizing: border-box;
        box-sizing: border-box;
    padding: 14px 2px;
    border: 1px solid #000;
    border-bottom: 1px solid #fff;
}
.p-tab .info{display:none}
.p-tab .active{display:block}
.p-tab .current{
    border: 1px solid #fff;
    border-bottom: none;
}
.p-tab .tab-content{
    padding: 72px 0;
}
.p-QA{
    margin-bottom: 53px;
}
.p-QA .question{
    font-size: 2.4rem;
}
.p-QA .answer{
    background: #1a1a1a;
    font-size: 1.8rem;
    line-height: 26px;
    margin-top: 16px;
    padding: 27px 43px;
    display: flex;
}
.p-QA .answer span{
    font-size: 2.4rem;
    margin-right:  5px;
    
}
@media only screen and (max-width: 767px){
    .p-lp04{
        padding: 84px 0 0;
    }
    .p-tab{
        width: 100%;
        padding: 0 20px;
    }
    .p-tab .nav{
        width: 34%;
        font-size: 1rem;
    }
    .p-tab .tab-content{
        padding: 30px 0;
    }
    .p-QA{
        margin-bottom: 25px;
    }
    .p-QA .question{
        font-size: 1.6rem;
    }
    .p-QA .answer{
        background: #1a1a1a;
        font-size: 1.2rem;
        line-height: 22px;
        padding: 15px;
    }
    .p-QA .answer span{
        font-size: 1.8rem;
    }
}

/* Company */
.p-company .p-company__cont{
    width: 830px;
    margin: 61px auto 180px;
    overflow: hidden;
}
.p-company .p-company__cont .company-detail{
    width: 100%;
}
.p-company .p-company__cont .company-detail .detail01{
    font-size: 2.4rem;
    padding: 22px 0 7px;
}
.p-company .p-company__cont .company-detail .detail02{
    font-size: 1.2rem;
}
.p-company .p-company__cont .company-detail .detail02 a{
    color: #fff;
    font-size: 1.8rem;
    text-decoration: underline;
}
.p-company .p-company__cont .company-detail .detail03{
    font-size: 1.8rem;
    line-height: 25px;
    padding-top: 25px;
}

@media only screen and (max-width: 767px){
    .p-company .p-company__cont{
        width: 100%;
        padding: 0 20px;
        margin: 50px auto 70px;
    }
       .p-company .p-company__cont .company-detail .detail02 a{
        font-size: 1.4rem;
    }
    .p-company .p-company__cont .company-detail .detail03{
        font-size: 1.4rem;
        line-height: 22px;
        padding-top: 20px;
    }

}
.btn_top {
    z-index: 99;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}
.p-lp01 .p-lp01_bg {
    padding: 68px 0 23px;
    background: rgba(0, 0, 0, .3);
}
@media only screen and (max-width: 767px){
    .btn_top {
        right: 10px;
        bottom: 10px
    }
}
.p-lp01 {
    position: relative;
}
.p-lp01_movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.p-lp01_movie > video {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-aspect-ratio: 1920/1080) {
  .p-lp01_movie > video {
    height: 100%;
  }
}
@media screen and (min-aspect-ratio: 1920/1080) {
  .p-lp01_movie > video {
    width: 100%;
  }
}
.p-lp01_content {
    position: relative;
    z-index: 2;
}
