@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
    font-size: 62.5%;
}

body {
    color: #333333;
    font-size: 1.4rem;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.7;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #333333;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

a img,
a .btn {
    transition: 0.3s
}

a img:hover,
a .btn:hover {
    opacity: 0.7;
}

.pc_block {
    display: block;
}

.pc_inline_block {
    display: inline-block;
}

.sp_block {
    display: none;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

.fL {
    float: left;
}

.fR {
    float: right;
}

.alignC {
    text-align: center;
}

.alignR {
    text-align: right;
}

.alignL {
    text-align: left;
}

.mgnT10 {
    margin-top: 10px;
}

.mgnR10 {
    margin-right: 10px;
}

.mgnB10 {
    margin-bottom: 10px;
}

.mgnL10 {
    margin-left: 10px;
}

.mgnT20 {
    margin-top: 20px;
}

.mgnR20 {
    margin-right: 20px;
}

.mgnB20 {
    margin-bottom: 20px;
}

.mgnL20 {
    margin-left: 20px;
}

.form_btn {
    text-align: center;
    font-size: 26px;
    line-height: 1;
    color: #ffffff;
    background: #e84c2b;
    border-radius: 10px;
    letter-spacing: 3px;
    margin: 50px auto;
    width: 560px;
    transition: 0.3s;
}

.form_btn:hover {
    opacity: 0.8;
}

.form_btn a {
    display: inline-block;
    padding: 30px 64px;
}

.form_btn span {
    font-size: 14px;
    letter-spacing: 2px;
}

.side_form_btn {
    position: fixed;
    top: 75px;
    right: 0;
    writing-mode: vertical-rl;
    z-index: 1000;
    background: #f64608;
    color: #ffffff;
    padding: 20px 15px 10px;
    height: 254px;
    font-size: 18px;
    letter-spacing: 1px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.3s;
}

.side_form_btn:hover {
    opacity: 0.8;
}

.container {
    width: 1200px;
    margin: auto;
    padding: 0;
}

.main_site_link {
    margin: 20px 0 0;
}

.main_site_link a {
    color: #000000;
    text-decoration: underline;
    letter-spacing: 1px;
}

.main_site_link a:hover {
    color: #000000;
    text-decoration: none;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
}

/*/////ボタン/////*/
.btn {
    font-size: 13px;
    text-align: center;
    color: #ffffff;
    width: 240px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 60px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 25px;
    line-height: 1.3;
    font-weight: bold;

}

.btn::before {
    /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 204px;
    width: 8px;
    /* くの字を山なりに見た時、左側の長さ */
    height: 8px;
    /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #fff;
    /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #fff;
    /* くの字を山なりに見た時、右側の太さと色 */
    transform: rotate(45deg);
    /* くの字の向き */
}

.btn_orange {
    background: #FF7F00;
}

.btn_green {
    background: #00973D;
}

.btn_yellow_green {
    background: #A0D000;
}

.sub_menu_ex {
    width: 385px;
    height: 250px;
    overflow: hidden;
    margin: 0 0 15px 0;
    position: relative;
}

.sub_menu_ex .caption {
    font-size: 60%;
    color: #fff;
    text-align: center;
    padding-top: 60px;
    letter-spacing: 1px;
}

.sub_menu_ex .caption span {
    font-size: 18px;
    display: inline-block;
    padding: 0 0 10px 0;
    font-weight: bold;
}

.sub_menu_ex .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 127, 0, 0.6);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(0);
    /* 大きさを０にして表示しない */
    transform: scale(0);
}

.sub_menu_ex .mask_orange {
    background-color: rgba(255, 127, 0, 0.6);
}

.sub_menu_ex .mask_green {
    background-color: rgba(0, 151, 61, 0.6);
}

.sub_menu_ex .mask_yellow_green {
    background-color: rgba(160, 208, 0, 0.6);
}

.sub_menu_ex:hover .mask {
    -webkit-transform: scale(1);
    /* 大きさを１にして表示する */
    transform: scale(1);
}

@media screen and (max-width: 750px) {
    body {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .pc_block {
        display: none;
    }

    .pc_inline_block {
        display: none;
    }

    .sp_block {
        display: block;
    }

    .container {
        width: 100%;
        margin: auto;
        padding: 0 15px;
    }

    .img_responsive {
        width: 100%;
        display: block;
    }

    .form_btn {
        font-size: 4vw;
        line-height: 1;
        border-radius: 10px;
        letter-spacing: 2px;
        margin: 20px auto;
        width: 80%;
    }

    .form_btn span {
        font-size: 2vw;
        letter-spacing: 1px;
    }

    .form_btn a {
        display: inline-block;
        padding: 20px 0;
    }

    .fL {
        float: none;
    }

    .fR {
        float: none;
    }

    h3 {
        font-size: 18px;
        line-height: 1.4;
    }
}

/* --------------------------------
 * ヘッダー
 * -------------------------------- */
.header {
    padding: 15px;
    font-size: 14px;
}

.header .header_left {
    float: left;
}

.header .header_left h1 {
    font-size: 12px;
}

.header .header_right {
    float: right;
    text-align: center;
    margin: 0;
    font-size: 12px;
    padding: 10px 0 0;
}

.header .header_right img {
    vertical-align: bottom;
}

.header .header_right .header_tel,
.header .header_right .header_btn,
.header .header_right .hamburger_menu {
    float: right;
}

.header .header_right .hamburger_menu {
    padding: 3px 0 0 30px;
}

.header .header_right .header_btn {
    padding: 3px 0 0 10px;
}

.header nav ul.global_menu {
    width: 1200px;
    margin: 5px auto 0;
}

.header nav ul.global_menu a.global_menu_a {
    color: #ffffff;
    background: #00973D;
    /*display: inline-block;*/
    width: 150px;
    padding: 10px;
    text-align: center;
    float: left;
}

.header nav ul.global_menu li {
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.header nav ul.global_menu a:hover {
    background: #015723;
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    .header {
        padding: 10px 10px 5px;
    }

    .header .header_right .header_btn,
    .header_tel {
        display: none;
    }

    .header .header_left h1 {
        font-size: 10px;
    }

    .header .header_right {
        padding: 0;
    }
}

/* --------------------------------
 * ページタイトル
 * -------------------------------- */
.page_title {
    background-size: cover;
    background-position: center;
    height: 300px;
    margin: -57px 0 0;
}

.page_title h2 {
    font-size: 24px;
    padding: 150px 0;
    text-shadow: 1px 1px 1px #ffffff;
    letter-spacing: 1px;
}

.page_title h2.white {
    color: #ffffff;
    text-shadow: 1px 1px 1px #000000;
}


@media screen and (max-width: 750px) {
    .page_title {
        height: 160px;
        margin: 0;
    }

    .page_title h2 {
        font-size: 20px;
        padding: 65px 0;
    }
}

/* --------------------------------
 * パンくず
 * -------------------------------- */
.pankuzu {
    font-size: 11px;
    margin: 30px 0 20px;
}

.pankuzu span {
    font-size: 10px;
}

@media screen and (max-width: 750px) {
    .pankuzu {
        font-size: 10px;
        margin: 20px 0;
    }
}

/* --------------------------------
 * ページナビ（太陽光発電 オール電化 エコリフォーム 各種保険代理店業務 ＠あっと電化パック アフターメンテナンス 会社案内 ZEH ）
 * -------------------------------- */
.page_nav ul li {
    float: left;
    margin: 0 36px 20px 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}

.page_nav ul li:last-child {
    margin: 0 0 20px 0;
}

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

    /*.page_nav {
        display:none;
    }*/
    .page_nav ul li {
        font-size: 10px;
        margin: 0 20px 15px 0;
        text-align: left;
        height: 25px;
    }
}

/* --------------------------------
 * お知らせ（下層ページ）
 * -------------------------------- */
.under_information {
    background: #eeeeee;
    padding: 40px 0 10px 0;
}

.under_information_left {
    float: left;
    padding: 0 60px 0 0;
}

.under_information_right {
    float: left;
}

.under_information_right dl dt,
.under_information_right dl dd {
    float: left;
}

.under_information_right dl dd {
    margin: 0 0 0 20px;
}

.under_information_right dl dd span {
    background: #00973D;
    color: #ffffff;
    font-size: 12px;
    padding: 2px 10px 0;
    margin: 0 20px 0 0;
    width: 100px;
    text-align: center;
    display: inline-block;
    border-radius: 3px;
}

.under_information_list {
    text-align: right;
    text-decoration: underline;
}

@media screen and (max-width: 750px) {
    .under_information {
        padding: 20px 0;
    }

    .under_information_left {
        float: none;
        padding: 0;
        text-align: center;
    }

    .under_information_right {
        float: none;
    }

    .under_information_right dl dt,
    .under_information_right dl dd {
        float: none;
    }

    .under_information_right dl dd {
        margin: 0;
    }

    .under_information_right dl dd span {
        background: #00973D;
        color: #ffffff;
        font-size: 10px;
        padding: 2px 10px 0;
        margin: 0;
        width: 60px;
        text-align: center;
    }

    .under_information_list {
        margin: 10px 0 0;
    }
}

/* --------------------------------
 * ハンバーガーメニュー
 * -------------------------------- */
.nav_toggle {
    display: block;
    position: relative;
    top: 3px;
    width: 42px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}

.nav_toggle i {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #00973D;
    position: absolute;
    transition: transform .5s, opacity .5s;
}

.nav_toggle i:nth-child(1) {
    top: 0;
}

.nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.nav_toggle i:nth-child(3) {
    bottom: 0;
}

.nav_toggle.show i:nth-child(1) {
    transform: translateY(14px) rotate(-315deg);
}

.nav_toggle.show i:nth-child(2) {
    opacity: 0;
}

.nav_toggle.show i:nth-child(3) {
    transform: translateY(-16px) rotate(315deg);
}

.nav_hamburger_menu a {
    color: #333333;
    display: inline-block;
    width: 100%;
}

.nav_hamburger_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*padding: 5rem 3rem 3rem;*/
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    background: #ffffff;
    z-index: 100;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.nav_hamburger_menu .logo img {
    width: 420px;
}

.nav_hamburger_menu.show {
    opacity: 1;
    visibility: visible;
    color: #ffffff;
    padding: 30px 0;
}

.nav_hamburger_menu ul {
    width: 1200px;
    margin: auto;
    font-size: 16px;
    font-weight: bold;
}

.nav_hamburger_menu ul.hamburger_global_menu {
    margin: 40px auto;
}

.nav_hamburger_menu ul.hamburger_global_menu li {
    float: left;
    width: 300px;
    text-align: left;
    margin: 20px 0 0;
}

.nav_hamburger_menu ul.hamburger_global_menu li img {
    vertical-align: middle;
    margin: -10px 0 0;
}

.nav_hamburger_menu ul.special_menu li {
    float: left;
    margin: 0 10px 10px 0;
}

.nav_hamburger_menu ul.sns_menu {
    width: 350px;
    margin: auto;
}

.nav_hamburger_menu ul.sns_menu {
    margin: 40px auto;
}

.nav_hamburger_menu .sns_menu li {
    float: left;
    margin: 0 8px;
}

.nav_hamburger_menu .sns_menu li img {
    vertical-align: middle;
}

.nav_hamburger_menu_tel {
    margin: 10px 0 0;
}

.nav_hamburger_menu_tel img {
    width: 340px;
}

@media screen and (max-width: 750px) {
    .nav_hamburger_menu ul.hamburger_global_menu li {
        float: none;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
        width: 100%;
    }

    .nav_hamburger_menu ul {
        width: 100%;
    }

    .nav_hamburger_menu ul.special_menu li {
        float: none;
    }

    .nav_hamburger_menu ul.special_menu li img {
        width: 100%;
    }

    .nav_hamburger_menu.show {
        padding: 30px 15px;
    }
}

/* --------------------------------
 * ドロップダウン
 * -------------------------------- */
.header nav ul.global_menu {
    /*2階層目の基点にするためrelativeを指定*/
    position: relative;
}

.header nav ul.global_menu li ul.dropdown_menu {
    width: 1200px;
    margin: auto;
    background: #ffffff;
    padding: 10px;
}

.header nav ul.global_menu li ul.dropdown_menu li {
    float: left;
    justify-content: center;
    background: #ffffff;
}

.header nav ul.global_menu li ul.dropdown_menu li dl dd {
    color: #333333;
    line-height: 1.3;
    font-weight: bold;
}

nav li.has-child ul.dropdown_menu {
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 42px;
    z-index: 4;

    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    transition: 0.3s
}

/*hoverしたら表示*/
nav li.has-child:hover>ul.dropdown_menu {
    visibility: visible;
    opacity: 1;
}

/*各ナビゲーション横幅*/
nav li.has-child ul.dropdown_menu li {
    width: 20%;
    padding: 5px 0;
}

@media screen and (max-width: 750px) {
    .header nav ul.global_menu {
        display: none;
    }
}

/* --------------------------------
 * タイトル
 * -------------------------------- */
.title {
    text-align: center;
    margin: 0 0 40px 0;
}

.title>p {
    font-size: 14px;
    color: #00973D;
    letter-spacing: 1px
}

.title h2 {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 2px;
}

.reason .title p {
    font-size: 14px;
    color: #FFEC00;
    letter-spacing: 1px;
}

@media screen and (max-width: 750px) {
    .title {
        margin: 0 0 20px 0;
    }

    .title>p {
        font-size: 12px;
    }

    .title h2 {
        font-size: 24px;
    }
}

/* --------------------------------
 * トライアングル
 * -------------------------------- */
.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #ffffff;
    margin: auto;
}

/* --------------------------------
   * パララックスフォト
   * -------------------------------- */
#group_photo {
    background-image: url(../img/top/group_photo.jpg);
}

.parallax_photo {
    width: 100%;
    min-height: 500px;
    color: #fff;
    display: table;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.parallax_photo>* {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 750px) {
    .parallax_photo {
        width: 100%;
        min-height: 300px;
        color: #fff;
        display: table;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: scroll;
    }
}

/* --------------------------------
 * 電化パック
 * -------------------------------- */
.denka_pack {
    background: #FFF7DC;
    padding: 80px 0;
}

.denka_pack .denka_pack_title {
    padding: 0 80px 20px 80px;
}

.denka_pack .denka_pack_title_illust {
    float: left;
}

.denka_pack .denka_pack_title_no1 {
    float: right;
    margin: 15px 0 0;
}

.denka_pack ul {
    margin: 0 0 30px;
}

.denka_pack ul li {
    float: left;
    margin: 0 21px 0 0;
}

.denka_pack ul li:last-child {
    margin: 0
}

.denka_pack dl dd {
    color: #72310E;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .denka_pack {
        padding: 40px 0;
    }

    .denka_pack .denka_pack_title {
        padding: 0;
    }

    .denka_pack .denka_pack_title_illust {
        float: none;
    }

    .denka_pack .denka_pack_title_illust img {
        width: 100%;
    }

    .denka_pack .denka_pack_title_no1 {
        float: none;
        margin: 0;
    }

    .denka_pack .denka_pack_title_no1 img {
        width: 100%;
    }

    .denka_pack ul li {
        width: 32%;
        margin-right: 2%;
        margin-top: 10px;
    }

    .denka_pack ul li:last-child {
        margin-right: 0;
        margin-top: 10px;
    }

    .denka_pack ul li dl dt {
        line-height: 1;
    }

    .denka_pack ul li dl dt img {
        width: 100%;
    }

    .denka_pack dl dd {
        font-size: 10px;
        font-weight: bold;
    }
}

/* --------------------------------
 * スライドバナー（お客様の声）
 * -------------------------------- */
.slide_bnr .slider {
    overflow: hidden;
}

.slide_bnr .slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slide_bnr .slider .slick-slide {
    margin: 0;
    /*スライド左右の余白調整*/
}

@media screen and (max-width: 750px) {
    .slide_bnr {
        display: none;
    }
}

/* --------------------------------
 * スライドバナー（各種）
 * -------------------------------- */
.slide_bnr_various {
    overflow: hidden;
}

.slide_bnr_various .slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slide_bnr_various .slider .slick-slide {
    margin: 0;
    /*スライド左右の余白調整*/
}

/* --------------------------------
 * フッター
 * -------------------------------- */
.footer iframe {
    vertical-align: bottom;
    height: 700px;
}

.footer .footer_tel {
    background: url(../img/bg_footer_tel.jpg) no-repeat center;
    background-size: cover;
    height: 700px;
    text-align: center;
    padding: 420px 0 0;
}

.footer .footer_tel_title {
    font-size: 32px;
    font-weight: bold;
}

.footer .footer_menu {
    height: 710px;
    background: url(../img/bg_footer.jpg) no-repeat center;
    background-size: cover;
    color: #ffffff;
    font-size: 12px;
    padding: 80px;
}

.footer .footer_menu a {
    color: #ffffff;
}

.footer .footer_menu .footer_menu_column {
    float: left;
    margin: 0 130px 0 0;
}

.footer .footer_menu .footer_menu_column p {
    font-size: 15px;
}

.footer .footer_menu .footer_menu_column ul {
    margin: 0 0 20px 15px;
}

.footer .footer_menu .footer_company_info {
    padding-top: 100px;
}

.footer .footer_copyright {
    padding: 30px 0;
    background: #00973D;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer .pagetop {
    position: fixed;
    display: none;
    right: 5px;
    bottom: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer_contact_wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    display: none;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer_contact {
    width: 1200px;
    margin: auto;
    padding: 15px 0;
}

.footer .footer_contact .tel,
.footer .footer_contact .form_sns {
    float: left;
}

.footer .footer_contact .form_sns li {
    float: left;
    margin-right: 10px;
}

.footer .footer_contact .form_sns li.sns {
    margin-top: 16px;
}

.footer .footer_contact .tel {
    margin-right: 20px;
}

.footer .footer_contact .tel p {
    font-size: 13px;
}

.footer .footer_contact .form_sns .form img {
    width: 240px;
    margin: 10px 10px 0 0;
}

.footer .footer_contact img.footer_contact_tel {
    vertical-align: bottom;
    width: 320px;
}

@media screen and (max-width: 750px) {
    .footer iframe {
        height: 500px;
    }

    .footer .footer_tel {
        height: 100%;
        padding: 50px 0;
    }

    .footer .footer_tel .footer_tel_contents {
        padding: 50px 0;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .footer .footer_tel img {
        width: 90%;
    }

    .footer ifr .footer .footer_tel_title {
        font-size: 20px;
    }

    .footer .footer_menu {
        height: 100%;
        background: url(../img/bg_footer.jpg) no-repeat center;
        background-size: cover;
        color: #ffffff;
        font-size: 10px;
        padding: 30px 10px;
    }

    .footer .footer_menu .footer_menu_column {
        float: none;
        margin: 0 0 0 0;
    }

    .footer .footer_menu .footer_menu_column p {
        font-size: 13px;
    }

    .footer .footer_menu .footer_company_info {
        padding-top: 30px;
    }

    .footer .footer_copyright {
        padding: 15px 0;
        font-size: 10px;
    }

    .footer .pagetop img {
        width: 60px;
    }



    .footer_contact {
        width: 100%;
        padding: 3% 2%;
    }
    .footer .footer_contact .tel p {
        display: none;
    }
    .footer .footer_contact .form_sns li {
        margin-right: 0
    }
    .footer .footer_contact .form_sns li.sns {
        display: none;
    }
    .footer .footer_contact .tel {
        width:55%;
        margin-right: 10px;
    }
    .footer .footer_contact .form_sns {
        width:30%;
        margin-top:1%;
    }
    .footer .footer_contact img.footer_contact_tel {
        width: 100%;
    }
    .footer .footer_contact .form_sns .form img {
        width: 100%;
        margin:0;
    }
}