/* header */

header.header_wrap {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 1000;
}

header .site_header {
    max-width: 1000px;
    height: 80px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

header .logo_area {
    max-width: 250px;
    float: left;
}

header .logo_area h1 {
    margin: 0;
}

header .logo_area h1 a {
    display: inline-block;
    box-sizing: border-box;
}

header .logo_area h1 img {
    width: 100%;
    margin: 7px 0;
}

header .line_qr {
    width: 340px;
    float: right;
}

header .line_qr img.line_qr_base {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

header .show_menu_button {
    display: none;
}

header .global_menu {
    width: 100%;
    overflow: hidden;
    background: #8fc31f;
}

header .global_menu ul {
    max-width: 1000px;
    list-style: none;
    overflow: hidden;
    display: block;
    margin: 5px auto;
    padding: 0;
}

header .global_menu ul li {
    float: left;
    font-size: 16px;
    border-left: 2px solid #fff;
    position: relative;
}

header .global_menu ul li:last-child {
    border-right: 2px solid #fff;
}

header .global_menu ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    padding: 10px;
    padding-left: 32px;
    border-radius: 5px;
    transition: background-color .3s;
}

header .global_menu ul li a:hover {
    background: #9dd622;
}

header .global_menu ul li i {
    position: absolute;
    font-size: 20px;
    top: 10px;
    left: 8px;
}

header .global_menu ul li.active a {
    background: #fff;
    color: #8fc31f;
}

header .menu_button_area {
    display: none;
}

header .header_button_area>span {
    height: 80px;
    display: table-cell;
    vertical-align: middle;
}

/* コンテンツ */

main.main_container {
    width: 100%;
    margin: 0;
    min-height: calc(100vh - 42px);
    padding-top: 133px;
    box-sizing: border-box;
}

main section {
    width: 100%;
    /* min-height: 100vh; */
    padding-top: 50px;
    position: relative;
    padding-bottom: 111px;
}

main section:first-child {
    margin-top: -50px;
    min-height: 80vh;
    padding-bottom: 0px;
}

main section.top_img_area {
    background: url('http://smartcityconcier.jp/wp/wp-content/uploads/scc_top.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 500px;
}

main section.top_img_area h2 {
    font-size: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #2d68ac;
    text-shadow: 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff;
}

main section.top_img_area h2 .subtitle {
    font-size: 18px;
}

main section.top_img_area h3 {
    display: inline-block;
    text-align: center;
    position: absolute;
    min-width: 250px;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    padding: 10px;
    background: rgba(15, 152, 27, 0.5);
    color: #fff;
    border-radius: 10px;
}

main h2.page_title, main section h2.section_title {
    margin: 0;
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
    color: #fff;
    background: #3da538;
    /* border-bottom: 2px solid #7aa917; */
}

main section:nth-child(2n) {
    background: #deeebe;
}

main section .section_content {
    padding: 10px;
    overflow-x: auto;
}

main section .section_content table {
    cursor: default;
}

main div.to_contact {
    padding: 30px 0;
    /* margin-bottom: 81px; */
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #fff;
}

main div.to_contact a {
    display: inline-block;
    padding: 10px 30px;
    background: #f18fbe;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-size: 21px;
}

/* ============================================================+
TOP - NEWS掲示板デザイン
+============================================================ */

#bulletin_board_area {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    overflow: hidden;
}

#bulletin_board_area .bb_content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

#bulletin_board_area .bb_content .bb_header, #bulletin_board_area .bb_content .bb_footer {
    width: calc(100% - 50px);
    height: 15px;
    margin: 0 auto;
    border: 3px solid #8fc31f;
    box-sizing: border-box;
}

#bulletin_board_area .bb_content h2.bb_title {
    position: absolute;
    padding: 7px 20px;
    margin: 0;
    text-align: center;
    background: #8fc31f;
    color: #fff;
    font-size: 20px;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

#bulletin_board_area .bb_content h2.bb_title i {
    margin-right: 10px;
}

#bulletin_board_area .to_list_link {
    padding: 5px 15px;
    width: 100%;
    overflow: hidden;
    text-align: right;
    box-sizing: border-box;
}

#bulletin_board_area .to_list_link a {
    color: #555;
    text-decoration: none;
}

#bulletin_board_area .to_list_link>a i {
    color: #8fc31f;
    margin-left: 5px;
    font-size: 18px;
}

#bulletin_board_area .bb_legs {
    width: calc(100% - 150px);
    margin: 0 auto;
}

#bulletin_board_area .bb_left_leg, #bulletin_board_area .bb_right_leg {
    border-left: 3px solid #8fc31f;
    border-right: 3px solid #8fc31f;
    width: 20px;
    height: 100px;
    overflow: hidden;
}

#bulletin_board_area .bb_left_leg {
    float: left;
}

#bulletin_board_area .bb_right_leg {
    float: right;
}

/* ============================================================+
TOP - キャッチコピー
+============================================================ */

.catchcopy {
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 24px;
    text-align: center;
}

.catchcopy p {
    display: block;
    line-height: 35px;
}

.catchcopy span.gray {
    color: #777;
}

.catchcopy span.green {
    color: #39b136;
}

.catchcopy span.large {
    font-size: 35px;
    line-height: 60px;
}

.catchcopy span.bold {
    font-weight: bold;
}

/* ============================================================+
TOP - 動画エリア
+============================================================ */

.top_movie_area {
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
    overflow: hidden;
}

#top_movie-container {
    max-width: 800px;
    margin: 0 auto;
    border: 10px solid #8fc31f;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

#top_movie-container::after {
    content: "";
    display: block;
    padding-top: 60%;
}

#top_movie-container .swiper-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#top_movie-container .swiper-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ============================================================+
TOP - NEWS掲示板内
+============================================================ */

.bb_lists:not(.post_list.bb_lists) {
    width: calc(100% - 100px);
    border-left: 3px solid #8fc31f;
    border-right: 3px solid #8fc31f;
    margin: 0 auto;
}

.bb_lists ul {
    margin: 0;
    padding: 15px;
    padding-top: 30px;
    list-style: none;
}

.bb_lists ul li {
    margin: 0;
    line-height: 18px;
    border-bottom: 1px solid #ddd;
    padding: 10px 10px 5px 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.bb_lists ul li a {
    display: inline-block;
    color: #555;
    box-sizing: border-box;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    /* Safari */
    -o-text-overflow: ellipsis;
    /* Opera */
    overflow: hidden;
}

span.news, span.service, span.uncategorized {
    display: inline-block;
    width: 100px;
    margin-right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

span.news {
    background: #f8b945;
}

span.service {
    background: #81cde5;
}

span.uncategorized {
    background: #979797;
}

span.news_date {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
}

span.news_title {
    display: inline-block;
    padding-top: 5px;
}

/* ============================================================+
パンくずリスト
+============================================================ */

.breadcrumb-container {
    max-width: 1000px;
    margin: 5px auto;
    padding: 0 10px;
}

.breadcrumb-container .breadcrumb {
    color: #555;
}

/* ============================================================+
Post content
+============================================================ */

article.entrylist-contaier {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 10px;
    padding-top: 0;
}

article.entrylist-contaier .post_header {
    border-bottom: 1px solid #ddd;
    padding: 5px 10px;
}

article.entrylist-contaier .post_header h2.post_title {
    margin: 5px 0;
}

article.entrylist-contaier .post_header p.post_date {
    margin: 0;
    text-align: right;
}

article.entrylist-contaier .post_content {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* ============================================================+
Grass
+============================================================ */

.grass {
    background-image: url('https://solosoloconcier.jp/wp/wp-content/uploads/grass_hr.png');
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    margin-top: -50px;
    margin-bottom: 0;
    border: none;
    overflow: hidden;
}

/* ============================================================+
Footer
+============================================================ */

.corp_info_area {
    width: 100%;
    padding: 10px;
    background: #8fc31f;
    box-sizing: border-box;
}

.corp_info_area .corp_info {
    max-width: 1000px;
    padding: 15px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
}

.corp_info_area .corp_info table {
    display: block;
}

.corp_info_area .corp_info table tbody {
    display: block;
    margin: 0 auto;
    max-width: 555px;
}

.corp_info_area .corp_info table a {
    color: #333;
    text-decoration: none;
}

.corp_info_area .corp_info table a:hover {
    text-decoration: underline;
}

.corp_info_area .corp_info table tr {
    border-top: 1px dotted #ddd;
}

.corp_info_area .corp_info table tr:last-child {
    border-bottom: 1px dotted #ddd;
}

.corp_info_area .corp_info table th, .corp_info_area .corp_info table td {
    padding: 5px 10px;
    color: #555;
}

.toTop {
    position: fixed;
    right: 10px;
    bottom: 10px;
}

.toTop a {
    font-size: 30px;
    padding: 5px 15px;
    background: rgb(143, 195, 31, 0.5);
    color: #7aa917
}

footer {
    background: #8fc31f;
    text-align: center;
    color: #555;
    overflow: hidden;
}

footer p, footer a {
    color: #555;
    text-decoration: none;
    font-size: 12px;
}

/* レスポンシブ */

@media screen and (max-width: 799px) {
    /* ============================================================+
    ハンバーガーメニュー
    +============================================================ */
    header #show_menu_button {
        margin: 10px 10px 10px 0;
        width: 40px;
        height: 30px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
        float: right;
    }
    #show_menu_button span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #8fc31f;
        border-radius: 4px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    /* ============================================================+
    ハンバーガーメニューの線
    +============================================================ */
    #show_menu_button span:nth-child(1) {
        top: 0px;
        transform-origin: left center;
    }
    #show_menu_button span:nth-child(2) {
        top: 13px;
        transform-origin: left center;
    }
    #show_menu_button span:nth-child(3) {
        top: 26px;
        transform-origin: left center;
    }
    /* ============================================================+
    ハンバーガーメニューの線
    タップ時の動作
    +============================================================ */
    #show_menu_button.expanded span:nth-child(1) {
        transform: rotate(45deg);
        top: 0px;
        left: 8px;
    }
    #show_menu_button.expanded span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }
    #show_menu_button.expanded span:nth-child(3) {
        transform: rotate(-45deg);
        top: 28px;
        left: 8px;
    }
    /* ============================================================+
    メニューコンテンツ
    +============================================================ */
    header .site_header {
        height: 50px
    }
    header .logo_area {
        max-width: 150px;
    }
    header .logo_area img {
        margin: 3px 0 !important;
    }
    header .line_qr, header .global_menu {
        display: none;
    }
    header div.login_logout_button.menu_button_area {
        display: block !important;
        padding: 10px;
        border-top: 1px solid #ccc;
        box-sizing: border-box;
    }
    header div.header_button_area {
        display: none;
    }
    .toggle_menu {
        display: block !important;
        position: fixed !important;
        width: 100% !important;
        top: 50px;
        background: #fff !important;
        z-index: 100;
        border-bottom: 3px solid #8fc31f;
    }
    .toggle_menu ul {
        float: none !important;
    }
    .toggle_menu ul li {
        display: block;
        margin: 0;
        border: none !important;
        padding: 0 5px;
        float: none !important;
        width: 100%;
        box-sizing: border-box;
    }
    .toggle_menu ul li a {
        width: 100% !important;
        padding-top: 15px;
        padding-bottom: 15px;
        margin: 0 !important;
        color: #555 !important;
        box-sizing: border-box;
        font-size: 18px !important;
    }
    /* コンテンツ */
    main.main_container {
        padding-top: 50px;
    }
    .breadcrumb-container {
        font-size: 14px;
    }
    /* ============================================================+
    TOP - キャッチコピー
    +============================================================ */
    .catchcopy {
        font-size: 18px;
    }
    .catchcopy p {
        line-height: 25px;
    }
    .catchcopy span.large {
        font-size: 25px;
        line-height: 42px;
    }
    /* Footer */
    .corp_info_area .corp_info table {
        overflow: hidden;
    }
    .corp_info_area .corp_info table tr {
        display: block;
        clear: both;
        overflow: hidden;
    }
    .corp_info_area .corp_info table th, .corp_info_area .corp_info table td {
        display: block;
        width: 100%;
        float: left;
        text-align: left;
        box-sizing: border-box;
    }
}

.btn {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    /* font-weight: bold; */
    border-radius: 5px;
    cursor: pointer;
}

.btn.btn-primary {
    border: 1px solid #39b136;
    background: #39b136;
}

.btn.btn-primary:active {
    color: #39b136;
    background: #fff;
}

.btn.btn-secondary {
    border: 1px solid #8fc31f;
    background: #8fc31f;
}

.btn.btn-secondary:active {
    color: #8fc31f;
    background: #fff;
}

.btn.btn-info {
    border: 1px solid #4ac0f0;
    background: #4ac0f0;
}

.btn.btn-info:active {
    color: #4ac0f0;
    background: #fff;
}