/*-----------------------------------------------

/* Foundation

/*---------------------------------------------*/

/*
Foundation（ファンデーション）--------------------------------------------------------------------------------------------
ブラウザのデフォルトスタイルの初期化や、創業手帳の基本的なスタイルを定義
全体の背景や、基本的なフォントなど
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    /*font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;*/
    font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    /*font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;*/
    /*font-family: Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
}
html {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block }
ol, ul { list-style: none }
blockquote, q {
    quotes: none;
    font-family: georgia;
    font-size: 18px;
    font-style: italic;
}
blockquote:before, q:before, q:after {
    content: '';
    content: none;
}
sup, sub {
    height: 0;
    line-height: 1;
    vertical-align: baseline;
    _vertical-align: bottom;
    position: relative;
    font-size: 10px;
}
sup { vertical-align: text-top; }
sub { top: .5ex }
table {
    border-collapse: collapse;
    border-spacing: 0;
}
button, input, select, textarea { margin: 0 }
:focus { outline: 0 }
img, video, object {
    max-width: 100%;
    height: auto;
}
iframe { max-width: 100% }

blockquote{
  display:block;
  background: #fff;
  padding: 5px 20px 5px 35px;
  margin: 0 0 20px 20px;
  position: relative;

  /*Font*/
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;

  /*Borders - (Optional)*/
  border-left: 10px solid #907EF9;
  border-right: 2px solid #907EF9;

  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/

  /*Font*/
  font-family: Georgia, serif;
  font-size: 45px;
  font-weight: bold;
  color: #999;

  /*Positioning*/
  position: absolute;
  left: 5px;
  top:5px;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #c76c0c;
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}

strong, b { font-weight: bold }
em, i, cite { font-style: italic }
cite {
    display: block;
    width: 100%;
    text-align:right;
    font-size:80%
}
cite a:link {
    color: inherit;
    text-decoration: none;
    background: none;
}
small { font-size: 100% }
figure { margin: 10px 0 }
code, pre {
    font-weight: normal;
    font-style: normal;
}
code {
    padding: 0 8px;
    line-height: 1.5;
}
address {
    margin: 10px 0;
    font-style: italic;
}
dl { }
dt {
    float: left;
    clear: left;
    text-align: right;
    font-weight: bold;
}
dd {
    margin: 0 0 0 110px;
    padding: 0 0 0.5em 0;
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 12px;
    color: #444444;
}

p { margin-bottom: 20px }
a {
    text-decoration: none;
    -webkit-transition: background-color, color 0.2s linear;
    -moz-transition: background-color, color 0.2s linear;
    transition: background-color, color 0.2s linear;
}

body {
    font: 14px/23px Droid Sans, sans-serif;
    color: #444;
    background-color: #FFFFFF;
}
::-moz-selection {
    background: #222;
    color: #bbbbbb;
    text-shadow: none;
}
::selection {
    background: #222;
    color: #bbbbbb;
    text-shadow: none;
}

/* フォームフォーカス */
form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="checkbox"],
form input[type="radio"],
form textarea,
form select
{
background-color:#ffffff;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="checkbox"]:focus,
form input[type="radio"]:focus,
form textarea:focus,
form select:focus
{
background-color:#FFF0F0;
}

span.wpcf7-form-control-wrap {
    position: static;
}

form input[type="checkbox"],
form input[type="radio"] {
    margin: 5px;
}

/*-[ Form Input ]------------------*/
input, textarea, select {
    padding: 8px 12px;
    font-size: 13px;
    color: #222222;
    border: 1px solid #D1D1D1;
}
textarea {
    overflow: auto;
    resize: vertical;
}
select { padding: 5px }
input:focus, textarea:focus { }
.paragraph span.wpcf7-list-item{
    display: block;
}
.wpcf7-submit,
.basic_btn--cnv {
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: #febb5f;
    background: -webkit-gradient(linear, left top, left bottom, form(#febb5f), bottom(#fa9102));
    background: -webkit-linear-gradient(top, #febb5f 0%, #fa9102 100%);
    background: linear-gradient(to bottom, #febb5f 0%,#fa9102 100%);
    filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary_color', endColorstr='$secondary_color',GradientType=0 )";
    border: 1px solid #fa9000;
    color: #fff !important;
    text-shadow: 1px 1px 1px #b26904;
    cursor: pointer;
}

input.wpcf7-submit:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}

.checkbox-818 .wpcf7-list-item, .discovery .wpcf7-list-item, .interest .wpcf7-list-item, .interest-service .wpcf7-list-item, .interest-specialty .wpcf7-list-item, .interest-seminar .wpcf7-list-item, .order .wpcf7-list-item, .trouble-kind .wpcf7-list-item, .your-theme .wpcf7-list-item, .present .wpcf7-list-item, .use-service .wpcf7-list-item {
    display: block;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee!important;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}

/*-[ Tables ]--------------------*/
table {
    text-align: left;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
}
thead {
    background: rgba(0, 0, 0, 0.06);
    font-size: 14px;
    color: #585F65;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
table th, table td {
    padding: 5px 5px 5px 10px;
    border: 1px solid #DDDDDD;
}
thead th { padding: 14px }
tbody th {
    font-weight: normal;
    background: #F2F2FF;
}
table.no-border {
    border: 0;
}
table.no-border td {
    border: 0;
}

.service-request {
    width: 100%;
    margin-top: 8px;
}
.service-request-title {
    width: 70%;
}
.service-request-check {
    width: 30%;
}
/*-[ Line ]---------------------*/
hr {
    border: none;
    border-bottom: 1px solid #E5E5E5;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 297px;
    margin: 35px 0;
    clear: both;
    position: relative;
}

.formError .formErrorContent {
    border: none!important;
    box-shadow: none!important;
    font-size: 12px!important;
    background: #F374A1!important;
    padding: 2px 5px;!important
}

.formError .formErrorArrow div {
    border-left: none!important;
    border-right: none!important;
    box-shadow: none!important;
    background: #F374A1!important;
}

/*-[ Framework ]--------------------*/
.body {
    font-size: 16px;
}

.post {
    background-color: #ffffff!important;
}

.container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

.wp-caption {
    max-width: 100%;
    background: #EEE;
    padding: 8px;
    width: auto!important;
}

.gallery dt {
    width: auto;
    text-align: center;
    float: none;
}

.gallery img {
    border: 0!important;
}

.wp-caption-text {
    margin-bottom: 0;
    text-align: left;
}
