/* ----------------------------------
header
---------------------------------- */

header.header_wrap {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #0f981b;
}

header .site_header {
    position: relative;
    max-width: 1000px;
    height: 50px;
    margin: 0 auto;
    overflow: hidden;
}

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

header .logo_area h1 {
    margin: 0;
    height: 50px;
}

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

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

header .line_area {
    max-width: 250px;
    float: right;
}

header .show_menu_button {
    display: none;
}

header .header_menu_container {
    width: calc(100% - 300px);
    position: relative;
    float: right;
}

header .header_menu_container>ul.header_menu {
    float: right;
    margin: 0 auto;
    padding: 0;
    display: block;
    list-style: none;
    overflow: hidden;
}

header .header_menu_container>ul>li {
    float: left;
    text-align: center;
}

header .header_menu_container>ul>li:hover ul.sub-menu {
    display: block;
}

header .header_menu_container>ul>li>a {
    line-height: 50px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    padding: 15px;
    margin: 0 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

header .header_menu_container>ul>li:first-child>a {
    margin-right: 5px;
}

header .header_menu_container>ul>li:last-child>a {
    margin-left: 5px;
}

header .header_menu_container>ul>li>a:hover {
    color: #09bb18;
}

/* 実証実験ボタン */

.demo_exp_link {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 5px 20px;
    border-radius: 100px;
    background: #ff9900;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

/* ----------------------------------
モーダル
---------------------------------- */

div.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 9999;
}

div.modal div.close_area {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
}

div.modal div.modal_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: calc(100% - 10px);
    max-height: calc(100vh - 10px);
    background: #fff;
    border-radius: 5px;
    overflow-y: scroll;
    z-index: 10001;
}

div.modal div.modal_container div.modal_header, div.modal div.modal_container div.modal_body, div.modal div.modal_container div.modal_footer {
    width: 100%;
}

div.modal div.modal_container div.modal_header p.modal_title {
    display: inline-block;
    width: 100%;
    margin: 10px 0;
    padding: 0;
    padding-left: 15px;
    font-weight: bold;
    box-sizing: border-box;
}

div.modal div.modal_container div.modal_body {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

div.modal div.modal_container div.modal_buttons {
    text-align: right;
    padding: 20px 10px;
    box-sizing: border-box;
}

/* ----------------------------------
「Topへ」ボタン
---------------------------------- */

div.toTop {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
}

div.toTop a {
    background: rgba(142, 197, 32, 0.5);
    text-align: center;
    padding: 10px 15px;
    color: #648d11;
    text-decoration: none;
}

div.toTop a span {
    font-size: 13px;
}

/* ----------------------------------
フッター
---------------------------------- */

footer {
    text-align: center;
    color: #555;
}

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

/* ----------------------------------
QRコード
---------------------------------- */

#lineOfficialAccountQR {
    position: fixed;
    right: 0;
    top: 100px;
    z-index: 100;
    box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
    box-sizing: border-box;
    transition: right 0.5s;
    color: #444;
}

#lineOfficialAccountQR.active {
    right: 210px !important;
}

#lineOfficialAccountQR .showHideTag, #lineOfficialAccountQR .showHideContent {
    position: absolute;
    top: -10px;
    box-sizing: border-box;
    box-shadow: 0 1px 1px rgb(0 0 0 / 11%), 0 2px 2px rgb(0 0 0 / 11%), 0 4px 4px rgb(0 0 0 / 11%), 0 6px 8px rgb(0 0 0 / 11%), 0 8px 16px rgb(0 0 0 / 11%);
}

#lineOfficialAccountQR .showHideTag {
    background: rgba(238, 238, 238, .8);
    border-radius: 5px 0 0 5px;
    right: -10px;
    padding: 8px 25px 8px 15px;
    text-align: center;
    font-size: 25px;
    line-height: 8px;
    cursor: pointer;
}

#lineOfficialAccountQR .showHideTag span {
    font-size: 10px;
}

#lineOfficialAccountQR .showHideContent {
    background: #eee;
    width: 200px;
    border-radius: 0 0 0 5px;
    right: -210px;
    padding: 15px;
}

#lineOfficialAccountQR .showHideContent img {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

#lineOfficialAccountQR .showHideContent p {
    font-size: 12px;
    margin: 5px 0;
}

/* ----------------------------------
メインコンテンツ
---------------------------------- */

main.main_container {
    width: 100%;
    margin: 0;
    padding-top: 50px;
    box-sizing: border-box;
}

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

main h2.page_title, main section h2.section_title {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 10px;
    margin: 0;
    text-align: center;
    color: #0f981b;
    border-bottom: 2px solid #0f981b;
}

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

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

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 50px;
    background: #ff9900;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
}

div.group {
    position: relative;
    padding: 0;
    max-width: 1000px;
    width: calc(100% - 50px);
    margin: 0 auto;
    margin-top: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 20px;
}

article.main_content>p {
    padding-left: 10px;
    padding-right: 10px;
}

p.section_header {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0;
    background: #ff9900;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    box-sizing: border-box;
}

/* ----------------------------------
固定ページ
---------------------------------- */

article.main_content {
    background: #e9f3d5;
}

article.main_content .page_content {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5em 1em;
    box-sizing: border-box;
}

article.main_content .page_content p {
    text-indent: 1em;
}

/* ============================================================+
トップイメージ
+============================================================ */

#top_img_area {
    margin-top: -50px;
    min-height: 80vh;
    padding-bottom: 0px;
}

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

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

#top_img_area h2 .subtitle {
    font-size: 30px;
}

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

#top_img_area img.device_img {
    position: absolute;
}

#top_img_area img.device_img.device01 {
    width: 250px;
    bottom: 0;
    left: 50%;
    transform: translateX(-200%);
}

#top_img_area img.device_img.device02 {
    top: 75%;
    left: 50%;
    width: 170px;
    transform: translate(150%, -50%);
}

/* ============================================================+
YouTube動画
+============================================================ */

#top_movie_area {
    padding: 20px;
    max-height: 540px;
    overflow-y: hidden;
    box-sizing: border-box;
}

#top_movie_area .iframe-wrapper {
    position: relative;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

#top_movie_area .iframe-wrapper::after {
    content: "";
    display: block;
    padding-top: 50%;
    /* ↑ここで高さの調節 0%～100%*/
}

#top_movie_area .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 900px;
    max-height: 500px;
}

/* ============================================================+
SmartCityConcierとは？
+============================================================ */

#sec_scc .img-scc_gtp_tc {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
}

#sec_scc .logo_explanation {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

#sec_scc .logo_explanation img {
    display: block;
    width: 250px;
    float: left;
    margin-bottom: 10px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-sizing: border-box;
}

#sec_scc .logo_explanation>div {
    display: block;
    width: calc(100% - 250px);
    margin-left: 250px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* ============================================================+
イメージマップスライド
+============================================================ */

#sec_imagemaps .group {
    background-image: url(https://smartcityconcier.jp/wp/wp-content/uploads/sp_base.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    background-size: contain;
}

.imagemap_types .swiper-slide {
    text-align: center;
}

.imagemap_types .swiper-slide img {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================================+
SmartCityConcier機能
+============================================================ */

div.scc_functions {
    /* display: flex; */
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

div.scc_function {
    width: 280px;
    vertical-align: middle;
    float: left;
    min-height: 400px;
    padding: 10px;
}

div.scc_function p.scc_func_name {
    display: block;
    border-radius: 100vh;
    padding: 10px 20px;
    margin: 0 auto;
    background: #0f981b;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

div.scc_function img.scc_func_img {
    display: block;
    width: 150px;
    margin: 5px auto;
}

/* ============================================================+
SmartCityConcier特長
+============================================================ */

/* -----------------------------------------+
受信Box
+ ----------------------------------------- */

.jushinBox_flow {
    display: block;
    width: 100%;
    overflow: hidden;
}

.jushinBox_flow .swiper-slide {
    max-width: 250px;
    overflow: hidden;
}

.jushinBox_flow .swiper-slide img {
    width: 100%;
}

/* -----------------------------------------+
SoloSoloConcier
+ ----------------------------------------- */

/* 特許技術ラベル */

.patent_label, .option_label {
    position: absolute;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    top: 0;
    max-width: 100px;
    z-index: 5;
}

.patent_label {
    left: 0;
    background: #f00;
}

.option_label {
    right: 0;
    background: #ff9900;
}

/* SoloSoloConcier 流れ説明 */

.solosolo_flow {
    position: relative;
}

.solosolo_flow .flow_img {
    position: absolute;
    top: 12px;
    left: 37%;
    transform: translateX(-60%);
}

.solosolo_flow .flow_img img {
    width: 145px;
}

.solosolo_flow .flow {
    width: 100%;
}

.solosolo_flow .flow:nth-child(even) {
    background: #fff;
}

.solosolo_flow .flow p {
    margin: 0;
    font-size: 21px;
    padding: 21px 0;
    margin-left: 45%;
}

.solosolo_flow table, .solosolo_flow table tbody, .solosolo_flow table tbody tr, .solosolo_flow table tbody td {
    display: block;
    overflow: hidden;
}

.solosolo_flow table {
    width: 100%;
    margin-top: 20px;
}

.solosolo_flow table tbody {
    margin: 0 auto;
    width: 506px;
}

.solosolo_flow table tbody tr {
    clear: both;
}

.solosolo_flow table tbody td {
    float: left;
}

.solosolo_flow table tbody td:first-child, .solosolo_flow table tbody td:last-child {
    width: 200px;
}

.solosolo_flow table tbody td:nth-child(2) {
    width: 100px;
}

.solosolo_flow table tbody td:nth-child(2) i {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(calc(-50% + 10px));
    font-size: 150px;
    color: #2d68ac;
}

.solosolo_flow table tbody td img {
    width: 200px;
}

/* ============================================================+
他社製品比較
+============================================================ */

#sec_service_comparison table {
    width: 810px;
    display: block;
    margin: 0 auto;
}

#sec_service_comparison table th, #sec_service_comparison table td {
    padding: 5px 10px;
    border: none;
}

#sec_service_comparison table tr, #sec_service_comparison table th, #sec_service_comparison table td {
    border: 1px solid #0f981b !important;
}

#sec_service_comparison table thead th {
    background: #fff;
}

#sec_service_comparison table tbody tr:nth-child(even) {
    background: #fff;
}

#sec_service_comparison table tbody tr:hover {
    background: #0f981b;
    color: #fff;
}

#sec_service_comparison table thead th:last-child, #sec_service_comparison table tbody td:last-child {
    border: 1px solid #0f981b !important;
    background: #ffbf00;
}

#sec_service_comparison table tbody tr.bg_orange:hover {
    background: #ffbf00;
    color: #333;
}

#sec_service_comparison table tbody td {
    text-align: center;
}

/* ============================================================+
Smart City Concierが選ばれる８つの理由
+============================================================ */

#sec_reasons .eight_reasons {
    max-width: 700px;
    margin: 0 auto;
}

#sec_reasons .eight_reasons ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

#sec_reasons .eight_reasons ol li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

#sec_reasons .eight_reasons ol li:before {
    counter-increment: item;
    content: counter(item)'.';
    /* 以下は自由に装飾... */
    padding: 0 20px;
    font-weight: bold;
    font-size: 20px;
    color: #0f981b;
}

#sec_reasons .eight_reasons ol li p {
    margin: 0;
}

#sec_reasons .eight_reasons ol li span.accent {
    font-weight: bold;
    color: #b31d10;
    /* text-decoration: underline wavy; */
}

/* ============================================================+
Q&A
+============================================================ */

#sec_faq ul {
    list-style: none;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#sec_faq ul li {
    display: block;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

#sec_faq ul li:nth-child(odd) {
    background: #f5f9fb;
}

#sec_faq ul li p {
    display: block;
    margin: 0 auto;
    max-width: 800px;
}

#sec_faq ul li p.question {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

#sec_faq ul li p.answer {
    display: none;
    padding-top: 10px;
    padding-left: 25px;
    border-left: 3px solid #b31d10;
}

#sec_faq p span.accent {
    font-weight: bold;
    color: #b31d10;
    margin-right: 10px;
    font-size: 25px;
}

#sec_faq p span.sentence {
    font-weight: bold;
    color: #333;
    text-decoration: underline;
}

#sec_faq ul li p.answer span.accent {
    display: inline-block;
    width: 100%;
}

/* ============================================================+
料金プラン
+============================================================ */

.price_cards {
    max-width: 800px;
    margin: 0 auto;
}

.price_cards .price_card {
    width: 100%;
    color: #555;
    padding: 30px 10px;
}

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

.price_card .price_card-title p {
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.price_card .price_card-content p {
    text-align: right;
    margin: 5px 0;
    font-size: 14px;
}

/* ============================================================+
お問い合わせ
+============================================================ */

form #contact_form {
    display: block;
    padding: 10px 5px;
    background: #fff7eb;
    box-sizing: border-box;
}

form #contact_form ul {
    display: block;
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
}

form.wpcf7-form table.demo_exp {
    background: #ffffff;
}

form.wpcf7-form table.demo_exp tbody {
    max-width: 600px;
}

form #contact_form ul li {
    /* border */
    display: block;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    padding: 10px;
    box-sizing: border-box;
}

form #contact_form ul li:last-child {
    border: none;
}

form #contact_form ul li {
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 18px;
    box-sizing: border-box;
    min-height: 34px;
}

form #contact_form ul li:first-child {
    padding-bottom: 0;
    font-weight: bold;
}

form.wpcf7-form table.confirm {
    background: #fff;
}

form.wpcf7-form table.confirm tbody td:first-child {
    text-align: center;
}

form.wpcf7-form table.confirm tbody td:nth-child(n+2) {
    background: #e8e8e8;
    margin-bottom: 5px;
}

form #contact_form ul li .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

form #contact_form ul li span.required-label {
    display: block;
    float: right;
    font-weight: normal;
    font-size: 15px;
    padding: 3px 10px;
    background: #ff9900;
    color: #fff;
}

form #contact_form ul li span.wpcf7-not-valid-tip {
    position: absolute;
    display: block;
    font-size: 14px;
    padding: 5px 10px;
    top: -34px;
    right: 0;
    color: #fff;
    font-weight: bold;
    background: #dc3232;
}

form #contact_form ul li select, form #contact_form ul li input:not(input[type="checkbox"], input[type="radio"]), form #contact_form ul li textarea {
    display: block;
    width: 100%;
    margin: 0;
    padding: 5px 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 20px;
}

form #contact_form ul li input[type="number"], form #contact_form ul li input[type="date"] {
    width: 70% !important;
    float: left;
}

form #contact_form ul li span.unit {
    display: inline-block;
    width: 30%;
    text-align: left;
    padding-left: 10px;
    line-height: 40px;
    vertical-align: bottom;
    box-sizing: border-box;
}

form #contact_form ul li select:focus, form #contact_form ul li input:focus, form #contact_form ul li textarea:focus {
    border: 1px solid #ff9900;
    border-radius: 0;
    outline: 0;
}

form #contact_form ul li input.wpcf7-not-valid {
    border: 1px solid #dc3232;
}

form.wpcf7-form span.wpcf7-list-item {
    display: inline-block;
    width: 100%;
}

form.wpcf7-form .wpcf7-box {
    text-align: center;
    padding: 20px;
}

form.wpcf7-form input[type="button"], form.wpcf7-form input[type="submit"] {
    display: inline-block;
    min-width: 100px;
    padding: 10px 15px;
    border-radius: 0;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    border: 1px solid #0f981b;
    font-size: 18px;
}

input[type="button"] {
    background: #fff;
    color: #0f981b;
}

form.wpcf7-form input[type="submit"] {
    background: #0f981b;
    color: #fff;
}

input[type="button"]:active {
    background: #0f981b;
    color: #fff;
}

form.wpcf7-form input[type="submit"]:active {
    background: #fff;
    color: #0f981b;
}

input[type="button"]:focus, form.wpcf7-form input[type="submit"]:focus {
    border-radius: 0;
    outline: 0;
}

form.wpcf7-form div.wpcf7-response-output {
    max-width: 450px;
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    background: #dc3232;
    border-color: #dc3232 !important;
    color: #fff;
    font-weight: bold;
}

.button_area {
    text-align: center;
    padding: 10px 0;
}

/* ====================================================== */

form #contact-form {
    padding: 20px 10px;
    background-color: #fff7eb;
    box-sizing: border-box;
}

form #contact-form ul.contact-fields {
    max-width: 450px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}

form #contact-form ul.contact-fields li {
    display: block;
    margin-bottom: 10px;
    border-top: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
}

form #contact-form ul.contact-fields li:first-child {
    border: none;
}


form #contact-form ul.contact-fields li label {
    display: flex;
    align-items: center;
}


form #contact-form ul.contact-fields li span.required-label {
    display: block;
    float: right;
    font-weight: normal;
    font-size: 15px;
    padding: 3px 10px;
    background: #ff9900;
    color: #fff;
    min-width: 32px;
    margin-left:5px;
}


form #contact-form ul.contact-fields li label:not(.mwform-checkbox-field label,.mwform-radio-field label) {
    justify-content: space-between;
    margin-bottom: 5px;
}

.mw_wp_form span.horizontal-item + span.horizontal-item {
    margin: 0 !important;
}

form #contact-form ul.contact-fields li input:not(input[type="checkbox"],input[type="radio"]),
form #contact-form ul.contact-fields li select,
form #contact-form ul.contact-fields li textarea {
    display: block;
    width: 100%;
    padding: 5px 10px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 20px;
    box-sizing: border-box;
}

form #contact-form ul.contact-fields li input:focus,
form #contact-form ul.contact-fields li select:focus,
form #contact-form ul.contact-fields li textarea:focus {
    border: 1px solid #ff9900 !important;
    border-radius: 0 !important;
    outline: 0;
}

form ul.contact-buttons {
    display: flex;
    padding: 0;
    list-style: none;
    justify-content: center;
}

form ul.contact-buttons li {
    padding: 5px 10px;
}

form ul.contact-buttons li input[type="button"],
form ul.contact-buttons li input[type="submit"] {
    display: inline-block;
    min-width: 100px;
    padding: 10px 15px;
    border-radius: 0;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    border: 1px solid #0f981b;
    font-size: 18px;
}

input[type="button"] {
    background: #fff;
    color: #0f981b;
}

form ul.contact-buttons li input[type="submit"] {
    background: #0f981b;
    color: #fff;
}

input[type="button"]:active {
    background: #0f981b;
    color: #fff;
}

form ul.contact-buttons li input[type="submit"]:active {
    background: #fff;
    color: #0f981b;
}

input[type="button"]:focus,
form ul.contact-buttons li input[type="submit"]:focus {
    border-radius: 0;
    outline: 0;
}