@charset "UTF-8";

/*================================================================
# body_megamenu
================================================================ */
body {
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

body:after {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

body.overlay:after {
    opacity: 1;
    z-index: 1;
}

/*================================================================
# header
================================================================ */
.header {
    width: 100%;
    height: 85px;
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.header .header-nav {
    height: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .header .header-nav .left {
        width: 20%;
    }
}

.header .logo a:hover {
    opacity: 0.7;
}

.header .header-nav .right {
    position: relative;
}

@media screen and (max-width: 1200px) {
    .header .header-nav .right {
        width: 80%;
    }
}

.header .main-nav__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header .main-nav__item {
    font-weight: 500;
}

.header .main-nav__link {
    padding: 30px 15px;
    display: block;
    letter-spacing: 0;
}

@media screen and (max-width: 1200px) {
    .header .main-nav__link {
        padding: 4px 4px;
        font-size: calc(10px + 6 * (100vw - 560px) / 640);
    }
}

.header .main-nav__link span {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.header .main-nav__link span::after {
    width: 100%;
    height: 1px;
    background: var(--green);
    position: absolute;
    content: "";
    bottom: -4px;
    left: 0;
    transition: transform 0.5s;
    transform: scale(0, 1);
    transform-origin: left top;
}

.header .main-nav__link:hover span::after {
    transform: scale(1, 1);
}

.menu-mobile {
    padding: 20px;
    display: none;
}

.menu-mobile:after {
    padding: 0;
    position: relative;
    content: "\f394";
    top: 50%;
    float: right;
    font-family: "Ionicons";
    font-size: 2.5rem;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
}

.menu-dropdown-icon:before {
    padding: 1.5em 2em;
    cursor: pointer;
    background: #fff;
    content: "\f489";
    display: none;
    float: right;
    font-family: "Ionicons";
    color: #333;
}

.header .main-nav__item .mega_menu {
    width: 100%;
    margin: 0;
    padding: 20px;
    list-style: none;
    background: #f0f0f0;
    position: absolute;
    top: 64px;
    left: 0;
    display: none;
    box-sizing: border-box;
    z-index: 99;
}

@media screen and (max-width: 1200px) {
    .header .main-nav__item .mega_menu {
        top: 32px;
    }
}

.header .main-nav__item .mega_menu:before,
.header .main-nav__item .mega_menu:after {
    content: "";
    display: table;
}

.header .main-nav__item .mega_menu:after {
    clear: both;
}

.header .main-nav__item .mega_menu>li {
    width: 25%;
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    background: none;
    float: left;
}

.header .main-nav__item .mega_menu>li a {
    width: 95%;
    padding: 0.2em 0;
    border-bottom: 1px solid #ccc;
    display: block;
    color: #777;
}

.header .main-nav__item .mega_menu>li>ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: block;
    box-sizing: border-box;
}

.header .main-nav__item .mega_menu>li>ul:before,
.header .main-nav__item .mega_menu>li>ul:after {
    content: "";
    display: table;
}

.header .main-nav__item .mega_menu>li>ul:after {
    clear: both;
}

.header .main-nav__item .mega_menu>li>ul>li {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    float: left;
    font-size: 0.8em;
}

.header .main-nav__item .mega_menu>li>ul>li a {
    border: 0;
}

.header .main-nav__item .mega_menu.normal-sub {
    width: 300px;
    padding: 10px 20px;
    left: auto;
}

.header .main-nav__item .mega_menu.normal-sub>li {
    width: 100%;
}

.header .main-nav__item .mega_menu.normal-sub>li a {
    padding: 1em 0;
    border: 0;
}

.header .main-nav__item .mega_menu {
    padding: 40px;
    background-color: var(--black);
}

.header .main-nav__item .mega_menu .ttl {
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--gray);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.header .main-nav__item .child {
    margin-left: -40px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.header .main-nav__item .child li {
    width: calc(100% / 3 - 40px);
    margin-left: 40px;
    position: relative;
}

.header .main-nav__item .child li:nth-child(n + 4) {
    margin-top: 24px;
}

.header .main-nav__item .child li a {
    padding: 16px 0;
    position: relative;
    display: block;
    font-size: 14px;
    color: #e3e3e3;
}

.header .main-nav__item .child li a:hover {
    color: #fff;
}

.header .main-nav__item .child li::before {
    width: 100%;
    height: 1px;
    background-color: #434343;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.header .main-nav__item .child li:after {
    width: 0;
    height: 1px;
    background-color: var(--green);
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.header .main-nav__item .child li:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

.header .main-nav__item .child li a::before {
    width: 10px;
    height: 1px;
    margin: auto;
    background-color: var(--gray);
    position: absolute;
    content: "";
    top: -19px;
    right: 17px;
    bottom: 0;
    transition-duration: 0.3s;
    transform: rotate(38deg) translateX(10px) translateY(0);
}

.header .main-nav__item .child li a:hover::before {
    background-color: var(--green);
    right: 6px;
}

.header .main-nav__item .child li a::after {
    width: 32px;
    height: 1px;
    margin: auto;
    background-color: var(--gray);
    position: absolute;
    content: "";
    top: 0;
    right: 10px;
    bottom: 0;
    transition-duration: 0.3s;
}

.header .main-nav__item .child li a:hover::after {
    background-color: var(--green);
    right: 0;
}

.sp-logo {
    display: none;
}

/*================================================================
# gnav
================================================================ */
#nav_global {
    display: none;
}

/*================================================================
# main-contents
================================================================ */
.main-contents {
    padding-top: 80px;
    padding-bottom: 160px;
}

/*================================================================
#btn
================================================================ */
/* btn01
------------------------------------------------------ */
.btn01-wrap {
    margin: 88px auto 0;
    text-align: center;
}

.btn01 {
    padding: 8px 65px;
    border: 1px solid var(--black);
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

.btn01:hover {
    color: #fff;
}

.btn01::after {
    width: 0;
    height: calc(100% + 2px);
    background-color: var(--green);
    position: absolute;
    content: "";
    right: 4px;
    bottom: 2px;
    z-index: -1;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn01:hover::after {
    width: calc(100% + 1px);
    right: auto;
    bottom: 2px;
    left: -4px;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* btn02
------------------------------------------------------ */
.btn02-wrap {
    width: 240px;
    height: 120px;
}

.btn02 {
    width: 240px;
    height: 120px;
    border: 1px solid var(--black);
    border-bottom: 5px solid var(--green);
    background-color: #fff;
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}

.btn02 span {
    width: 100%;
    height: 63px;
    margin-top: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.btn02:hover {
    color: #fff;
}

.btn02::before {
    width: 0;
    height: calc(100% + 2px);
    background-color: var(--green);
    position: absolute;
    content: "";
    right: 4px;
    bottom: 2px;
    z-index: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn02:hover::before {
    width: calc(100% + 1px);
    right: auto;
    bottom: 2px;
    left: -4px;
    -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn02:after {
    width: 28px;
    height: 28px;
    margin: auto;
    background: url(../img/btn_svg.svg) no-repeat center top / contain;
    position: absolute;
    content: "";
    right: 0;
    bottom: 16px;
    left: 0;
    transition: 0.3s;
}

.btn02:hover::after {
    background: url(../img/btn_svg__white.svg) no-repeat center top / contain;
    transform: rotate(-360deg);
}

/*================================================================
# title
================================================================ */
.title01 span {
    position: relative;
    font-size: 64px;
    font-weight: 300;
}

.title01 span:before {
    width: 100%;
    height: 1px;
    background-color: var(--green);
    position: absolute;
    content: "";
    bottom: 4px;
    left: 0;
}

.title02 {
    margin-top: 24px;
    text-align: center;
}

.title02 span {
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.4em;
}

/*================================================================
# footer
================================================================ */
.footer {
    padding-bottom: 80px;
}

.footer-contact {
    padding: 10px;
    border-radius: 15px;
    background-color: var(--light-green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--green);
}

.footer-contact .title {
    width: 300px;
    padding: 5px;
    border-radius: 5px;
    background-color: var(--green);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.footer-contact .tel {
    margin-left: 16px;
    font-family: var(--text-en);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.footer-contact .tel a {
    font-size: 56px;
}

.footer-contact .mail {
    margin-left: 16px;
}

.footer-contact .mail a:hover {
    opacity: 0.7;
}

.footer .footer-top {
    margin: 100px 0 0 -56px;
    display: flex;
}

.footer .left,
.footer .right {
    width: calc(100% / 2 - 56px);
    margin-left: 56px;
    font-family: var(--text-en);
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

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

    .footer .left,
    .footer .right {
        font-size: calc(24px + 18 * (100vw - 560px) / 640);
    }
}

.footer .left {
    color: var(--gray);
    text-align: right;
}

.footer .right {
    color: var(--green);
}

.footer .footer-bottom {
    margin-top: 100px;
    text-align: center;
}

.footer .name {
    margin-top: 63px;
    font-size: 18px;
    font-weight: 700;
}

.footer .add {
    margin-top: 15px;
    font-size: 18px;
}

.footer .copyright {
    margin-top: 57px;
    font-size: 15px;
}

/*================================================================
# go-to-top
================================================================ */
.auto-scroll-to-top {
    width: 18px;
    height: 64px;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9;
}

.auto-scroll-to-top a {
    width: 18px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.auto-scroll-to-top a g {
    fill: none;
    stroke: var(--black);
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.auto-scroll-to-top a:hover {
    transform: translateY(-16px);
}

/*================================================================
# lower-page
================================================================ */
.lower-page .section-wrap {
    margin-top: 100px;
}

.lower-page .page-title {
    margin-top: 160px;
    text-align: center;
}

.lower-page .page-title02 {
    margin-top: 160px;
    text-align: center;
}

.lower-page .page-title02 .title {
    border: 1px solid var(--green);
    border-radius: 10px;
    font-size: 40px;
    color: var(--green);
    text-align: center;
}

.lower-page .page-title02 .title span {
    letter-spacing: .2em;
}

.lower-page .lead {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
}

/*================================================================
# our-philosophy
================================================================ */
.our-philosophy .wrap {
    position: relative;
}

.our-philosophy .corporate-philosophy .lead-wrap {
    width: 892px;
    margin: auto;
    list-style: none;
}

.our-philosophy .corporate-philosophy .lead {
    margin-left: 1em;
    position: relative;
}

.our-philosophy .corporate-philosophy .lead:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "□";
    top: 0;
    left: -1em;
}

.our-philosophy .corporate-philosophy .box {
    margin: 140px auto 0;
    padding: 40px;
    border-radius: 10px;
    background-color: var(--light-green);
}

.our-philosophy .corporate-philosophy .box .title {
    font-size: 26px;
    color: var(--green);
    text-align: center;
}

.our-philosophy .corporate-philosophy .box ul {
    margin-top: 30px;
    list-style: none;
}

.our-philosophy .corporate-philosophy .box ul li {
    margin-top: 10px;
    margin-left: 1em;
    position: relative;
    font-size: 18px;
}

.our-philosophy .corporate-philosophy .box ul li:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "●";
    top: 0;
    left: -1em;
}

.our-philosophy .action-policy {
    margin: 120px auto 0;
    position: relative;
}

.our-philosophy .action-policy dl {
    margin-top: 93px;
}

.our-philosophy .action-policy dl dt {
    padding: 5px 0;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    font-size: 18px;
    color: var(--green);
    text-align: center;
}

.our-philosophy .action-policy dl dd {
    display: flex;
    justify-content: center;
}

.our-philosophy .action-policy dl dd ul {
    margin: 30px auto 0;
    list-style: none;
    display: inline-block;
}

.our-philosophy .action-policy dl dd ul li {
    margin-top: 10px;
    margin-left: 1em;
    position: relative;
    font-size: 18px;
}

.our-philosophy .action-policy dl dd ul li:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "〇";
    top: 0;
    left: -1em;
}

.our-philosophy .action-policy_illust {
    position: absolute;
    right: -146px;
    bottom: -100px;
}

/*================================================================
# mission-statement
================================================================ */
.mission-statement .statement {
    margin-top: 120px;
}

.mission-statement .statement .wrap {
    position: relative;
}

.mission-statement .statement .box {
    margin: auto;
    padding: 130px;
    background: url(../img/statement_back.png) repeat center center / cover;
    font-size: 18px;
    line-height: 1.8;
}

.mission-statement .statement .title {
    text-align: center;
}

.mission-statement .statement .text01 {
    margin: 80px 0;
    text-align: center;
}

.mission-statement .statement .text02 {
    margin-top: 24px;
    text-align: center;
}

.mission-statement .statement .statement_illust {
    width: 100%;
    height: calc(382px / 2);
    margin-top: 64px;
    background: url(../img/statement_illust.png) no-repeat center top / cover;
}

/*================================================================
# works-page共通
================================================================ */
.works-page-title {
    margin-top: 150px;
    text-align: center;
}

.works-page-title .title {
    margin-top: 40px;
}

.works-page-title .title span {
    padding: 5px 40px;
    position: relative;
    font-size: 24px;
    font-weight: 700;
}

.works-page-title .title span:before {
    width: 100%;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
}

/*================================================================
# breadcrumbs
================================================================ */
.breadcrumbs {
    width: 100%;
    margin-top: 56px;
}

.breadcrumbs__list {
    margin-left: -16px;
    list-style-type: none;
    display: flex;
}

.breadcrumbs__item {
    padding: 0 16px;
    position: relative;
    font-size: 14px;
    color: #808080;
}

.breadcrumbs__item:not(:last-child)::before {
    width: 16px;
    height: 1px;
    margin: auto;
    opacity: 0.5;
    background-color: #808080;
    position: absolute;
    content: "";
    top: 0;
    right: -7px;
    bottom: 0;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.breadcrumbs__link {
    color: var(--black);
    text-decoration: underline;
}

.breadcrumbs__link:hover {
    text-decoration: none;
}

/*================================================================
# works_esco
================================================================ */
.works_esco .unit01 .text {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.works_esco .unit02 {
    margin-top: 120px;
}

.works_esco .unit02 .works_esco_img01 {
    text-align: center;
}

.works_esco .unit02 .works_esco_img01 img {
    margin-left: 15%;
}

.works_esco .unit02 .container {
    display: flex;
    align-items: center;
}

.works_esco .unit02 .left {
    width: 555px;
}

.works_esco .unit02 .right {
    width: calc(100% - 555px);
    padding-left: 80px;
}

.works_esco .unit02 .right ul {
    list-style: none;
}

.works_esco .unit02 .right ul li {
    position: relative;
    font-size: 18px;
}

.works_esco .unit02 .right ul li:nth-child(n + 2) {
    margin-top: 55px;
}

.works_esco .unit02 .right ul li:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "□";
    top: 0;
    left: -1em;
}

.works_esco .unit03 {
    margin-top: 120px;
}

.works_esco .unit03 .text {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.works_esco .unit04 {
    margin-top: 80px;
}

.works_esco .unit04 .container {
    margin: auto;
    padding: 40px 0;
    border-bottom: 1px solid var(--black);
    display: flex;
}

.works_esco .unit04 .container:first-child {
    border-top: 1px solid var(--black);
}

.works_esco .unit04 .container .left {
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works_esco .unit04 .container .right {
    width: calc(100% - 220px);
    padding-right: 40px;
}

.works_esco .unit04 .container .title {
    font-size: 28px;
    font-weight: 700;
}

.works_esco .unit04 .container .text {
    margin-top: 10px;
    font-size: 18px;
}

.works_esco .unit04 .arrow {
    margin-top: 60px;
    text-align: center;
}

.works_esco .unit04 .works_esco_img04 {
    margin-top: 60px;
    text-align: center;
}

.works_esco .unit05 {
    margin-top: 150px;
}

.works_esco .unit05 .blue-btn_outline a {
    width: 544px;
    margin: auto;
    padding: 12px;
    border: 3px solid #1c2084;
    border-radius: 15px;
    background-color: #e9e6ef;
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #1c2084;
    text-align: center;
}

.works_esco .unit05 .blue-btn_outline a:hover {
    background-color: #1c2084;
    color: #fff;
}

.works_esco .unit05 .text {
    margin: 160px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 1.8;
}

.works_esco .unit05 .blue-btn {
    margin-top: 65px;
}

.works_esco .unit05 .blue-btn a {
    width: 544px;
    margin: auto;
    padding: 12px;
    border: 3px solid #1c2084;
    border-radius: 15px;
    background-color: #1c2084;
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.works_esco .unit05 .blue-btn a:hover {
    background-color: #e9e6ef;
    color: #1c2084;
}

.works_esco .unit05 .note {
    margin: 65px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 1.8;
}

/*================================================================
# works_steam-trap
================================================================ */
.works_steam-trap .unit01 .text {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.works_steam-trap .unit02 {
    margin-top: 130px;
    text-align: center;
}

.works_steam-trap .unit03 {
    margin-top: 120px;
}

.works_steam-trap .unit03 .text {
    margin: 60px auto 0;
    font-size: 18px;
}

.works_steam-trap .unit03 .container {
    margin: auto;
    padding: 40px 0;
    border-bottom: 1px solid var(--black);
    display: flex;
}

.works_steam-trap .unit03 .container.line03 {
    padding: 29px 0;
}

.works_steam-trap .unit03 .container:nth-of-type(2) {
    margin-top: 80px;
    border-top: 1px solid var(--black);
}

.works_steam-trap .unit03 .container .left {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works_steam-trap .unit03 .container .right {
    width: calc(100% - 200px);
    padding-right: 40px;
    display: flex;
    align-items: center;
}

.works_steam-trap .unit03 .container .title {
    width: 320px;
    font-size: 28px;
    font-weight: 700;
}

.works_steam-trap .unit03 .container .text {
    width: calc(100% - 320px - 60px);
    margin: 0 0 0 60px;
    font-size: 18px;
}

.works_steam-trap .unit03 .container .text ul li {
    list-style: none;
    position: relative;
}

.works_steam-trap .unit03 .container .text ul li:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "・";
    top: 0;
    left: -1em;
}

.works_steam-trap .unit04 {
    margin-top: 150px;
}

.works_steam-trap .unit04 .orange-btn_outline a {
    width: 544px;
    margin: auto;
    padding: 12px;
    border: 3px solid #d18f26;
    border-radius: 15px;
    background-color: #f8eede;
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #d18f26;
    text-align: center;
}

.works_steam-trap .unit04 .orange-btn_outline a:hover {
    background-color: #d18f26;
    color: #fff;
}

.works_steam-trap .unit04 .text {
    margin: 160px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 1.8;
}

.works_steam-trap .unit04 .orange-btn {
    margin-top: 65px;
}

.works_steam-trap .unit04 .orange-btn a {
    width: 544px;
    margin: auto;
    padding: 12px;
    border: 3px solid #d18f26;
    border-radius: 15px;
    background-color: #d18f26;
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.works_steam-trap .unit04 .orange-btn a:hover {
    background-color: #f8eede;
    color: #d18f26;
}

.works_steam-trap .unit04 .note {
    margin: 65px auto 0;
    font-size: 18px;
    line-height: 1.8;
}

/*================================================================
# works_solar-power
================================================================ */
.works_solar-power .unit01 .text {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.works_solar-power .unit02 {
    margin-top: 120px;
    padding-bottom: calc(284px + 64px);
    position: relative;
}

.works_solar-power .unit02 .container {
    margin-top: 100px;
    display: flex;
}

.works_solar-power .unit02 .left {
    width: 606px;
}

.works_solar-power .unit02 .right {
    width: calc(100% - 606px);
    padding-left: 40px;
}

.works_solar-power .unit02 .right .title {
    padding: 4px;
    background-color: #86cab2;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.works_solar-power .unit02 .right .text {
    margin-top: 24px;
    line-height: 1.8;
}

.works_solar-power .unit02 .right .box {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.works_solar-power .unit02 .right ul {
    margin-left: 1em;
    list-style: none;
}

.works_solar-power .unit02 .right ul li {
    position: relative;
    font-size: 18px;
}

.works_solar-power .unit02 .right ul li:nth-child(n + 2) {
    margin-top: 4px;
}

.works_solar-power .unit02 .right ul li:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "●";
    top: 0;
    left: -1em;
}

.works_solar-power_illust {
    position: absolute;
    right: -64px;
    bottom: 0;
}

/*================================================================
# works_ppa
================================================================ */
.works_ppa .unit01 .text {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.works_ppa .unit02 {
    margin-top: 120px;
    padding-bottom: calc(441px + 64px);
    position: relative;
}

.works_ppa .unit02 .box {
    padding: 100px;
    border-radius: 10px;
    background-color: var(--light-green);
}

.works_ppa .unit02 .title {
    margin-bottom: 64px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.works_ppa .unit02 .unit {
    width: 80%;
    margin: 40px auto 0;
}

.works_ppa .unit02 .sub-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
}

.works_ppa .unit02 .text {
    margin-top: 16px;
}

.works_ppa .unit02 .works_ppa_illust {
    position: absolute;
    right: -64px;
    bottom: 0;
}

/*================================================================
# works_resale
================================================================ */
.works_resale .unit01 .text {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.works_resale .unit02 {
    margin-top: 120px;
    padding-bottom: calc(441px + 64px);
    position: relative;
}

.works_resale .unit02 .box {
    margin-top: 64px;
    padding: 100px;
    border-radius: 10px;
    background-color: var(--light-green);
}

.works_resale .unit02 .title {
    margin-bottom: 64px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.works_resale .unit02 .unit {
    width: 80%;
    margin: 40px auto 0;
}

.works_resale .unit02 .sub-title {
    margin-left: 1em;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
}

.works_resale .unit02 .sub-title:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "□";
    top: 0;
    left: -1em;
}

.works_resale .unit02 .text {
    margin-top: 16px;
}

.works_resale .unit02 .works_resale_illust {
    position: absolute;
    right: -64px;
    bottom: 0;
}

/*================================================================
# works_green-consulting
================================================================ */
.works_green-consulting .unit01 .text {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    font-size: 18px;
}

.works_green-consulting .unit02 {
    margin-top: 120px;
    position: relative;
}

.works_green-consulting_img {
    margin: 64px auto 0;
    text-align: center;
}

.works_green-consulting .unit02 .text {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    font-size: 20px;
}

/*================================================================
# coming-soon
================================================================ */
.coming-soon {
    padding: 100px 0;
    text-align: center;
}

.coming-soon .title {
    font-family: var(--text-en);
    font-size: 140px;
    font-weight: 500;
    color: var(--light-green);
    letter-spacing: -0.01em;
}

.coming-soon .text {
    font-size: 20px;
    font-weight: 700;
}

/*================================================================
# company-profile
================================================================ */
.company-profile .company-profile-table table {
    width: 100%;
    border-bottom: 1px solid var(--gray);
}

.company-profile .company-profile-table th,
.company-profile .company-profile-table td {
    border-top: 1px solid var(--gray);
    font-size: 18px;
    vertical-align: top;
}

.company-profile .company-profile-table th {
    width: 200px;
    padding: 32px 48px;
    text-align-last: justify;
}

.company-profile .company-profile-table td {
    padding: 32px 48px;
}

.company-profile .company-profile-table .map-col td {
    padding: 0 48px 32px;
    border-top: 0;
}

.company-profile .company-profile-table .map-col .gmap {
    padding-bottom: 60%;
}

.company-profile .company-profile-table td ul {
    list-style: none;
}

.company-profile .company-profile-table td ul li {
    margin-left: 1em;
    position: relative;
    font-size: 18px;
}

.company-profile .company-profile-table td ul li:nth-child(n+2) {
    margin-top: 10px;
}

.company-profile .company-profile-table td ul li:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "●";
    top: 0;
    left: -1em;
}

.company-profile .board-member {
    margin-top: 120px;
    padding: 100px 0;
    background-color: var(--light-green);
}

.company-profile .board-member .page-title {
    margin-top: 0;
}

.company-profile .board-member .title01 {
    margin-top: 0;
}

.company-profile .board-member .container {
    margin-top: 80px;
    margin-left: -64px;
    display: flex;
    align-items: center;
}

.company-profile .board-member .left {
    width: 248px;
    margin-left: 64px;
}

.company-profile .board-member .right {
    width: calc(100% - 248px - 64px);
    margin-left: 64px;
}

.company-profile .board-member .position {
    opacity: .5;
    font-family: var(--text-en);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    color: var(--green);
    letter-spacing: -0.01em;
}

.company-profile .board-member .name {
    margin-top: 4px;
    font-family: var(--text-en);
    font-size: 60px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.company-profile .board-member .biography {
    margin-top: 16px;
}

.company-profile .board-member .auditor {
    margin-top: 80px;
    border-top: 1px solid var(--gray);
}

/*================================================================
# achievement
================================================================ */
.achievement .unit02 {
    margin-top: 120px;
}

.achievement .unit02 .box {
    margin-top: 80px;
    padding: 90px 130px;
    border-radius: 10px;
    background-color: var(--light-green);
    position: relative;
    font-size: 22px;
}

.achievement .unit02 .label {
    padding: 4px 24px;
    background-color: var(--green);
    position: absolute;
    top: 40px;
    left: 50px;
    font-size: 27px;
    font-weight: 700;
    color: #fff;
}

.achievement .unit02 .title {
    padding: 0 0 12px;
    border-bottom: 1px solid var(--black);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.achievement .unit02 .overview {
    margin-top: 32px;
}

.achievement .unit02 .overview__dl {
    display: flex;
}

.achievement .unit02 .overview__dl dt {
    width: 120px;
    position: relative;
}

.achievement .unit02 .overview__dl dt:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: ':';
    top: 0;
    right: -5px;
}

.achievement .unit02 .overview__dl dd {
    width: calc(100% - 120px);
}

.achievement .unit02 .overview__ul {
    list-style: none;
}

.achievement .unit02 .overview__ul li {
    margin-top: 20px;
    margin-left: 1em;
    position: relative;
}

.achievement .unit02 .overview__ul li:before {
    width: 1em;
    height: 1em;
    position: absolute;
    content: "□";
    top: 0;
    left: -1em;
}

.achievement .unit02 .effect {
    margin-top: 40px;
    display: flex;
}

.achievement .unit02 .effect .left {
    width: 100px;
}

.achievement .unit02 .effect .right {
    width: calc(100% - 100px - 40px);
    margin-left: 40px;
}

.achievement .unit02 .effect__title {
    padding: 3px;
    border: 1px solid var(--black);
    text-align: center;
}

.achievement .unit02 .effect__dl {
    margin-top: 3px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.achievement .unit02 .effect__dl:before {
    width: 100%;
    height: 2px;
    margin: auto;
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 8px 2px;
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.achievement .unit02 .effect__dl dt {
    padding: 0 16px 0 0;
    background-color: var(--light-green);
    position: relative;
}

.achievement .unit02 .effect__dl dd {
    padding: 0 0 0 16px;
    background-color: var(--light-green);
    position: relative;
}

.achievement .unit02 .note {
    margin-top: 40px;
}

/* esco_achievement
------------------------------------------------------ */
.esco_achievement_illust {
    width: 100%;
    height: 375px;
    position: relative;
}

.esco_achievement_illust img {
    position: absolute;
    top: 80px;
    right: -180px;
}

/*================================================================
# download
================================================================ */
.download .unit02 .box {
    margin-top: 80px;
    padding: 100px 130px;
    border-radius: 10px;
    background-color: #eee;
    position: relative;
    font-size: 22px;
}

.download .unit02 .title {
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
    text-align: center;
    letter-spacing: .1em;
}

.download .unit02 .contact-method {
    margin-top: 64px;
}

.download .unit02 .contact-method dl {
    margin-top: 64px;
}

.download .unit02 .contact-method .contact-method__title span {
    padding: 3px 16px;
    border: 1px solid var(--black);
    text-align: center;
}

.download .unit02 .contact-method .contact-method__text {
    margin-top: 8px;
}

.download .unit02 .contact-method .contact-method__text a {
    margin: 0 5px;
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
}

.download .unit03 {
    width: 544px;
    margin: 80px auto 0;
}

.download .download-btn {
    padding: 16px;
    border-radius: 10px;
    background-color: #86cab2;
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.download .download-btn:hover {
    background-color: var(--green);
}

/*================================================================
# privacy-policy
================================================================ */
.privacy-policy-contents .unit {
    width: 80%;
    margin: 48px auto 0;
}

.privacy-policy-contents .title {
    font-size: 20px;
    font-weight: 700;
}

.privacy-policy-contents .text {
    margin-top: 16px;
}

.privacy-policy-contents ul {
    margin: 16px 0 0 24px;
}

.privacy-policy-contents ul li {
    margin-top: 4px;
}

.privacy-policy-contents .unit.last {
    display: flex;
    flex-direction: column;
}

.privacy-policy-contents .right {
    margin: 40px 0 0 auto;
    display: inline;
}

.privacy-policy-contents .name {
    font-size: 18px;
    font-weight: 700;
}

.privacy-policy-contents .address {
    margin-top: 8px;
}

.privacy-policy-contents .tel {
    margin-top: 8px;
}