@charset "UTF-8";

/*====================================
	common
====================================*/
h2.title,
h2.title2 {
    color: #00164F;
}

/* オーバーレイのデフォルト状態 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCA510;
    z-index: 99999;
    transform: translateY(50%);
    transition: transform 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay.show {
    transform: translateY(0);
}

.overlay.exit {
    transform: translateY(-100%);
}

.overlay .wrap {
    text-align: center;
}

.overlay .wrap h2 {
    font-size: 84px;
    justify-content: center;
}


.bg_o {
    position: relative;
    z-index: 3;
    padding-top: 530px;
    padding-bottom: 175px;
    /* padding-top: 27vw; */
    /* padding-bottom: 12vw; */
    background: url(../img/bg_o.svg) no-repeat top center/cover;
    margin-top: -450px;
    /* margin-top: -400px; */
    /* margin-top: -23vw; */
}

#breadcrumbs {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 400;
    box-sizing: border-box;
    position: relative;
}

#breadcrumbs p {
    padding: 24px 0;
}

#breadcrumbs a,
#breadcrumbs span {
    color: #000;
}

.recruit #breadcrumbs a,
.recruit #breadcrumbs span {
    color: #fff;
}

.recruit #breadcrumbs::before {
    content: '';
    position: absolute;
    left: 0;
    top: -360px;
    z-index: 3;
    background: url(../img/rec_ttl.svg) no-repeat center;
    background-size: 100%;
    width: 100%;
    height: 345px;
}

/*====================================
    fv
====================================*/
#fv.pages {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#fv.pages .text_area {
    position: absolute;
    left: 13%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

#fv.pages .text_area h1 {
    font-size: 42px;
    color: #000;
}

#fv.pages .pic_area {
    height: 100%;
}

#fv.pages img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

#fv.pages img.pc {
    display: block;
}

#fv.pages img.sp {
    display: none;
}

#fv.pages .text_area span.sub {
    font-family: montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    font-size: 32px;
    letter-spacing: 0.1em;
}

/*====================================
	service-ourservice
====================================*/
.service #ourservice {
    position: relative;
    padding-top: 100px;
    padding-bottom: 125px;
}

.service #ourservice .block {
    margin-top: 40px;
}

.service #ourservice .box_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
}

.service #ourservice .box_area::after {
    content: "";
    display: block;
    width: calc((100% - 50px) / 3);
    position: relative;
}

.service #ourservice .box_area .item {
    width: calc((100% - 50px) / 3);
    position: relative;
    background: #FFFFFF;
    box-shadow: 3px 3px 39px rgba(61, 58, 57, 0.05);
    padding: 30px 25px;
    margin-bottom: 25px;
}

.service #ourservice .box_area .item .ttl h3 {
    font-size: 20px;
    color: #CB0C00;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 25px;
    position: relative;
}

.service #ourservice .box_area .item .ttl h3::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #cb0c00;
    border-right: 0;
}

.service #ourservice .box_area .item .txt p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}


/*====================================
	service-products
====================================*/
.service #products {
    position: relative;
    padding-top: 100px;
    padding-bottom: 150px;
    background-color: #F5F5F5;
}

.service #products .title {
    justify-content: center;
}

.service #products .block {
    margin-top: 45px;
    text-align: center;
}

.service #products .box {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: 45px auto 0;
}

.service #products .item {
    position: relative;
    display: block;
    width: calc((100% - 120px) / 3);
    border-radius: 5px;
    /* box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1); */
    text-align: center;
    padding: 20px;
    background-color: #fff;
    transition: color 0.5s ease;
}

.service #products .item:hover {
    box-shadow: unset;
    /* transform: translateY(3px); */
}

.service #products .item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service #products .item::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #CB0C00;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    border-radius: 5px;
}

.service #products .item:hover::after {
    content: '';
    position: absolute;
    background: url(../img/icon_arrow_1.svg) center no-repeat;
    top: 10px;
    right: 10px;
    width: 14px;
    height: 14px;
}

.service #products .item h4 {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 2;
    transition: 0.3s;
}

.service #products .item:hover h4 {
    color: #fff;
    position: relative;
    z-index: 2;
}

.service #products .item span {
    font-family: montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #CB0C00;
    display: block;
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: 0.15em;
    transition: 0.3s;
}

.service #products .item:hover span {
    color: #fff;
    position: relative;
    z-index: 2;
}

.service #products .item p {
    font-size: 15px;
    line-height: 1.5;
    color: #757171;
    transition: 0.3s;
}

.service #products .item:hover p {
    color: #fff;
    position: relative;
    z-index: 2;
}

/*====================================
	service-products
====================================*/
.service #products_list {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.service #products_list .block {
    padding-top: 100px;
    padding-bottom: 75px;
    display: flex;
    flex-direction: column;
}

.service #products_list .block:nth-child(even) {
    background-color: #F5F5F5;
}

.service #products_list .block h3 {
    display: inline-block;
    position: relative;
    margin: 0 auto 110px;
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #0031AF 0%, #090909 48%, #090909 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service #products_list #gas.block h3 {
    background: linear-gradient(90deg, #CB0C00 0%, #090909 48%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service #products_list #electric.block h3 {
    background: linear-gradient(90deg, #FFA100 0%, #FFA100 20.5%, #090909 51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service #products_list #others.block h3 {
    background: linear-gradient(90deg, #00FF2F 0%, #00FF2F 20.5%, #090909 51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service #products_list .block h3::before {
    content: "Water";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-weight: bold;
    -webkit-text-fill-color: #F5F5F5;
    z-index: -1;
    font-family: montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #F5F5F5;
    font-size: 80px;
    letter-spacing: 0.1em;
}

.service #products_list .block:nth-child(even) h3::before {
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.service #products_list #gas.block h3::before {
    content: "Gas";
}

.service #products_list #electric.block h3::before {
    content: "Electric";
}

.service #products_list #others.block h3::before {
    content: "Others";
}

.service #products_list .block h3::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: url(../img/item_b.svg) no-repeat;
    background-size: contain;
    margin-top: 10px;
}

.service #products_list #gas.block h3::after {
    background: url(../img/item_r.svg) no-repeat;
    background-size: contain;
}

.service #products_list #electric.block h3::after {
    background: url(../img/item_y.svg) no-repeat;
    background-size: contain;
}

.service #products_list #others.block h3::after {
    background: url(../img/item_g.svg) no-repeat;
    background-size: contain;
}

.service #products_list .block ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service #products_list .block li {
    text-align: center;
    display: inline-block;
    list-style: none;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #090909 0%, #090909 52%, #0031AF 100%), #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 auto 25px
}

.service #products_list #gas.block li {
    background: linear-gradient(90deg, #CB0C00 0%, #090909 48%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service #products_list #electric.block li {
    background: linear-gradient(90deg, #FFA100 0%, #FFA100 20.5%, #090909 51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service #products_list #others.block li {
    background: linear-gradient(90deg, #008a19 0%, #008a19 20.5%, #090909 51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service #products_list .forcontact {
    text-align: center;
    margin-top: 100px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 2;
}


/*====================================
	company-aboutus
====================================*/
.company #aboutus {
    position: relative;
    padding-top: 100px;
    padding-bottom: 150px;
}

.company #aboutus .block {
    margin-top: 50px;
}

.company #aboutus table {
    width: 100%;
    margin-bottom: 90px;
}

.company #aboutus table tr {
    text-align: left;
}

.company #aboutus table tr:nth-child(odd) {
    background-color: #F5F5F5;
}

.company #aboutus table tr th {
    text-align: center;
    padding: 15px 20px;
    width: 17%;
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
}

.company #aboutus table tr td {
    padding: 15px 20px;
    width: 83%;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.company #aboutus .gmap {
    width: 100%;
}

.company #aboutus .gmap_wrap {
    height: 0;
    overflow: hidden;
    padding-bottom: 40%;
    position: relative;
    margin-bottom: 20px;
}

.company #aboutus .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.company #aboutus .gmap .info span {
    font-weight: 700;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.company #aboutus .gmap .info p {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.05em;
}


/*====================================
	company-greeting
====================================*/
.company #greeting {
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    background-color: #f5f5f5;
}

.company #contact {
    background-color: #F5F5F5;
}

.company #greeting .block {
    margin-top: 100px;
}

.company #greeting .block h3 {
    font-size: 39px;
    color: #CB0C00;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 70px
}

.company #greeting .block .message {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.company #greeting .block .sign {
    text-align: right;
}

.company #greeting .block span {
    display: inline-block;
    text-align: right;
    font-size: 22px;
    line-height: 2;
    letter-spacing: 0.05em;
    font-family: "zen-antique-soft", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.company #greeting .block .cmp {
    display: block;
}

.company #greeting .block .name {
    font-size: 32px;
    margin-left: 15px;
    font-family: "yuji-boku", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/*====================================
	fv(recruit)
====================================*/
.recruit #fv {
    position: relative;
    width: 100%;
    /* height: 66vh; */
    height: 100vh;
    overflow: hidden;
}

.recruit #fv .text_area {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-5deg);
    width: 100%;
    text-align: center;
}

.recruit #fv .text_area span {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.8), rgba(255, 153, 0, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: 0.1em;
}

.recruit #fv .text_area h1 span {
    font-size: 122px;
}

.recruit #fv .pic_area {
    height: 100%;
}

.recruit #fv img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.recruit #fv img.pc {
    display: block;
}

.recruit #fv img.sp {
    display: none;
}

.recruit #fv .text_area span.sub {
    font-family: montserrat, sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    font-size: 58px;
    letter-spacing: 0.1em;
}

/*====================================
	message
====================================*/
#message .msg_area {
    margin-top: 64px;
    margin-bottom: 90px;
    color: #fff;
    font-weight: 800;
    line-height: 2;
    font-size: 22px;
}

#message .flex_area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

#message .pic_area {
    width: 36%;
}

#message .pic_area img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

#message .text_area {
    width: 62%;
    margin-bottom: 50px;
}

#message .text_area h3 {
    margin-bottom: 70px;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
}

#message .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#message .item {
    position: relative;
    display: block;
    width: calc((100% - 32px) / 3);
    border-radius: 5px;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 16px;
    background-color: #FCA510;
    transition: color 0.5s ease;
    margin-bottom: 16px;
}

#message .item .circle {
    width: 13px;
    height: 13px;
    background-color: #CB0C00;
    border-radius: 50%;
    margin: 0 auto 25px;
}

#message .item h4 {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 30px;
    color: #CB0C00;
}


/*====================================
	about
====================================*/
#about {
    position: relative;
    z-index: 2;
    margin-top: -180px;
    /* margin-top: -10vw; */
    padding-top: 290px;
    /* padding-top: 16vw; */
    padding-bottom: 180px;
    width: 100%;
    background: url(../img/bg_g.png) no-repeat bottom center/cover;
    /* background-color: #F5F5F5; */
    overflow: hidden;
}

/* #about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    transform: skewY(-10deg);
    transform-origin: top left;
  } */
#about .target {
    margin-bottom: 140px;
}

#about .target .target_ttl h4 {
    display: block;
    position: relative;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    color: #CB0C00;
    margin-bottom: 80px;
}

#about .target .target_ttl h4::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: url(../img/item_1.svg) no-repeat;
    background-size: contain;
    margin-top: 10px;
}

#about .target_block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#about .target_block .item {
    position: relative;
    display: block;
    width: calc((100% - 60px) / 4);
    border-radius: 5px;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 16px;
    background: linear-gradient(103.38deg, #CB0C00 51.92%, #FC1E10 100%);
    transition: color 0.5s ease;
    align-content: center;
}

#about .target_block .item .circle {
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto 25px;
}

#about .target_block .item h4 {
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.15em;
    line-height: 1.6;
    margin-bottom: 25px;
}

#about .box {
    margin-bottom: 100px;
}

#about .item {
    display: flex;
    flex-wrap: wrap;
}

#about .item+.item {
    flex-direction: row-reverse;
}

#about .item .txt {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

#about .item .txt h4 {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #CB0C00;
}

#about .item .txt p {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.05em;
}

#about .item .thumb {
    width: 50%;
    position: relative;
}

#about .item:first-of-type .thumb::before {
    position: absolute;
    left: -85px;
    top: -80px;
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 0 30px 0 0;
    background-color: #FCA510;
    mix-blend-mode: exclusion;
}

#about .item:first-of-type .thumb::after {
    position: absolute;
    right: -40px;
    bottom: -40px;
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-color: #FCA510;
    mix-blend-mode: exclusion;
}

#about .item:last-of-type .thumb::before {
    position: absolute;
    left: -75px;
    bottom: -75px;
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 0 0 0 30px;
    background-color: #FCA510;
    mix-blend-mode: exclusion;
}

#about .item:last-of-type .thumb::after {
    position: absolute;
    right: -40px;
    top: 90px;
    content: "";
    display: block;
    width: 80px;
    height: 75px;
    background-color: #FCA510;
    mix-blend-mode: exclusion;
}

#about .item .thumb::before {}

#about .item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/*====================================
	recruit
====================================*/
#recruit {
    position: relative;
    padding-top: 195px;
    padding-bottom: 150px;
}

#recruit::before {
    content: '';
    position: absolute;
    background: url(../img/item_fire.png) center no-repeat;
    top: 150px;
    right: 0;
    width: 26vw;
    height: 20vw;
    background-size: contain;
    z-index: -1;
}

/* #flow::after {
    content: '';
    position: absolute;
    bottom: -94px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    border-width: 95px 100vw 0px 0px;
} */

#recruit .job {
    margin-top: 100px;
    margin-bottom: 50px;
}

#recruit .job h4 {
    display: inline-block;
    font-size: 26px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 7px 20px;
    background: #00164F;
    box-shadow: 4px 4px 0px #FCA510;
}

#recruit table {
    width: 100%;
}

#recruit table tr {
    text-align: left;
}

#recruit table tr:nth-child(odd) {
    background-color: #F5F5F5;
}

#recruit table tr th {
    text-align: center;
    padding: 15px 20px;
    width: 17%;
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
}

#recruit table tr td {
    padding: 15px 20px;
    width: 83%;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.05em;
}

/*====================================
	contact
====================================*/
#contact {
    position: relative;
    padding-top: 175px;
    padding-bottom: 165px;
    background: url(../img/bg_contact.png) top no-repeat;
    width: 100%;
    height: 100%;
    background-size: 100%;
    text-align: center;
}

#contact .c-arrow-link--icon {
    right: 40px;
    width: 30px;

}

#contact .c-arrow-link--icon:before,
#contact .c-arrow-link--icon:after {
    font-size: 40px;
}

#contact h2 {
    color: #fff;
    justify-content: center;
}

#contact .sub_ttl {
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 0.2em;
    justify-content: center;
}

#contact .contact_btn {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

#contact .contact_btn .btn {
    width: 400px;
}

#contact .contact_btn .btn:first-of-type {
    margin-right: 15px;
}

#contact .contact_btn .btn a {
    padding: 32px;
    font-size: 22px;
    letter-spacing: 0.05em;
}


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

    /*====================================
	common
====================================*/
    .recruit #breadcrumbs::before {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
    }

    /*====================================
	fv
====================================*/
    .recruit #fv .text_area span.sub {
        font-size: 30px;
    }

    /*====================================
	message
====================================*/
    #message .msg_area {
        font-size: 20px;
    }

    #message .pic_area {
        width: 36%;
    }

    #message .text_area {
        margin-bottom: 30px;
    }

    #message .text_area h3 {
        margin-bottom: 40px;
        font-size: 50px;
    }

    #message .item h4 {
        font-size: 20px;
    }

    /*====================================
	about
====================================*/
    #about .item .txt {
        padding: 20px 30px;
    }


    /*====================================
	contact
====================================*/
    #contact {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #contact .sub_ttl {
        font-size: 30px;
    }

    #contact .contact_btn {
        display: flex;
        justify-content: center;
        margin-top: 100px;
    }

    #contact .contact_btn .btn {
        width: 300px;
    }

    #contact .contact_btn .btn:first-of-type {
        margin-right: 15px;
    }

    #contact .contact_btn .btn a {
        padding: 26px;
        font-size: 20px;
    }

}

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

    /*====================================
	message
====================================*/
    #message .pic_area {
        width: 100%;
    }

    #message .text_area {
        width: 100%;
    }

    /* #message .box {
        width: 80%;
        margin: 0 auto;
    } */



}




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

    /*====================================
	common
====================================*/
    .bg_o {
        padding-top: 280px;
        padding-bottom: 175px;
        /* margin-top: -200px; */
        margin-top: -300px;
    }

    #breadcrumbs {
        font-size: 14px;
    }

    #breadcrumbs p {
        padding: 20px 0;
    }

    .overlay .wrap h2 {
        font-size: 41px;
        justify-content: center;
    }

    .recruit #breadcrumbs::before {
        /* top: -115px; */
        top: -150px;
        height: 100px;
    }

    header .logo_area h1 a.sp {
        display: block;
    }


    /*====================================
    fv
====================================*/
    #content:not(.recruit) #fv.pages .pic_area {
        height: 350px;
    }

    #fv.pages .text_area {
        left: 20px;
    }

    #fv.pages .text_area h1 {
        font-size: 32px;
    }

    #content:not(.recruit) .text_area h1 {
        text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
    }

    #fv.pages img.pc {
        display: block;
    }

    #fv.pages img.sp {
        display: none;
    }

    #fv.pages .text_area span.sub {
        font-size: 20px;
    }

    /*====================================
	service-ourservice
====================================*/
    .service #ourservice {
        padding-top: 50px;
        padding-bottom: 30px;
    }

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

    .service #ourservice .box_area {
        margin-top: 25px;
    }

    .service #ourservice .box_area::after {
        width: 100%;
    }

    .service #ourservice .box_area .item {
        width: 100%;
        padding: 20px 20px;
        margin-bottom: 20px;
    }

    .service #ourservice .box_area .item .ttl h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .service #ourservice .box_area .item .ttl h3::before {
        left: -20px;
    }

    .service #ourservice .box_area .item .txt p {
        font-size: 14px;
    }


    /*====================================
	service-products
====================================*/
    .service #products {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .service #products .block {
        margin-top: 25px;
    }

    .service #products .box {
        width: 100%;
    }

    .service #products .item {
        width: calc((100% - 15px) / 3);
        background-color: #CB0C00;
    }

    .service #products .item::before {
        top: 7px;
        right: 7px;
        width: 10px;
        height: 10px;
    }

    .service #products .item h4 {
        font-size: 18px;
        letter-spacing: 0.15em;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .service #products .item span {
        color: #fff;
        margin-bottom: 0;
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .service #products .item p {
        display: none;
    }



    /*====================================
	service-products
====================================*/
    .service #products_list {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .service #products_list .block {
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .service #products_list .block h3 {
        margin: 0 auto 50px;
        font-size: 20px;
    }

    .service #products_list .block h3::before {
        color: #F5F5F5;
        font-size: 40px;
    }

    .service #products_list .block h3::after {
        width: 150px;
        height: 20px;
    }

    .service #products_list #gas.block h3::after {
        width: 150px;
        height: 20px;
    }

    .service #products_list #electric.block h3::after {
        width: 150px;
        height: 20px;
    }

    .service #products_list #others.block h3::after {
        width: 150px;
        height: 20px;
    }

    .service #products_list .block li {
        font-size: 16px;
        margin: 0 auto 20px
    }

    .service #products_list .forcontact {
        font-size: 18px;
    }


    /*====================================
	company-aboutus
====================================*/
    .company #aboutus {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .company #aboutus .block {
        margin-top: 30px;
    }

    .company #aboutus table {
        margin-bottom: 20px;
    }

    .company #aboutus table tr th {
        padding: 10px 10px 0;
        width: 100%;
        display: block;
        box-sizing: border-box;
        font-size: 14px;
        text-align: left;
    }

    .company #aboutus table tr td {
        padding: 5px 10px 10px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        font-size: 14px;
    }

    .company #aboutus .gmap_wrap {
        padding-bottom: 60%;
    }

    .company #aboutus .gmap .info span {
        font-size: 14px;
        line-height: 1.6;
    }

    .company #aboutus .gmap .info p {
        font-size: 14px;
        line-height: 1.6;
    }


    /*====================================
	company-greeting
====================================*/
    .company #greeting {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .company #greeting .block {
        margin-top: 30px;
    }

    .company #greeting .block h3 {
        font-size: 24px;
        margin-bottom: 20px
    }

    .company #greeting .block .sign {
        margin-top: 10px;
    }

    .company #greeting .block .message {
        font-size: 16px;
        line-height: 1.8;
    }

    .company #greeting .block span {
        font-size: 16px;
        line-height: 1.8;
    }

    .company #greeting .block .name {
        font-size: 20px;
        margin-left: 10px;
    }


    /*====================================
	recruit-fv
====================================*/
    .recruit #fv .text_area h1 span {
        font-size: 41px;
    }

    .recruit #fv .text_area span.sub {
        font-size: 20px;
    }




    /*====================================
	message
====================================*/
    #message .msg_area {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 16px;
    }

    #message .text_area h3 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    #message .item {
        width: calc((100% - 10px) / 2);
        padding: 10px;
        margin-bottom: 10px;
    }

    #message .item .circle {
        width: 10px;
        height: 10px;
        margin: 0 auto 15px;
    }

    #message .item h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /*====================================
	about
====================================*/
    #about {
        /* margin-top: -170px; */
        padding-top: 150px;
        padding-bottom: 170px;
    }

    #about .target {
        margin-bottom: 50px;
    }

    #about .target .target_ttl h4 {
        font-size: 20px;
        margin-bottom: 50px;
    }

    #about .target .target_ttl h4::after {
        width: 150px;
        height: 20px;
    }

    #about .target_block {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    #about .target_block .item {
        width: calc((100% - 10px)/ 2);
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 10px;
    }

    #about .target_block .item .circle {
        width: 10px;
        height: 10px;
        margin: 0 auto 15px;
    }

    #about .target_block .item h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    #about .box {
        margin-bottom: 30px;
    }

    #about .item {
        margin-bottom: 30px;
    }

    #about .item+.item {
        flex-direction: column;
    }

    #about .item .txt {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    #about .item .txt h4 {
        font-size: 18px;
        text-align: left;
    }

    #about .item .txt p {
        font-size: 16px;
        text-align: left;
    }

    #about .item .thumb {
        width: 100%;
    }

    #about .item:first-of-type .thumb::before {
        left: -25px;
        top: -20px;
        width: 70px;
        height: 70px;
        border-radius: 0 15px 0 0;
    }

    #about .item:first-of-type .thumb::after {
        right: -20px;
        bottom: -20px;
        width: 30px;
        height: 30px;
    }

    #about .item:last-of-type .thumb::before {
        left: -35px;
        bottom: -35px;
        width: 70px;
        height: 70px;
        border-radius: 0 0 0 15px;
    }

    #about .item:last-of-type .thumb::after {
        right: -20px;
        top: 30px;
        width: 50px;
        height: 45px;
    }


    /*====================================
	flow
====================================*/
    #recruit {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #flow::before {
        top: 100px;
        width: 26vw;
        height: 20vw;
    }

    #recruit .job {
        margin-top: 50px;
        margin-bottom: 20px;
    }

    #recruit .job h4 {
        font-size: 20px;
        padding: 7px 10px;
    }

    #recruit table tr th {
        padding: 10px 10px 0;
        width: 100%;
        display: block;
        box-sizing: border-box;
        font-size: 14px;
        text-align: left;
    }

    #recruit table tr td {
        padding: 5px 10px 10px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        font-size: 14px;
    }


    /*====================================
	contact
====================================*/
    #contact {
        padding-top: 90px;
        padding-bottom: 50px;
        background: url(../img/bg_contact_sp.png) top no-repeat;
        width: 100%;
        height: 100%;
        background-size: cover;
        /* z-index: -1; */
    }

    #contact .c-arrow-link--icon {
        right: 20px;
        width: 20px;

    }

    #contact .c-arrow-link--icon:before,
    #contact .c-arrow-link--icon:after {
        font-size: 30px;
    }

    #contact .sub_ttl {
        font-size: 21px;
        line-height: 1.2;
    }

    #contact .contact_btn {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    #contact .contact_btn .btn {
        width: 72%;
    }

    #contact .contact_btn .btn:first-of-type {
        margin-right: 0;
        margin-bottom: 20px;
    }

    #contact .contact_btn .btn a {
        padding: 15px;
    }

}

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