@charset "UTF-8";

/*============================
loading
============================*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    background-color: #00c8c8;
}

.loader,
.loader:after {
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -30px;
}

.loader {
    position: relative;
    text-indent: -9999em;
    border-top: 5px solid #333;
    border-right: 5px solid #333;
    border-bottom: 5px solid #333;
    border-left: 5px solid #fff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*============================
トップ共通
============================*/

/*============================
top_img
============================*/

.flex {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#top_img {
    position: relative;
}

#catch {
    position: absolute;
    bottom: 0;
    z-index: 10;
    color: #fff;
    padding-left: 60px;
}

#catch h1 {
    font-size: 130px;
    line-height: 1;
}

#catch h1 .ja {
    font-size: 100px;
    display: block;
    margin-bottom: 20px;
}

#zoom {
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 768px;
}

/*IE対応用(ガクつき防止)*/

.zs-enabled .zs-slideshow .zs-slides .zs-slide {
    transform: scale(1.2, 1.2) rotate(0.1deg);
}

@media only screen and (max-width: 768px) {

    #catch {
        padding-left: 10px;
    }

    #catch h1 {
        font-size: 40px;
    }

    #catch h1 .ja {
        font-size: 28px;
    }

    #zoom {
        height: 70vh;
        min-height: auto;
    }

}


/*============================
container
============================*/

.container {
    position: relative;
}

.primary {
    width: 100%;
    float: none;
}

.primary > article {
    padding: 80px 0 80px;
}

.primary .inner {
    width: 1040px;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    .primary > article {
        padding: 50px 0;
    }

    .primary .inner {
        width: 90.625%;
    }
}

/*============================
rvstation
============================*/

#rvstation {
    padding-bottom: 0;
}

#rvstation .read {
    /*
    padding-top: 300px;
    background: url(../images/home/rv_bg.jpg) no-repeat left top #fff;
    background-size: 90%;
*/
}

#rvstation .read .photo {
    width: 100%;
    background: linear-gradient(90deg, #eee 0%, #eee 50%, #fff 50%, #fff 100%);
    padding-bottom: 103px;
}

#rvstation .read .photo img {
    width: 75%;
}

#rvstation .read .inner {
    overflow: visible;
    margin-top: -390px;
}

#rvstation .read .box {
    width: 710px;
    margin: 0 0 0 auto;
    color: #fff;
}

#rvstation .read .box h2 {
    font-size: 106px;
    line-height: 0.7;
    color: #00c8c8;
}

#rvstation .read .box .text {
    background-color: #00c8c8;
    padding: 50px 0 60px 60px;
    position: relative;
    z-index: 10;
}

#rvstation .read .box .text::after {
    content: "";
    display: block;
    background-color: #00c8c8;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -50%;
}

#rvstation .read .box .text p {
    font-size: 18px;
    font-weight: 600;
}

#rvstation .read .box .text p.catch {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 30px;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
}

#rvstation .problem {
    background-color: #eee;
    padding: 100px 0 60px;
    position: relative;
}

#rvstation .problem::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #eee;
}

#rvstation .problem .question {
    background-color: #fff;
    padding: 60px;
}

#rvstation .problem .question h3 {
    margin-top: 0;
    border-left: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
    color: #00c8c8;
    font-size: 28px;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
}

#rvstation .problem .question ul.flex {
    grid-row-gap: 30px;
}

#rvstation .problem .question ul li {
    position: relative;
    padding-left: 95px;
    height: 75px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

#rvstation .problem .question ul li:nth-child(1),
#rvstation .problem .question ul li:nth-child(4) {
    width: 214px;
}

#rvstation .problem .question ul li:nth-child(2),
#rvstation .problem .question ul li:nth-child(5) {
    width: 295px;
}

#rvstation .problem .question ul li:nth-child(3),
#rvstation .problem .question ul li:nth-child(6) {
    width: 365px;
}

#rvstation .problem .question ul li::before {
    content: '';
    display: block;
    width: 75px;
    height: 75px;
    background: url(../rv-station/images/problem/icon_consultation.jpg) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

#rvstation .problem .question ul li.black_tank::before {
    background-image: url(../rv-station/images/problem/icon02.jpg);
}

#rvstation .problem .question ul li.power_supply::before {
    background-image: url(../rv-station/images/problem/icon03.jpg);
}

#rvstation .problem .question ul li.baggage::before {
    background-image: url(../rv-station/images/problem/icon04.jpg);
}

#rvstation .problem .question ul li.no_place::before {
    background-image: url(../rv-station/images/problem/icon05.jpg);
}

/*追加*/
#rvstation .problem .question ul li.car_wash::before {
    background-image: url(../rv-station/images/problem/icon06.jpg);
}

#rvstation .problem .question ul li.melting_snow::before {
    background-image: url(../rv-station/images/problem/icon09.jpg);
}

#rvstation .problem .question ul li.diy::before {
    background-image: url(../rv-station/images/problem/icon11.jpg);
}

@media only screen and (max-width: 768px) {

    #rvstation {
        padding-top: 40px;
    }

    #rvstation .read {
        margin-bottom: 40px;
    }

    #rvstation .read .photo {
        padding-bottom: 0;
        background: none;
    }

    #rvstation .read .photo img {
        width: 90%;
    }

    #rvstation .read .inner {
        margin-top: -50px;
    }

    #rvstation .read .box {
        width: 95%;
    }

    #rvstation .read .box h2 {
        font-size: 50px;
    }

    #rvstation .read .box .text {
        padding: 20px 0px 30px 30px;
    }

    #rvstation .read .box .text::after {
        content: "";
        display: block;
        background-color: #00c8c8;
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        right: -50%;
    }

    #rvstation .read .box .text p {
        font-size: 16px;
        margin-top: 10px;
    }

    #rvstation .read .box .text p.catch {
        font-size: 22px;
        line-height: 1.4;
    }

    #rvstation .problem {
        padding: 40px 0 40px;
    }

    #rvstation .problem .question {
        padding: 20px;
    }

    #rvstation .problem .question h3 {
        margin-bottom: 30px;
        font-size: 20px;
    }

    #rvstation .problem .question ul.flex {
        grid-row-gap: 20px;
    }

    #rvstation .problem .question ul li {
        padding-left: 70px;
        margin-right: 0;
        min-height: 55px;
        height: auto;
    }

    #rvstation .problem .question ul li:nth-child(1),
    #rvstation .problem .question ul li:nth-child(4) {
        width: 100%;
    }

    #rvstation .problem .question ul li:nth-child(2),
    #rvstation .problem .question ul li:nth-child(5) {
        width: 100%;
    }

    #rvstation .problem .question ul li:nth-child(3),
    #rvstation .problem .question ul li:nth-child(6){
        width: 100%;
    }

    #rvstation .problem .question ul li::before {
        width: 55px;
        height: 55px;
    }
}


/*============================
rvstation2
============================*/

#rvstation2 {
    background: url(../images/home/rvstation2_bg.jpg) no-repeat center center;
    background-size: cover;
}

#rvstation2 .inner {
    overflow: visible;
}

#rvstation2 h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 38px;
    color: #fff;
}

#rvstation2 h2 .eng {
    font-size: 60px;
    color: #ffd306;
    margin: 0 20px;
}

#rvstation2 .box {
    padding: 60px;
    background-color: #fff;
    position: relative;
}

#rvstation2 .box::before {
    content: '業界初';
    display: block;
    font-size: 35px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    text-align: center;
    line-height: 160px;
    color: #ff3232;
    width: 160px;
    height: 160px;
    background-color: #ffd73b;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: 1;
}

#rvstation2 .box .photo {
    width: 370px;
    height: 550px;
}

#rvstation2 .box .photo img {
    width: 100%;
}

#rvstation2 .box .text {
    width: 530px;
}

#rvstation2 .box .text h3 {
    font-size: 28px;
    color: #00c8c8;
    line-height: 1.3;
    margin-bottom: 30px;
}

#rvstation2 .box .text p {
    margin-top: 0;
    font-weight: bold;
}

#rvstation2 .box .text ul {
    margin-top: 30px;
    align-items: stretch;
    grid-row-gap: 10px;
}

#rvstation2 .box .text ul li {
    width: 260px;
    background-color: #00c8c8;
    padding: 10px 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#rvstation2 .box .text ul li:last-child {
    margin-bottom: 0;
}

#rvstation2 .box .text h4 {
    padding: 10px;
    margin: 20px 0 10px;
    font-size: 18px;
    font-weight: bold;
    border-left: none;
    color: #fff;
    background-color: #00c8c8;
    text-align: center;
    position: relative;
}

#rvstation2 .box .text h4::before {
    content: '\f157';
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    margin-right: 10px;
}

#rvstation2 .box .text .info tr {
    padding-top: 10px;
}

#rvstation2 .box .text .info th {
    width: 230px;
    padding: 10px 0;
}

#rvstation2 .box .text .info td {
    width: 300px;
    padding: 10px 0 10px 20px;
}

#rvstation2 .box .text .info td p {
    margin-top: 10px;
    font-size: 13px;
    position: relative;
    padding-left: 16px;
}

#rvstation2 .box .text .info td p:before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

#rvstation2 .link {
    padding-top: 40px;
}

#rvstation2 .link li a {
    background-color: transparent;
    border: 3px solid #fff;
}

@media only screen and (max-width: 768px) {

    #rvstation2 h2 {
        margin-bottom: 20px;
        font-size: 20px;
    }

    #rvstation2 h2 .eng {
        font-size: 30px;
        margin: 0 10px;
    }

    #rvstation2 .box {
        padding: 20px;
    }

    #rvstation2 .box::before {
        font-size: 22px;
        line-height: 90px;
        width: 90px;
        height: 90px;
        top: -20px;
        right: -10px;
    }

    #rvstation2 .box .photo {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    #rvstation2 .box .photo img {
        width: 100%;
        height: 0;
        padding-top: 71.64%;
        background: url(../images/home/photo01_sp.jpg) no-repeat center center;
        background-size: 100%;
    }

    #rvstation2 .box .text {
        width: 100%;
    }

    #rvstation2 .box .text h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    #rvstation2 .box .text ul {
        margin-top: 20px;
    }

    #rvstation2 .box .text ul li {
        width: 100%;
    }

    #rvstation2 .box .text h4 {
        padding: 10px;
        margin: 20px 0 10px;
    }

    #rvstation2 .box .text .info tr:first-child {
        padding-top: 0;
    }

    #rvstation2 .box .text .info th {
        width: 340px;
    }

    #rvstation2 .box .text p.note {
        margin-top: 10px;
        font-size: 13px;
    }

    #rvstation2 .link {
        padding-top: 20px;
    }

    #rvstation2 .link li a {
        background-color: transparent;
        border: 3px solid #fff;
    }
}

/*============================
gallery
============================*/

.gallery {
    margin: 40px 0;
}

.gallery-wrap {
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.gallery-list {
    display: flex;
    list-style: none;
    animation: infinity-scroll-left 95s infinite linear 0.5s both;
}


/*
右から左へ
----------------------------*/

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.gallery-item {
    width: calc(100vw / 3);
    padding-right: 40px;
}

.gallery-item > img {
    width: 100%;
}

@media only screen and (max-width: 768px) {

    .gallery-item {
        width: calc(160vw / 3);
        padding-right: 20px;
    }

}


/*============================
custom
============================*/

#custom {
    padding-bottom: 0;
    background-color: #eee;
    margin-top: 260px;
}

#custom .inner {
    position: relative;
    overflow: visible;
}

#custom h2 {
    color: #00c8c8;
    font-size: 108px;
    font-family: 'Ubuntu';
    line-height: 1;
    position: absolute;
    left: 0;
    top: -245px;
}

#custom h2 .ja {
    font-size: 38px;
    display: block;
    padding-top: 30px;
}

#custom h3 {
    color: #00c8c8;
    font-size: 38px;
    line-height: 1;
}

#custom .text {
    width: 520px;
    margin-left: auto;
}

#custom .text p {
    margin-top: 0;
    font-size: 18px;
    font-weight: 500;
}

#custom .service {
    margin-top: 60px;
}

#custom .service a {
    margin-bottom: 40px;
}

#custom .service a .photo {
    width: 500px;
    height: 320px;
}

#custom .service a .photo img {
    width: 100%;
}

#custom .service a h3 {
    color: #fff;
    background-color: #00c8c8;
    font-size: 18px;
    padding: 15px 20px;
    position: relative;
}

#custom .service a h3::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: '\f061';
    display: block;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    line-height: 10px;
    color: #fff;
    background-color: #00b0b0;
    z-index: 10;
    padding: 20px;
}

@media only screen and (max-width: 768px) {
    #custom {
        margin-top: 100px;
        padding-bottom: 40px;
    }

    #custom h2 {
        font-size: 40px;
        top: -110px;
    }

    #custom h2 .ja {
        font-size: 22px;
        padding-top: 0;
    }

    #custom h3 {
        font-size: 38px;
        line-height: 1;
    }

    #custom .text {
        width: 100%;
        padding-top: 10px;
    }

    #custom .text p {
        font-size: 16px;
    }

    #custom .service {
        margin-top: 20px;
    }

    #custom .service a {
        margin-bottom: 20px;
    }

    #custom .service a .photo {
        width: 100%;
        height: auto;
    }

    #custom .service h3 {
        padding: 15px 15px;
    }

    #custom .service a:first-of-type h3 {
        line-height: 1.6;
    }

    #custom .service a:first-of-type h3::after {
        line-height: 47px;
    }
}


/*============================
profile
============================*/

#profile {
    background-color: #00c8c8;
}

#profile .inner {
    background-color: #fff;
    padding: 50px 60px;
}

#profile .greeting .photo {
    width: 320px;
    height: 260px;
}

#profile .greeting .photo img {
    width: 100%;
}

#profile .greeting .text {
    width: 570px;
}

#profile .greeting .text p {
    font-size: 18px;
    font-weight: 500;
}

#profile .greeting .text p.catch {
    color: #00c8c8;
    font-size: 28px;
    font-weight: 400;
    font-family: "RocknRoll One", sans-serif;
}

#profile .greeting .text p.representative {
    text-align: right;
    font-size: 16px;
}

#profile .greeting .text p.representative .name {
    font-size: 20px;
}

#profile .flex {
    margin-top: 30px;
}

#profile .info {
    width: 450px;
}

#profile .info th {
    padding: 10px;
}

#profile .info td {
    padding: 10px 0 10px 20px;
}

@media only screen and (max-width: 768px) {

    #profile .inner {
        padding: 40px 20px;
    }

    #profile .greeting .photo {
        width: 100%;
        height: auto;
    }

    #profile .greeting .text {
        width: 100%;
    }

    #profile .greeting .text p {
        font-size: 16px;
    }

    #profile .greeting .text p.catch {
        font-size: 22px;
        margin-top: 10px;
    }

    #profile .flex {
        margin-top: 0;
    }

    #profile .info {
        width: 100%;
        margin-top: 40px;
    }

    #profile .info:not(:first-child) {
        margin-top: 20px;
    }

    #profile .info th {
        padding: 10px;
    }

    #profile .info td {
        padding: 10px 0 10px 20px;
    }
}
