@charset "utf-8";

/*==============================
 *
 * 01.共通設定
 * 01-01.レイアウト
 * 01-02.ボタン
 * 01-03.ヘッダ・フッタ
 * 01-04.フォーム
 * 01-05.テキスト
 *
 * 02.個別設定
 *
 *------------------------------*/

/*==============================
 * 01.共通設定
 *==============================*/
html {
    height: 100%;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 62.5%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    height: 100%;
    line-height: 1.5;
    margin: 0;
    background-color: #FFF;
}

article, aside, footer, header, main, nav, section, summary {
    display: block;
}

div, span, h1, h2, h3, h4, h5, h6, p, a, strong, em, small, img, dl, dt, dd, ol, ul, li, input, select, textarea, label, table, tr, th, td {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, dl, ul {
    margin-top: 0;
    margin-bottom: 0;
}

a {
    background: transparent;
    color: #007FC4;
}

a:focus {
    outline: 0;
}

a:active, a:hover {
    outline: 0;
    color: #50B5FF;
}

strong {
    font-weight: bold;
}

em {
    font-style: normal;
}

img {
    display: inline-block;
    text-align: center;
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: bottom;
}

dd {
    margin-left: 0;
}

ul {
    list-style: none;
    padding-left: 0;
}

input, select, textarea {
    margin: 0;
    color: inherit;
    font: inherit;
}

select {
    text-transform: none;
}

html input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
}

html input[disabled] {
    cursor: default;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type="text"], input[type="password"], select, textarea {
    border-radius: 0;
}

select {
    text-transform: none;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

label {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th, td {
    padding: 0;
}

/*------------------------------
 * 01-01.レイアウト
 *------------------------------*/
/*レイアウトクリア*/
.clear:before,
.clear:after,
.column dl:before,
.column dl:after {
    display: table;
    content: "";
}

.clear:after,
.column dl:after {
    clear: both;
}

/*カラムレイアウト*/
.column_box,
.column dl > dt,
.column dl > dd {
    float: left;
}

/*リスト水平配置*/
.horizontal {
    letter-spacing: -0.4em;
}

.horizontal > li {
    display: inline-block;
    letter-spacing: normal;
}

.sectionline span {
    padding: 0 4px;
}

/*画像置き換え*/
.img {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    word-wrap: normal;
}

/*コンテンツ*/
.wrap {
    position: relative;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    word-wrap: break-word;
    word-break: break-all;
    font-size: 1.4rem;
}

@media screen and (min-width: 769px) {
    .wrap {
    width: 640px;
    }
}

.container {
    width: 100%;
    color: #231815;
}

/*ページトップ*/
.pagetop {
    margin: 3px 0 24px;
    text-align: right;
}

/*スクロールボックス*/
.scroll_box {
    width: 96%;
    max-width: 640px;
    height: 294px;
    overflow: auto;
    margin: 0 auto 18px;
    padding: 12px;
    border: 1px solid #9E9E9F;
    background-color: #FFF;
    font-size: 1.4rem;
    text-align: left;
}

.scroll_box h4,
.scroll_box h5 {
    font-size: 1.4rem;
}

.scroll_box h4,
.scroll_box h5 + ul,
.scroll_box dd,
.scroll_box > p {
    margin-bottom: 12px;
}

.scroll_box dt {
    margin-bottom: 2px;
    font-weight: bold;
}

.scroll_box ul > li {
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.scroll_box li > ul li {
    padding-left: 1.9em;
    text-indent: -1.6em;
}

.scroll_box + p {
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-align: center;
}

/*------------------------------
 * 01-02.ボタン
 *------------------------------*/
.btn {
    width: 230px;
    height: 62px;
    margin: 10px auto;
}

.btn a {
    display: block;
    line-height: 2.6;
    background: url(../img/btn_sprite.png) repeat-x 0 0;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.btn a:hover {
    background-position: 0 -62px;
}

.btn.btn_narrow {
    margin: 0 15px;
    width: 138px;
}

.btn .disable,
.btn .disable:hover {
    background-position: 0 -124px;
}

.btn .btn_back {
    background-position: 0 -186px;
}

.btn .btn_back:hover {
    background-position: 0 -248px;
}

/*ボタン水平配置*/
.horizontal_btn {
    text-align: center;
    letter-spacing: -0.4em;
}

.horizontal_btn > li {
    display: inline-block;
    margin-left: 28px;
    text-align: left;
    letter-spacing: normal;
    vertical-align: middle;
}

.horizontal_btn > li:first-child {
    margin-left: 0;
}

/*------------------------------
 * 01-03.ヘッダ・フッタ
 *------------------------------*/
/*ヘッダ*/
.header {
    position: fixed;
    top:0;
    left:0;
    background: #182987 url(../img/logo.png) no-repeat 0 50%;
    -webkit-background-size: 108px 40px;
    background-size: 108px 40px;
    width: 100%;
    height: 40px;
    z-index: 10;
}

.header p {
    background: url(../img/text_header.png) no-repeat 65% 50%;
    -webkit-background-size: 115px 27px;
    background-size: 115px 27px;
    width: 100%;
    height: 40px;
}

.header_menu {
    text-align: right;
}

.header_menu img {
    padding-right: 5px;
    height: 40px;
}

#chapter01, #chapter02, #chapter03 {
    margin-top: -40px;
    padding-top: 40px;
}

#application {
    margin-top: -40px;
    padding-top: 10px;
}

.btn_application {
    position: relative;
    width: 60%;
    max-width: 392px;
    margin: -35% 0 0 39%;
    float: left;
    z-index: 1;
}

.btn_application a {
    display: block;
    width: 100%;
}

.btn_application img {
    display: block;
    width: 100%;
}

/*メニュー*/
.menu {
    display: none;
    position: fixed;
    top: 35px;
    right: 0;
    width: 70%;
    padding: 1%;
    background-color: #34489B;
    border-right: 6px solid #FFF000;
    border-left: 6px solid #FFF000;
    z-index: 9;
}

.menu1, .menu2 {
    border-bottom: 1px solid #FFF;
}

.menu1, .menu2, .menu3 {
    padding: 5%;
}

.menu3 {
    padding-bottom: 10px;
}

.menu li a {
    color: #FFF;
    text-decoration: none;
}

/*フッタ*/
.footer {
    width: 100%;
    padding: 24px 0 36px;
    background-color: #040000;
    color: #FFF;
    font-size: 1.2rem;
    text-align: center;
}

.logo_footer {
    width: 252px;
    height: 21px;
    margin: 0 auto 18px;
    -webkit-background-size: 252px 21px;
    background-size: 252px 21px;
}

.footer li a {
    padding: 18px 6px;
    color: #FFF;
    text-decoration: none;
    vertical-align: middle;
}

.footer li a:hover {
    color: #0FA7F9;
}

/*------------------------------
 * 01-04.フォーム
 *------------------------------*/
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    border: 1px solid #B3B3B3;
    font-size: 1.6rem;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    height: 36px;
    padding: 2px 3px;
    vertical-align: top;
}

input[type="checkbox"],
input[type="radio"] {
    margin-right: 12px;
    border: 1px solid #979797;
}

input[type="checkbox"] {
    border-radius: 2px;
}

select {
    line-height: 1.2;
}

/*エラー*/
.error p {
    color: #F33;
}

.error input[type="text"],
.error input[type="email"],
.error textarea {
    border: 1px solid #ED623F;
    background-color: #FDEBD5;
}

/*==============================
 * 02.個別設定
 *==============================*/
.contents {
    margin-top: 40px;
    text-align: center;
}

.main {
    position: relative;
}

.main .point01, .main .point02, .main .point03 {
    width: 100%;
    padding: 2px 15px 10px;
    text-align: left;
}

/*PerceiveSとは*/
.setup01 {
    background: url(../img/bg_logo.png) no-repeat right top;
    -webkit-background-size: contain;
    background-size: contain;
    padding: 3% 0;
}

.setup01 p {
    min-height: 32px;
    padding-left: 45px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
}

.setup_point1 {
    background: url(../img/icon_point01.png) no-repeat left center;
    -webkit-background-size: 32px 32px;
    background-size: 32px 32px;
}

.setup_point2 {
    background: url(../img/icon_point02.png) no-repeat left center;
    -webkit-background-size: 32px 32px;
    background-size: 32px 32px;
}

.setup_point3 {
    background: url(../img/icon_point03.png) no-repeat left center;
    -webkit-background-size: 32px 32px;
    background-size: 32px 32px;
}

.setup2 {
    background: url(../img/bg_perceives.png) no-repeat left bottom;
}

/*お悩み解決*/
.solution_cont01 {
    width: 100%;
    padding: 15% 0 2%;
    background: url(../img/bg_solution01.png) no-repeat center top;
    -webkit-background-size: 100%;
    background-size: 100%;
    text-align: left;
}

.solution_cont01 .solution_q {
    width: 80%;
    margin: 0 auto 3%;
    padding: 5%;
    background-color: #000;
    color: #FFF;
}

.ex1 span {
    color: #FFF000;
}

.ex2 span {
    color: #FFC2C2;
}

.ex3 span {
    color: #D6FFE0;
}

.ex4 span {
    color: #C2C1E0;
}

.solution_cont01 .solution_img {
    margin-top: -5%;
    text-align: center;
}

.solution_cont02 p {
    text-align: left;
}

.solution_cont02 .report {
    min-height: 110px;
    background: url(../img/icon_report.png) no-repeat 0 5px;
    padding: 10px 5px 20px 102px;
}

.solution_cont02 .results {
    min-height: 110px;
    background: url(../img/icon_results.png) no-repeat 0 5px;
    padding: 10px 5px 20px 102px;
}

/*導入現場*/
.spot {
    background: url(../img/bg_spot.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    padding-top: 30%;
}

.spot dl {
    border: 1px solid #888;
    margin: 0 auto 10px;
    padding: 5px;
    width: 95%;
}

.spot dt, .spot dd {
    display: inline-block;
}

.spot dt {
    width: 30%;
}

.spot dd {
    width: 65%;
    padding-left: 5px;
    text-align: left;
    vertical-align: top;
}

/*現場への信頼を構築*/
.construct ul {
    padding: 0 40px;
}

.construct li {
    padding: 5px 0 5px 25px;
    background: url(../img/icon_check.png) no-repeat left center;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
    text-align: left;
}

.construct_cont {
    background: url(../img/bg_construct.png) no-repeat center top;
    -webkit-background-size: contain;
    background-size: contain;
    padding-top: 5px;
}

.construct_cont span {
    background-color: #FAED00;
}

/*料金プラン*/
.plan {
    background: -moz-linear-gradient(top, #182987, #5864a8);
    background: -webkit-gradient(linear, left top, left bottom, from(#182987), to(#5864a8));
}

.plan ul {
    padding: 5% 5% 70px;
    color: #FFF;
    text-align: left;
}

/*お申込みはこちら*/
.layout_application {
    padding: 18px 12px 36px;
    background-color: #EBEBED;
}

.layout_application h3 {
    margin: 18px auto;
    font-size: 1.8rem;
}

.layout_application > ul {
    max-width: 640px;
    margin: 0 auto 12px;
    text-align: left;
}

.layout_application .btn {
    margin: 0 auto;
    margin-bottom: 12px;
}

/*入力・登録確認*/
.registration {
    max-width: 640px;
    margin: 0 auto 30px;
    border-top: 1px solid #B4B4B5;
    text-align: left;
}

.registration_section {
    padding: 6px 0 18px;
    border-bottom: 1px solid #B4B4B5;
}

.registration_section {
    font-size: 1.4rem;
}

.registration_section dt {
    padding: 6px 0;
}

.registration_section dt span {
    color: #D4281B;
}

.registration_section input {
    width: 100%;
}

.registration_section li {
    width: 49%;
}

.registration_section li:first-child {
    margin-right: 2%;
}

/*送信完了*/
.complete {
    padding: 36px 0;
}

.complete p {
    max-width: 640px;
    margin: auto; 
    padding-top: 36px;
    font-size: 1.6rem;
    text-align: left;
}

/*個人情報の取扱いについて*/
.application_policy {
    width: 100%;
    margin: 10px auto 0;
    padding: 15px 10px 10px;
    border: 1px solid #bbb;
    background-color: #FFF;
    font-size: 1.4rem;
    text-align: left;
}

.application_policy .application_policy_heading {
    font-size: 1.8rem;
    text-align: center;
}

.application_policy p + p {
    margin-top: 10px;
}

.application_policy .application_policy_copyright {
    margin-top: 15px;
    text-align: right;
}

.application_policy .application_policy_copyright + p {
    margin-top: 15px;
}

.application_policy .application_policy_contact {
    margin-top: 10px;
    padding: 5px;
    border: 1px solid #D2D2D2;
}

.application_policy .application_policy_contact .subhead {
    font-size: 1.4rem;
}

.application_policy .application_policy_contact p {
    padding-left: 1em;
}

.application_policy_agree {
    margin-top: 15px;
    font-size: 1.6rem;
    text-align: center;
}

.application_policy_agree + .btn {
    margin-top: 20px;
}

/*------------------------------
 * 01-07.プライバシーポリシー
 *------------------------------*/
 /*
.policy .header h1 {
    position: static;
    height: 40px;
    padding: 8px 0;
    background-color: #182987;
    color: #FFF;
    font-size: 1.1rem;
    text-align: center;
}

.policy .contents {
    padding: 12px;
    text-align: left;
}

.policy .contents h2 {
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.policy .contents p,
.policy .contents ul,
.policy .contents dl {
    margin-bottom: 12px;
}

.policy .contents dt {
    font-weight: bold;
}
*/
/*------------------------------
 * プライバシーポリシー
 *------------------------------*/
.policy .header h1 {
    position: static;
    height: 40px;
    padding: 8px 0;
    background-color: #182987;
    color: #FFF;
    font-size: 1.1rem;
    text-align: center;
}

.section_policy {
    padding-top: 20px;
}

.policy_heading {
    position: relative;
    border-bottom: 2px solid #E5E5E5;
    font-weight: normal;
    font-size: 20px;
    text-align: center;
}

.policy_heading span {
    display: inline-block;
    margin-bottom: -2px;
    border-bottom: 2px solid #96D9A5;
}

.policy_lead {
    font-weight: bold;
}

.policy_lead + dl {
    margin-top: 20px;
}

.box_policy {
    max-width: 728px;
    margin: 20px auto 40px;
    padding: 0 10px 20px;
    font-size: 14px;
    text-align: left;
}

.box_policy dl + dl {
    margin-top: 20px;
}

.box_policy dt {
    font-weight: bold;
}

.box_policy dd {
    margin-top: 10px;
}

.box_policy dd + dd {
    margin-top: 20px;
}

.box_policy dd > dl:not(:first-of-type) {
    margin-top: 20px;
}

.box_policy dd > .policy_definition_normal {
    margin-top: 20px;
}

.box_policy dd > .policy_definition_normal:not(:first-of-type) {
    margin-top: 10px;
}

.box_policy dd > .policy_definition_normal dt {
    font-weight: normal
}

.policy_list_dots > li {
    position: relative;
    padding-left: 1em;
}

.policy_list_dots > li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    content: "・";
}

.policy_indent {
    position: relative;
    padding-left: 1em;
}

.policy_indent > b {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    font-weight: normal;
}

.policy_contact {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #D2D2D2;
}

.policy_contact .subhead {
    font-size: 14px;
}

.policy_contact p {
    padding-left: 1em;
}

dd .policy_contact {
    margin-top: 10px;
}

.policy_copyright {
    margin-top: 20px;
    text-align: right;
}

.policy_date {
    margin-top: 10px;
}

.policy_link {
    color: inherit;
}

.policy_table {
    margin: 10px auto 0;
    font-size: 12px;
}

.policy_table_col_1 {
    width: 40%;
}

.policy_table_col_2 {
    width: 60%;
}

.policy_table th,
.policy_table td {
    padding: 10px;
    border: 1px solid #CCC;
}

.policy_table th {
    text-align: left;
}

.policy_table thead th {
    background-color: #EFEFEF;
}

.policy_table tbody th {
    font-weight: normal;
}

.box_policy .btn {
    margin-top: 40px;
}