@charset "utf-8";

/* *************************************
// LP用 スタイル
************************************* */
.lp.page_single {
    padding: 0;
}

.lp section {
    padding: 80px 0;
}

@media (max-width: 767px) {

    .lp section {
        padding: 40px 0;
    }

}

.lp img {
    display: block;
}

.lp h2 {
    font-size: 3cqi;
    font-weight: bold;
    line-height: 1.6;
}

@media (max-width: 1029px) {
    .lp h2 {
        font-size: 30px;
    }
}


@media (max-width: 767px) {
    .lp h2 {
        font-size: 24px;
    }
}


.h001.header {
    padding: 10px;
}
.h001.header #inner-header {
    align-items: center;
}

@media (max-width: 1279px) {
    .h001.header {
        padding: 0;
    }

    .h001.header .menu_box {
        width: 300px;
        overflow-y: auto;
    }
    .h001.header .menu.open + .menu_box {
        left: calc(100% - 300px);
    }
}

@media (max-width: 767px) {
    .h001.header .menu_box {
        width: 100%;
    }
    .h001.header .menu.open + .menu_box {
        left: 0;
    }

}


#container {
    padding-top: 0;
}


/* メインビジュアル */
.lp section#main_visual {
    position: relative;
    z-index: 0;
    padding: 0;
}
.lp #main_visual > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.lp #main_visual .main_visual_text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
}

.lp #main_visual .main_visual_text h1 {
    font-size: 5cqi;
    font-weight: 900;
}

/* メインその2 */

.mv001 {
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    background: #000;
    position: relative;
    z-index: 0;
    padding: 0!important;
}

.mv001 .mv001_contents {
    width: 30%;
    position: relative;
    color: #000;
    padding: 0 20px;
    background-image: linear-gradient(125deg, #ffc30c 0, #ffc30c 50%, #ffb500 50%, #ffb500 100%);
    z-index: 2;
}
.mv001 .mv001_contents > .inner {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
.mv001 .mv001_contents .mv001_text {
    text-align: left;
    font-weight: bold;
    letter-spacing: 3px;
    color: #fff;
    white-space: nowrap;
    font-size: max(5vw, 36px);
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    line-height: 1.5;
    
}
.mv001 .mv001_contents .subtext {
    margin-top: 40px;
    line-height: 2;
    letter-spacing: 2px;
    font-weight: 500;
}

.swiper{
  height: 100%;
  width: 35%;
  margin: 0;
}
/* スライドの動き等速 */
.swiper-wrapper {
    transition-timing-function: linear!important;
}
.swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
.swiper .swiper-slide {
    position: relative;
}
.swiper .swiper-slide:after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.4;
    width: 100%;
    height: 100%;
}

@media (max-width: 1029px) {

    .mv001 {
        position: relative;
    }
    .mv001:after {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        /*メインビジュアルのスライダーがあるとスワイプでページスクロールできないため、擬似要素でフィルターしてスクロールできるようにしてます*/
    }

    .mv001 .mv001_contents {
        position: absolute;
        z-index: 10;
        top: auto;
        transform: none;
        max-height: 100%;
        height: auto;
        padding: 30px 20px;
        width: 100%;
        bottom: 0;
        background:transparent;
    }
    .mv001 .mv001_contents > .inner {
        position: static;
        transform: none;
    }
    .mv001 .mv001_contents .mv001_text {
        font-size: 50px;
    }
    .mv001 .mv001_contents .subtext {
        line-height: 1.8;
        padding: 20px;
        color: #fff;

    }

    .swiper {
        width: 50%;
        z-index: -1;
    }

}

@media (max-width: 767px) {
    .mv001 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 60vh auto;
        height: auto;
    }


    .mv001 .mv001_contents {
        position: static;
        width: 100%;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        transform: none;
        background-image: linear-gradient(125deg, #ffc30c 0, #ffc30c 50%, #ffb500 50%, #ffb500 100%);
    }
    .mv001 .mv001_contents .mv001_text {
        text-align: left;
        font-size: 35px;
    }
    .mv001 .mv001_contents .subtext {
        margin-top: 0;
        color: #000;
        padding-left: 0;
        padding-right: 0;
    }
    .mv001 .mv001_contents .subtext br {
        display: none;
    }

    .swiper {
        height: 100%;
        width: 100%;
    }
    .swiper1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .swiper2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

}



/* こんなお悩み */
.lp #worries {
    padding-bottom: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.lp #worries:after {
    content: '';
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: calc(100% + 200px);
    height: 350px;
    opacity: 0.3;
    background: var(--main-grade);
    z-index: -1;
    border-radius: 50% 50% 0 0 / 200px 200px 0 0;
}


.lp #worries h2 {
    text-align: center;
    margin-bottom: 50px;
    background: #333;
    color: #fff;
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    position: relative;
}
.lp #worries h2:after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background-color: #333;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    z-index: 1;
}
.lp #worries .worries {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lp #worries .worries:after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background-color: var(--color-green);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    z-index: 1;
}

.lp #worries .worries ul > li {
    position: relative;
    z-index: 0;
    font-size: 20px;
    padding-left: 2em;
}
.lp #worries .worries ul > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5em;
    height: 1.5em;
    background-color: var(--color-green);
    border-radius: 50%;
    z-index: 1;
}
.lp #worries .worries ul > li:after {
    content: '';
    position: absolute;
    left: 0.45em;
    top: 0.4em;
    transform: rotate(45deg);
    height: 0.9em;
    width: 0.6em;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    z-index: 2;
}
.lp #worries .worries ul > li:not(:last-child) {
    margin-bottom: 15px;
}

.lp #worries .answer_content {
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 20px 60px;
    align-items: end;
}
.lp #worries .answer_content > div {
    width: 100%;
}
.lp #worries .answer_content > .text {
    font-size: 20px;
    margin-bottom: 50px;
}

.lp #worries .answer_title {
    font-size: min(3.5cqi, 50px);
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 50px;
}

.lp #worries .answer_content > .text p span {
    font-weight: bold;
    background: #eda230;
    padding: 0 8px;
    white-space: nowrap;
}

.lp #worries .answer_content > .image > img {
    width: 100%;
}

@media (max-width: 1029px) {

    .lp #worries .worries {
        width: 90%;
        margin-inline: auto;
    }

    .lp #worries .answer_content {
        grid-template-columns: 50% 1fr;
        gap: 20px 40px;
    }

    .lp #worries .answer_title { 
        font-size: 30px;
    }

    .lp #worries .answer_content > .text p br.pc {
        display: none;
    }
}

@media (max-width: 767px) {

    .lp #worries:after {
        height: 500px;
    }

    .lp #worries .worries {
        width: 100%;
    }

    .lp #worries .worries ul > li {
        font-size: 16px;
    }

    .lp #worries .answer_content {
        grid-template-columns: 100%;
    }
    .lp #worries .answer_title {
        font-size: 25px;
        text-align: center;
    }
    .lp #worries .answer_content > .text {
        font-size: 16px;
        margin-bottom: 0;
    }

    .lp #worries .answer_content > .image > img {
        height: 200px;
    }
}


/* ベネフィット */
.lp #benefit {
    background-image: linear-gradient(125deg, #ffc30c 0, #ffc30c 50%, #ffb500 50%, #ffb500 100%);
}

.lp #benefit h2 {
    text-align: center;
    margin-bottom: 50px;
}

.lp #benefit .benefit_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 40px;
}

.lp #benefit .benefit_list > .item {
    width: 80%;
    padding: 20px 40px;
    background: #fff;
    display: grid;
    align-items: center;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    border-radius: 20px;
}
.lp #benefit .benefit_list > .item:nth-child(odd) {
    justify-self: start;
}
.lp #benefit .benefit_list > .item:nth-child(even) {
    justify-self: end;
}
.lp #benefit .benefit_list > .item .image {
    width: 100%;
    position: relative;
    z-index: 0;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lp #benefit .benefit_list > .item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.4;
}

.lp #benefit .benefit_list > .item .image > span.text1 {
    font-weight: bold;
    font-size: 20px;
}
.lp #benefit .benefit_list > .item .image > span.text2 {
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 
        #fff 2px 0px,  #fff -2px 0px,
        #fff 0px -2px, #fff 0px 2px,
        #fff 2px 2px , #fff -2px 2px,
        #fff 2px -2px, #fff -2px -2px,
        #fff 1px 2px,  #fff -1px 2px,
        #fff 1px -2px, #fff -1px -2px,
        #fff 2px 1px,  #fff -2px 1px,
        #fff 2px -1px, #fff -2px -1px;
        color: #fe898b;
}

.lp #benefit .benefit_list > .item .text {
    font-size: 20px;
    font-weight: bold;
}
.lp #benefit .benefit_list > .item .text span.color {
    color: #fff;
    background-color: var(--color-green);
    padding: 0 10px;
    white-space: nowrap;
}
.lp #benefit .benefit_list > .item .text span.big {
    font-size: 150%;
}

@media (max-width: 1029px) {

    .lp #benefit .benefit_list > .item {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .lp #benefit .benefit_list > .item {
        padding: 20px;
        grid-template-columns: 100%;
    }
    .lp #benefit .benefit_list > .item .image {
        width: 50%;
        margin-inline: auto;
    }
    .lp #benefit .benefit_list > .item .text {
        font-size: 16px;
        text-align: center;
    }
    .lp #benefit .benefit_list > .item .text span.big {
        font-size: 130%;
    }

}


/* お客様の声 */
.lp #voice h2 {
    text-align: center;
    margin-bottom: 50px;
}

.lp #voice .voice_list {

}
.lp #voice .voice_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.lp #voice .voice_list > .item {
    width: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
}
.lp #voice .voice_list > .item .text {
    grid-row: 2 / 3;
    padding: 20px;
    position: relative;
    padding-top: 50px;
}
.lp #voice .voice_list > .item .text:before {
    content: "";
    display: block;
    width: 40px;
    height: 30px;
    clip-path: polygon(100% 0, 0 0, 49% 100%);
    background: var(--color-green);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
}
.lp #voice .voice_list > .item .image {
    width: 60%;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}
.lp #voice .voice_list > .item .image > img {
    background: #ccc;
    width: 100%;
    aspect-ratio: 1;
    grid-row: 1 / 2;
} 

@media (max-width: 767px) {

    .lp #voice .voice_list {
        grid-template-columns: 100%;
    }

}


/* レンタル発電機一例 */
.lp #products {
    position: relative;
    z-index: 0;
}
.lp #products:after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
}
.lp #products > img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
}

.lp #products h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.lp #products .products_list .slick-track {
    display: flex;
    align-items: stretch;
}

.lp #products .products_list .item {
    padding: 0 15px;
    height: auto;
}
.lp #products .products_list .item .box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.lp #products .products_list .box .image {
    margin-bottom: 15px;
}
.lp #products .products_list .box .image > img {
    width: 100%;
    aspect-ratio: 1;

    object-fit: cover;
}
.lp #products .products_list .box .text {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    line-height: 1.5;
}
.lp #products .products_list .box .text_line {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: baseline;
    gap: 0 1em;
}
.lp #products .products_list .box .text_line .title {
    background: #333;
    color: #fff;
    text-align: center;
    letter-spacing: 5px;
}


/* ご依頼の流れ */
.lp #flow {
    background: #f3f2df;
}

.lp #flow h2 {
    text-align: center;
    margin-bottom: 50px;
}

.lp #flow .flow_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 90%;
    margin-inline: auto;
    width: 1280px;
}   

.lp #flow .flow_list > .item {
    width: 250px;
}
.lp #flow .flow_list > .item .circle {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid var(--color-green);
    display: grid;
    align-content: center;
    background: #fff;
    position: relative;
    padding-top: 20px;
}

.lp #flow .flow_list > .item .circle > .step {
    position: absolute;
    background: var(--color-green);
    color: #fff;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
}
.lp #flow .flow_list > .item .circle > .step > span {
    display: block;
    line-height: 1;
}
.lp #flow .flow_list > .item .circle > .step > span.txt {

}
.lp #flow .flow_list > .item .circle > .step > span.num {
    font-size: 30px;
    font-weight: bold;
}

.lp #flow .flow_list > .item:not(:last-child) .circle:after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #333;
    z-index: 1;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}


.lp #flow .flow_list > .item .image {
    width: auto;
    height: 90px;
    margin: 0 auto 10px;
}
.lp #flow .flow_list > .item .image > img {
    width: auto;
    height: 90px;
    max-width: 110px;
    filter: invert(58%) sepia(9%) saturate(2380%) hue-rotate(105deg) brightness(104%) contrast(88%);
}

.lp #flow .flow_list > .item h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    min-height: 3em;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 767px) {

    .lp #flow .flow_list > .item:not(:last-child) .circle:after {
        left: 50%;
        top: calc(100% + 15px);
        transform: translateX(-50%); 
        clip-path: polygon(50% 100%, 100% 0, 0 0);
        height: 20px;
    }
}


/* よくあるご質問 */
.lp #faq_contents h2 {
    text-align: center;
    margin-bottom: 50px;
}

.lp #lp_form {
    background-image: linear-gradient(125deg, #ffc30c 0, #ffc30c 50%, #ffb500 50%, #ffb500 100%);
}
.lp #lp_form h2 {
    text-align: center;
    margin-bottom: 40px;
}
.lp #lp_form .box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

.lp #lp_form .box.tel {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 40px;
}

.lp #lp_form .box.tel .title {
    font-size: 20px;
    font-weight: bold; 
    line-height: 1.5;    
}

.lp #lp_form .box.tel .tel_number {
    font-size: 45px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1;
    white-space: nowrap;
}
.lp #lp_form .box.tel .tel_number > img {
    width: auto;
    height: 1em;
}



@media (max-width: 767px) {

    .lp #lp_form .box.tel {
        padding: 15px;
        flex-wrap: wrap;
    }
    .lp #lp_form .box.tel .tel_number {
        font-size: 35px;
    }
}



/* 発電機.jp */
.lp #lp_bottom .two_in_one {
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 40px;
    align-items: center;
}

.lp #lp_bottom .two_in_one > div {
    width: 100%;
}
.lp #lp_bottom h2 {
    margin-bottom: 20px;
}
.lp #lp_bottom h2 > img {
    max-width: 100%;
    width: 350px;
}

.lp #lp_bottom .two_in_one > div.image > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}


.lp #lp_bottom .btn_box {
    display: flex;
    justify-content: center;
}

.lp #lp_bottom .btn_box > a.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 100vh;
    color: #fff;
    padding: 0.75em 2em;
    font-weight: bold;
    transition: 0.3s;
    width: fit-content;
    background: #333333;
    margin-top: 50px;
}

.lp #lp_bottom .btn_box > a.btn:after {
    content: '▶';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    background-color: #fff;
    color: var(--main-color02);
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    padding: 7px;
}

@media (max-width: 767px) {

    .lp #lp_bottom .two_in_one {
        grid-template-columns: 100%;;
    }
    .lp #lp_bottom h2 > img {
        margin: auto;
        width: 250px;
    }
    .lp #lp_bottom p br.pc {
        display: none;
    }


}


/* フッター */
.f001 .info {
    text-align: center;
    margin: 0;
    width: 100%;
}
.f001 .info a {
    color: #fff;
}



/*固定*/
.fixed_contact {
    position: fixed;
    top: 10%;
    right: 0;
    z-index: 99;
}
.fixed_contact > a {
    background: var(--color-green);
    color: #fff;
    writing-mode: vertical-lr;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    font-size: 25px;
    font-weight: normal;
    letter-spacing: 3px;
    font-weight: bold;
}
.fixed_contact > a:before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background-image: url(../images/common/icon_pplane.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 767px) {

    .fixed_contact {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .fixed_contact > a {
        width: 100%;
        writing-mode: horizontal-tb;
        padding: 10px 0;
        font-size: 20px;
        gap: 10px;
    }

}