@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@1,400;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Source+Sans+Pro:ital,wght@1,400;1,600&display=swap");

/*フォントファミリー*/
/*カラー*/
/* ------------------------------------- */
/* 共通
/* ------------------------------------- */
body {
    font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    color: #000;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

img,
figure {
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: top;
    max-width: 100%;
}

#wrapper a,
#wrapper a:hover,
a img,
a:hover img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#wrapper .ui-tabs-nav a {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

p {
    margin: 0;
    padding: 0;
    text-align: justify;
    text-justify: distribute;
}

ul,
ol,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.inner,
header h1 {
    max-width: 1230px;
    padding: 0 15px;
    margin: auto;
}

header h1 {
    font-size: 12px;
    line-height: 2rem;
}

main .inner {
    padding: 0 30px;
}

.inner_s {
    max-width: 1000px;
    margin: 0 auto;
}

.en_copy {
    color: #229DBA;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0.05em;
}

.en_copy::before {
    content: "";
    display: inline-block;
    background: url("/hydrogen/img/icon_drop.png") no-repeat center/contain;
    width: 13px;
    height: 18px;
    margin-right: 0.5em;
    margin-bottom: -2px;
}

.en_copy::after {
    content: "";
    display: inline-block;
    background: #229DBA;
    width: 100px;
    height: 1px;
    margin-left: 14px;
    margin-bottom: 5px;
}

.en_copy.noline {
    display: block;
    text-align: center;
}

.en_copy.noline::after {
    display: none;
}

.en_copy.dark {
    color: #005367;
}

.en_copy.dark::before {
    display: none;
}

.en_copy.dark::after {
    background: #005367;
}

.link_btn,
.blank_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 272px;
    max-width: 100%;
    height: 54px;
    background: #fff;
    border: 2px solid #229DBA;
    border-radius: 26px;
    color: #229DBA;
    font-weight: 500;
    padding-left: 1em;
    margin-left: auto;
    margin-top: 54px;
}

.link_btn::after,
.blank_btn::after {
    content: "";
    display: inline-block;
    background: url("/hydrogen/img/icon_arrow.png") no-repeat center/contain;
    width: 16px;
    height: 16px;
    margin-right: 1em;
    margin-bottom: -2px;
}

.link_btn:hover,
.blank_btn:hover {
    color: #229DBA;
}

.blank_btn {
    margin-top: 42px;
}

.blank_btn::after {
    background: url("/hydrogen/img/icon_blank.png") no-repeat center/contain;
    width: 13px;
    height: 13px;
}

.inquiry_btn {
    display: block;
    color: #fff;
    font-weight: 500;
    background: #ed6400;
    background: -webkit-gradient(linear, left top, right top, from(#ed6400), to(#eaa218));
    background: linear-gradient(90deg, #ed6400 0%, #eaa218 100%);
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 2em;
    letter-spacing: 0.02em;
    text-align: center;
}

.inquiry_btn::before {
    content: "";
    display: inline-block;
    background: url("/hydrogen/img/icon_mail.png") no-repeat center/contain;
    margin-right: 0.5em;
    margin-bottom: -2px;
}

.inquiry_btn:hover {
    color: #fff;
}

#totop {
    width: 60px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
}

#totop img {
    width: 100%;
    height: auto;
}

/* ------------------------------------ */
/* SP */
/* ------------------------------------ */
@media screen and (max-width: 768px) {

    /* 共通 */
    body {
        font-size: 14px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    main .inner {
        padding: 0 15px;
    }

    .link_btn,
    .blank_btn,
    .blank_btn {
        margin-top: 42px;
        width: 240px;
    }
}

/* ヘッダー
/* ------------------------------------ */
#Header {
    /*ヘッダー上部固定*/
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

header {
    background: #fff;
    /* height: 120px; */
    padding-bottom: 20px;
}

header a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

header .inner {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* height: 100%; */
}

header .logo a {
    display: block;
    padding-bottom: 4px;
    white-space: nowrap;
}

header .logo a img {
    vertical-align: bottom;
}

header .logo span {
    padding-left: 0.5em;
}

header .navi_wrap ul {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

header .navi_wrap li {
    padding: 0 0.7em;
}

header .navi_wrap li:last-of-type {
    padding-left: 1em;
}

header .nav_inquiry {
    width: 200px;
    letter-spacing: 0.05em;
    padding: 1em 0;
}

header .nav_inquiry::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 14px;
    background: url("/hydrogen/img/icon_mail.png") no-repeat center/contain;
    margin-right: 0.5em;
    margin-bottom: -2px;
}

header .navi_wrap li .go-home {
    padding-right: 3.5em;
}

header .navi_wrap li .go-home a {
    width: 16px;
    height: 25px;
    background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m13.87%206.07-6.58-5.96a.43.43%200%200%200%20-.58%200l-6.58%206a.39.39%200%200%200%20.29.68h.66v5.86a.4.4%200%200%200%20.4.39h3.25a.4.4%200%200%200%20.4-.39v-3.2a.39.39%200%200%201%20.39-.4h3a.39.39%200%200%201%20.39.4v3.16a.4.4%200%200%200%20.4.39h3.25a.4.4%200%200%200%20.4-.39v-5.86h.66a.39.39%200%200%200%20.25-.68z%22%2F%3E%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    white-space: nowrap;
    text-indent: 120%;
    display: inline-flex;
    align-items: end;
    justify-content: flex-end;
}

header .navi_wrap li .go-home span {
    vertical-align: text-bottom;
    line-height: inherit;
    font-weight: 600;
    font-family: "Roboto";
}


/* ------------------------------------- */
/* 下層PAGE mainvisual
/* ------------------------------------- */
.page_mainvisual {
    background: url("/hydrogen/img/page_main.jpg") no-repeat center/cover;
    width: 100%;
    height: 375px;
    text-align: center;
}

.page_mainvisual .inner_s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.page_mainvisual p {
    text-align: center;
}

.page_mainvisual p:nth-of-type(2) {
    margin-top: 0.5em;
}

.page_mainvisual h2 {
    font-size: 34px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

@media screen and (max-width: 1079px) {
    header .logo {
        width: 100%;
    }

    header .navi_wrap {
        position: fixed;
        top: 119px;
        right: -100%;
        height: 100vh;
        z-index: 10000;
        background: #fff;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    header .navi_wrap ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 20px;
    }

    header .navi_wrap li {
        padding: 1em;
        width: 100%;
        border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    }

    header .navi_wrap li:last-of-type {
        padding: 2em;
        border-bottom: none;
    }

    header .navi_wrap li .go-home {
        padding-right: 0;
    }

    header .navi_wrap li .go-home a {
        display: inline-block;
        width: auto;
        height: auto;
        background: none;
        white-space: inherit;
        text-indent: inherit;
    }

    header .navi_wrap li .go-home span {
        vertical-align: baseline;
        padding-left: 0px;
    }


    header .btnbox {
        -webkit-box-pack: right;
        -ms-flex-pack: right;
        justify-content: right;
        gap: 1em;
    }

    header .btnbox .icon-inquiry {
        display: block;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        color: #fff;
        font-weight: 500;
        background: #ed6400;
        background: -webkit-gradient(linear, left top, right top, from(#ed6400), to(#eaa218));
        background: linear-gradient(90deg, #ed6400 0%, #eaa218 100%);
    }

    header .btnbox .icon-inquiry::before {
        content: "";
        display: inline-block;
        background: url("/hydrogen/img/icon_mail.png") no-repeat center/contain;
        width: 44px;
        height: 44px;
        background-size: 54%;
    }

    header .btnbox .humberger {
        display: block;
        cursor: pointer;
        z-index: 2000;
        width: 32px;
        padding-top: 10px;
    }

    header .btnbox .humberger .icon-bar {
        display: block;
        height: 2px;
        border-radius: 5px;
        background: #000;
        margin-bottom: 8px;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    /*ハンバーガー開閉*/
    body.drawer-opened .navi_wrap {
        right: 0;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    body.drawer-opened #humberger .icon-bar:nth-of-type(1) {
        -webkit-transform: rotate(45deg) translate(7px, 8px);
        transform: rotate(45deg) translate(7px, 8px);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    body.drawer-opened #humberger .icon-bar:nth-of-type(2) {
        opacity: 0;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    body.drawer-opened #humberger .icon-bar:nth-of-type(3) {
        -webkit-transform: rotate(-45deg) translate(7px, -8px);
        transform: rotate(-45deg) translate(7px, -8px);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    body.drawer-opened #overlay {
        position: absolute;
        z-index: 3;
        background: rgba(0, 0, 0, 0.3);
        left: 0;
        top: 120px;
        width: 100%;
        height: 100vh;
        -webkit-transition: .3s;
        transition: .3s;
    }

    body.drawer-opened {
        overflow: hidden;
    }
}

/* ------------------------------------ */
/* SP */
/* ------------------------------------ */
@media screen and (max-width: 768px) {

    /* SP-ヘッダー
/* ------------------------------------- */
    header {
        /* height: 70px; */
        padding-bottom: 10px;
    }

    /* header .logo h1 img {
    width: 170px;
  } */

    header h1 {
        font-size: 10px;
    }

    header .logo a img {
        height: 40px;
    }

    /* header .logo a:first-of-type {
    display: none;
  } */

    header .navi_wrap {
        top: 90px;
    }

    body.drawer-opened #overlay {
        top: 95px;
    }

    /* SP-下層PAGE
/* ------------------------------------ */
    .page_mainvisual {
        max-height: 300px;
        background: url("/hydrogen/img/page_main_sp.jpg") no-repeat center/cover;
    }

    .page_mainvisual h2 {
        font-size: 24px;
        padding: 0 5px;
    }

    .page_mainvisual img {
        max-width: 84%;
    }
}

/* フッター
/* ------------------------------------ */
footer .inner {
    padding: 50px 15px 90px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer a {
    color: #000;
}

.foot_address h4 {
    font-size: 1.5em;
    font-weight: 500;
}

.foot_address h4 img {
    vertical-align: middle;
}

.foot_address h4 span {
    padding-left: 0.5em;
}

.foot_address p {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 1em;
}

.foot_address .sns_icons {
    margin-top: 1em;
}

.foot_address .sns_icons li {
    padding: 0 10px;
}

.foot_address .sns_icons li:first-of-type {
    padding-left: 0;
}

.foot_menu {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.foot_menu h4 {
    font-size: 1em;
    font-weight: 500;
}

.foot_menu ul {
    margin-top: 0.5em;
}

.foot_menu li {
    font-size: 0.9em;
    padding: 5px 5px 5px 0;
}

.foot_menu li::before {
    content: "-";
    display: inline-block;
    font-size: 14px;
    padding-right: 8px;
}

.foot_copy {
    background: #555F65;
}

.foot_copy p {
    color: #fff;
    font-size: 0.75em;
    text-align: center;
    padding: 1em;
}

/* contact、news
/* ------------------------------------ */
.contact {
    margin-top: 120px;
    background: url("/hydrogen/img/bg_contact.jpg") no-repeat center/cover;
    padding: 86px 0 180px;
}

.contact h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
}

.contact p {
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 4em;
    text-align: center;
    line-height: 1.7;
}

.contact .inquiry_btn {
    font-size: 20px;
    border-radius: 38px;
    width: 380px;
    padding: 1.1em 0;
    margin: 1.2em auto 0;
}

.contact .inquiry_btn::before {
    width: 27px;
    height: 18px;
}

.news {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    width: 1140px;
    max-width: 90%;
    background: #fff;
    border-radius: 2em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 32px 65px 48px;
    margin-top: -380px;
}

.news h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 600;
    padding: 1em 0;
}

.news dl {
    width: 100%;
    font-size: 0.9em;
    margin-left: 3em;
}

.news dl dt {
    color: #707070;
}

.news dl .more_btn {
    display: block;
    color: #707070;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: right;
    letter-spacing: 0.05em;
    margin-top: 2em;
}

.news dl .more_btn::after {
    content: "";
    display: inline-block;
    background: url("/hydrogen/img/icon_arrow-gr.png") no-repeat center/contain;
    width: 16px;
    height: 16px;
    margin-left: 1em;
    margin-bottom: -2px;
}

.news dl>div {
    border-bottom: 1px solid #E3E3E3;
    padding: 1.5em 0;
}

.news dl>div:nth-of-type(n+4) {
    display: none !important;
}

.news dl dd {
    margin-left: 3em;
}

.news dl dd a {
    color: #000;
}

.news>div:nth-of-type(n+4) {
    display: none !important;
}

.bg_gray {
    background: #F1F1F1;
    padding: 256px 0 90px;
}

.youtube {
    padding: 0 15px;
    margin-top: 80px;
}

.youtube_in {
    position: relative;
    padding-top: 37%;
    overflow: hidden;
}

.youtube iframe {
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* ------------------------------------ */
/* SP */
/* ------------------------------------ */
@media screen and (max-width: 768px) {

    /* SP-フッター
/* ------------------------------------- */
    footer .inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 32px 6% 48px;
    }

    .foot_address h4,
    .foot_address p {
        text-align: center;
    }

    .foot_address .sns_icons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .foot_menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 20px;
    }

    .foot_menu>div {
        width: 48%;
        margin-top: 2em;
    }

    /* Contact、News */
    .contact {
        margin-top: 50px;
        padding: 54px 0 170px;
    }

    .contact h4 {
        font-size: 22px;
    }

    .contact p {
        margin-top: 2em;
    }

    .contact .inquiry_btn {
        max-width: 300px;
        width: 95%;
        font-size: 16px;
    }

    .news {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 1.5em 1.5em 2em;
    }

    .news h3 {
        padding: 0.5em 0;
    }

    .news dl {
        margin-left: 0;
    }

    .news dl>div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .news dl dd {
        margin-top: 5px;
        margin-left: 0;
    }

    .bg_gray {
        padding-bottom: 60px;
    }

    .youtube {
        margin-top: 38px;
    }

    .youtube_in {
        padding-top: 56.25%;
    }

    .youtube iframe {
        width: 100%;
    }
}

/* ------------------------------------- */
/* TOPページ
/* ------------------------------------- */
/* intro
/* ------------------------------------- */
.mainvisual {
    height: 760px;
    width: 100%;
    background: url("/hydrogen/img/home_main.jpg") no-repeat center/cover;
}

.mainvisual h2 {
    position: relative;
    height: 100%;
}

.mainvisual h2 img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.intro {
    margin-top: 60px;
}

.intro .inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.intro h3 {
    font-size: 26px;
    font-weight: 500;
    color: #229DBA;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-left: 0.8em;
}

.intro .text p {
    max-width: 494px;
    font-weight: 500;
    line-height: 2;
}

.intro .text p:nth-of-type(1) {
    margin-top: 3em;
}

.intro .text p:nth-of-type(n+2) {
    margin-top: 1em;
}

.intro .image {
    margin-bottom: -32px;
}

.intro .image img {
    max-width: 90%;
}

/* 水素エネルギーとは？、活用方法、ステーション
/* ------------------------------------ */
.home_contents {
    margin-top: 120px;
}

.home_contents .content_box .d-flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home_contents h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0.4em;
    line-height: 1.65;
}

.home_contents .text {
    line-height: 2.2;
    margin-top: 2.5em;
    max-width: 416px;
}

.home_contents figure>img {
    width: 100%;
}

.about,
.station {
    margin-right: auto;
    position: relative;
    padding-right: 6%;
    width: 100%;
}

.about_bg,
.station_bg {
    max-width: 100%;
    height: 630px;
    border-radius: 0 50px 0 0;
}

.about .content_box,
.station .content_box {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.94);
    width: 650px;
    border-radius: 20px 0 0 0;
    padding: 2.5em 3em;
    right: 6%;
    bottom: 0;
}

.about_bg {
    background: url("/hydrogen/img/top_about.jpg") no-repeat center/cover;
}

.station_bg {
    background: url("/hydrogen/img/top_station.jpg") no-repeat center/cover;
}

.use {
    margin-top: 120px;
    padding-left: 6%;
    position: relative;
}

.use_bg {
    max-width: 100%;
    height: 630px;
    border-radius: 50px 0 0 0;
    background: url("/hydrogen/img/top_use.jpg") no-repeat center/cover;
}

.use .content_box {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.94);
    width: 650px;
    border-radius: 0 20px 0 0;
    padding: 3em;
    left: 6%;
    bottom: 0;
}

/* society
/* ------------------------------------ */
.society {
    margin-top: 100px;
    background: url("/hydrogen/img/bg_top_society.jpg") no-repeat center/cover;
    padding: 40px 0 62px;
}

.society .inner {
    position: relative;
}

.society .inner::after {
    content: "";
    position: absolute;
    background: url("/hydrogen/img/ill_society.png") no-repeat center/contain;
    width: 410px;
    height: 237px;
    bottom: -100px;
    right: 4%;
}

.society h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    margin-top: 0.4em;
    letter-spacing: 0.05em;
}

.society p {
    font-weight: 500;
    color: #fff;
    line-height: 2.2;
    margin-top: 50px;
}

/* works
/* ------------------------------------ */
.works {
    margin-top: 70px;
}

.works h3 {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 0.4em;
}

.works ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}

.works li {
    width: 23%;
    background: #fff;
    -webkit-box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.16);
    box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.works li img {
    width: 100%;
}

.works li div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 128px;
    padding: 16px;
}

.works li div p {
    font-size: 0.9em;
    color: #000;
}

.works li div span {
    font-size: 0.8em;
    color: #707070;
    margin-top: 1em;
    display: inline-block;
}

/* ------------------------------------- */
/* 下層PAGE
/* ------------------------------------- */
.hydrogen_page p {
    font-size: 16px;
    line-height: 1.85;
}

.hydrogen_page .section1 {
    padding: 84px 0 120px;
}

.hydrogen_page .section2 {
    padding: 110px 0 130px;
    background: #F1F1F1;
}

.hydrogen_page .section3 {
    padding: 120px 0;
}

.hydrogen_page h3 {
    font-size: 30px;
    font-weight: 500;
    color: #229DBA;
    letter-spacing: 0.1em;
    text-align: center;
    padding-bottom: 1em;
    border-bottom: 4px solid #229DBA;
}

.hydrogen_page h4 {
    background: #229DBA;
    border-radius: 1.5em;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding: 0.7em 0;
    margin-top: 100px;
}

.hydrogen_page .w900 {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.hydrogen_page .lead {
    max-width: 900px;
    font-weight: 500;
    margin: 2em auto 0;
}

.hydrogen_page .f_bold {
    font-weight: 600;
}

.hydrogen_page .marker {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, transparent), color-stop(50%, #FFFF55));
    background: linear-gradient(transparent 72%, #FFFF55 50%);
    padding-bottom: 5px;
}

.hydrogen_page picture {
    display: block;
    text-align: center;
    margin-top: 2em;
}

.section1_merit ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 31px;
}

.section1_merit li {
    width: 48%;
    position: relative;
    background: #F7F7F7;
    border-radius: 15px;
    padding: 20px 28px;
    margin-top: 48px;
}

.section1_merit li::before {
    position: absolute;
    content: "";
    width: 61px;
    height: 87px;
    top: -10%;
    left: -10px;
}

.section1_merit li:nth-of-type(1)::before {
    background: url(/hydrogen/img/no01.png) no-repeat center/contain;
}

.section1_merit li:nth-of-type(2)::before {
    background: url(/hydrogen/img/no02.png) no-repeat center/contain;
}

.section1_merit li:nth-of-type(3)::before {
    background: url(/hydrogen/img/no03.png) no-repeat center/contain;
}

.section1_merit li:nth-of-type(4)::before {
    background: url(/hydrogen/img/no04.png) no-repeat center/contain;
}

.section1_merit li img {
    display: block;
    margin: 0.4em auto;
}

.section1_merit li p {
    font-size: 15px;
}

.section1_merit h5 {
    min-height: 60px;
    font-size: 1.13em;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

.section1_production .type {
    margin-top: 52px;
    padding-bottom: 20px;
}

.section1_production .type>p {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.section1_production .type dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 1em;
}

.section1_production .type dl>div {
    width: 32%;
}

.section1_production .type dl>div:nth-of-type(1) dt {
    background: #707070;
}

.section1_production .type dl>div:nth-of-type(1) ul {
    background: rgba(112, 112, 112, 0.2);
}

.section1_production .type dl>div:nth-of-type(2) dt {
    background: #4278C7;
}

.section1_production .type dl>div:nth-of-type(2) ul {
    background: rgba(66, 120, 199, 0.2);
}

.section1_production .type dl>div:nth-of-type(3) dt {
    background: #44AA99;
}

.section1_production .type dl>div:nth-of-type(3) ul {
    background: rgba(68, 170, 153, 0.2);
}

.section1_production .type dl dt {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
    border-radius: 5px;
    padding: 2px 0;
}

.section1_production .type dl dd {
    text-align: center;
}

.section1_production .type dl ul {
    min-height: 140px;
    text-align: left;
    padding: 0.6em 1em;
}

.section1_production .type dl li {
    font-size: 14px;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.8;
}

.section1_efuel h5 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    margin-top: 2em;
}

.section1_efuel>p {
    line-height: 2;
    margin-top: 2em;
}

.section1_efuel dl {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 30px;
    margin-top: 48px;
}

.section1_efuel dl div:nth-of-type(1) dt {
    background: #F06000;
}

.section1_efuel dl div:nth-of-type(2) dt {
    background: #7C7C7C;
}

.section1_efuel div {
    width: 48%;
}

.section1_efuel dt {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 2px 0;
    border-radius: 25px;
}

.section1_efuel ul {
    padding: 0 1em;
    margin-top: 0.5em;
}

.section1_efuel li {
    padding-left: 1em;
    text-indent: -1em;
    line-height: 2;
}

.section2_fcv h4:first-of-type {
    margin-top: 60px;
}

.section2_fcv>p {
    margin-top: 1.5em;
}

.section2_fcv .images {
    max-width: 900px;
    margin: 24px auto 0;
}

.section2_fcv .images p {
    text-align: center;
}

.section2_enefarm>p {
    margin-top: 2em;
}

.section3_works h4:first-of-type {
    margin-top: 60px;
}

.section3_works ul {
    max-width: 900px;
    margin: 40px auto 0;
}

.section3_works li:not(:first-of-type) {
    margin-top: 58px;
}

.section3_works li h5 {
    color: #F06000;
    font-size: 18px;
    font-weight: 500;
}

.section3_works li>p {
    font-size: 0.9em;
    line-height: 2;
    margin-top: 0.5em;
}

.section3_works .images {
    margin-top: 24px;
}

.section3_works .images p,
.section3_works .images div {
    text-align: center;
}

.section3_works .caption {
    font-size: 0.85em;
    text-align: center;
    line-height: 1.4;
    margin-top: 0.5em;
}

.section3_station .station_lead {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2em;
}

.section3_station>p {
    margin-top: 2.5em;
}

.section3_station h5 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
    padding: 0 1em;
}

.section3_station .images {
    max-width: 900px;
    margin: 2em auto 0;
}

.section3_station .images p {
    text-align: center;
}

.section3_station ul {
    padding-left: 4em;
    margin-top: 2em;
}

.section3_station li {
    text-indent: -1em;
    padding-left: 1em;
    padding-bottom: 0.5em;
}

.section3_sdgs>p {
    text-align: center;
    margin-top: 40px;
}

.section3_sdgs .d-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 38px;
}

.section3_sdgs li {
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.85;
    padding-bottom: 5px;
}

/* ------------------------------------ */
/* SP */
/* ------------------------------------ */
@media screen and (max-width: 768px) {

    /* SP-TOPページ
/* ------------------------------------- */
    .mainvisual {
        height: 410px;
        background: url("/hydrogen/img/home_main_sp.jpg") no-repeat center/cover;
    }

    .mainvisual h2 img {
        width: 250px;
        max-width: 100%;
        margin-left: 5px;
    }

    .intro {
        margin-top: 40px;
    }

    .intro .inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .intro h3 {
        font-size: 22px;
    }

    .intro .text p {
        max-width: 100%;
    }

    .intro .text p:nth-of-type(n+2) {
        margin-top: 1.5em;
    }

    .intro .image {
        max-width: 100%;
        text-align: center;
        margin-top: 42px;
    }

    .intro .image img {
        max-width: 78%;
    }

    .home_contents {
        margin-top: 80px;
    }

    .home_contents h3 {
        font-size: 22px;
    }

    .home_contents .text {
        margin-top: 1.5em;
    }

    .en_copy {
        font-size: 15px;
    }

    .en_copy::after {
        width: 50px;
    }

    .about,
    .station {
        padding-right: 0;
    }

    .about_bg,
    .station_bg {
        max-height: 220px;
    }

    .about .content_box,
    .station .content_box {
        position: relative;
        width: auto;
        right: 0;
        margin: -60px 0 0 3%;
        padding: 2.5em 1.5em;
    }

    .about .content_box img,
    .station .content_box img {
        max-width: 60%;
    }

    .use {
        padding-left: 0;
        margin-top: 60px;
    }

    .use_bg {
        max-height: 220px;
    }

    .use .content_box {
        position: relative;
        left: 0;
        width: auto;
        margin: -60px 3% 0 0;
        padding: 2.5em 1.5em;
    }

    .society {
        position: relative;
        background: url(/hydrogen/img/bg_top_society_sp.jpg) no-repeat center/cover;
        margin-top: 60px;
        min-height: 400px;
        padding: 28px 0 168px;
    }

    .society .inner {
        position: static;
        padding: 0 1.5em;
    }

    .society .inner::after {
        width: 251px;
        height: 145px;
        bottom: -24px;
    }

    .society h4 {
        font-size: 22px;
        line-height: 1.7;
    }

    .society p {
        margin-top: 28px;
    }

    .works h3 {
        font-size: 22px;
    }

    .works ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .works li {
        width: 100%;
    }

    .works li:not(:first-of-type) {
        margin-top: 32px;
    }

    .works li div {
        min-height: auto;
    }

    /* SP-下層PAGE
/* ------------------------------------ */
    .hydrogen_page .section1 {
        padding: 60px 0 90px;
    }

    .hydrogen_page .section2,
    .hydrogen_page .section3 {
        padding: 50px 0;
    }

    .hydrogen_page h3 {
        font-size: 24px;
    }

    .hydrogen_page h4 {
        font-size: 18px;
        margin-top: 80px;
    }

    .hydrogen_page p {
        font-size: 14px;
        line-height: 2;
    }

    .hydrogen_page .lead {
        line-height: 2;
        padding: 0 1em;
    }

    .hydrogen_page .d-flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .section1_merit ul {
        padding: 0 10px;
    }

    .section1_merit li {
        width: 100%;
    }

    .section1_merit li:nth-of-type(1)::before,
    .section1_merit li:nth-of-type(2)::before,
    .section1_merit li:nth-of-type(3)::before,
    .section1_merit li:nth-of-type(4)::before {
        background-size: 86%;
    }

    .section1_merit li p {
        font-size: 14px;
        line-height: 1.85;
    }

    .section1_production .type>p {
        font-size: 18px;
        line-height: 1.5;
    }

    .section1_production .type dl {
        padding: 0 1em;
    }

    .section1_production .type dl ul {
        min-height: auto;
    }

    .section1_production .type dl>div {
        width: 100%;
    }

    .section1_production .type dl>div:not(:first-of-type) {
        margin-top: 24px;
    }

    .section1_efuel h5 {
        font-size: 16px;
    }

    .section1_efuel dl {
        padding: 0 5px;
    }

    .section1_efuel div {
        width: 100%;
    }

    .section1_efuel div:nth-of-type(2) {
        margin-top: 40px;
    }

    .section1_efuel ul {
        padding: 0;
    }

    .section2_fcv .images {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .section2_fcv .images p:nth-of-type(2) {
        margin-top: 1em;
    }

    .section3_works li h5 {
        font-size: 18px;
        line-height: 1.5;
    }

    .section3_works .images {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .section3_works .images div:nth-of-type(2),
    .section3_works .images p:nth-of-type(2) {
        margin-top: 1em;
    }

    .section3_station h5 {
        font-size: 18px;
        margin-top: 0.5em;
    }

    .section3_station .images {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .section3_station .images p:nth-of-type(2) {
        margin-top: 1em;
    }

    .section3_station ul {
        padding-left: 0;
    }

    .section3_station .blank_btn {
        margin-top: 1em;
    }

    .section3_sdgs>p img {
        width: 200px;
    }

    .section3_sdgs .d-flex {
        margin-top: 26px;
    }

    .section3_sdgs ul {
        padding: 0 1em;
        margin-top: 2em;
    }
}

/*# sourceMappingURL=style.css.map */