@charset "UTF-8";
/*
---------------------------------------------------
basic.css / LastUpDate 2014.06.24

==HTML5 display definitions
==BASE (*Editable)
==FONT (*Editable)
==ANCHOR (*Editable)
==IMAGES (*Editable)
==TABLE
==FORM
==HORIZONTAL RULE
==DIV
==OTHER
==CLEARFIX
==MQ
==MEMO
---------------------------------------------------
*/

/*
---------------------------------------------------
==HTML5 display definitions
---------------------------------------------------
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio: not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}


/*
---------------------------------------------------
==BASE
---------------------------------------------------
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}


/*
---------------------------------------------------
==FONT
---------------------------------------------------
*/
html {
  height: auto;
  min-height: 100%;
   overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* iOS tap color */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 13px;
  *font-size: small;
  *font: x-small;
  height: 100%;
  line-height: 1;
}

/* Print the background image & color for webkit */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
}

html,
body,
button,
input,
select,
textarea {
  font-family: 'Hiragino Kaku Gothic Pro', Meiryo, 'MS PGothic', sans-serif;
}

/* ==SizeVariation */
.fss,
.fssl {
  font-size: 77% !important;
}

.fs,
.fsl {
  font-size: 85% !important;
}

.fr,
.frl {
  font-size: 100% !important;
}

.fm,
.fml {
  font-size: 116% !important;
}

.fb,
.fbl {
  font-size: 131% !important;
}

.fsl,
.frl {
  line-height: 1.4;
}

.fml,
.fbl {
  line-height: 1.5;
}

em {
  font-style: normal;
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

small {
  font-size: 100%;
}

ruby rt {
  font-size: 77%;
}

ruby rt:before {
  content: "（";
}

ruby rt:after {
  content: "）";
}

/* ==textAlignVariation */
.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}


/*
---------------------------------------------------
==ANCHOR
---------------------------------------------------
*/
a {
  color: #3b4d8c;
  text-decoration: none;
}

a:visited {
  color: #3b4d8c;
  text-decoration: none;
}

a:hover {
  color: #5a79ba;
  text-decoration: underline;
}

a:focus { /* for chrome */
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

a img {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a img:hover {
  opacity: 0.6;
}

/*
---------------------------------------------------
==IMAGES
---------------------------------------------------
*/
img {
  background: transparent;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

/* IMAGES WIDTH PRESET for smartphone */
img.widthAuto {
  height: auto;
  max-width:100%;
  width: 100%;
  width: auto\9; /* for IE8 */
  zoom: normal;
}

svg:not(:root) {
  overflow: hidden;
} /* for IE9 */


/*
---------------------------------------------------
==TABLE
---------------------------------------------------
*/
table {
  border: none;
  border-spacing: 0;
  border-collapse: collapse;
}

th, td {
  font-weight: normal;
  line-height: 1.4;
  text-align: left;
}

caption {
  font-weight: normal;
  text-align: left;
}


/*
---------------------------------------------------
==FORM
---------------------------------------------------
*/
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

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

.tbl02 input[type="text"] {
	width:100%;
}
.tbl02 textarea {
	width:100%;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  *height: 13px;
  *width: 13px;
}

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-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

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

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


/*
---------------------------------------------------
==HORIZONTAL RULE
---------------------------------------------------
*/
hr {
  border: none;
  border-top: 1px solid #999;
  display: block;
  *display: list-item;
  *filter: alpha(opacity=0);
  height: 1px;
  margin: 1.5em 0;
  padding: 0;
  *width: 0;
}

hr.dotted {
  border-style: dotted;
}

hr.space {
  clear: both;
  margin: 10em 0 0;
  padding: 0;
  visibility: hidden;
}

hr.clrFix {
  height: 1px;
  margin: 0;
  padding: 0;
}


/*
---------------------------------------------------
==OTHER
---------------------------------------------------
*/
del {
  text-decoration: line-through;
}

abbr[title],
dfn[title],
acronym {
  cursor: help;
  border-bottom: 1px dotted;
}

mark {
  background: #ff0;
  color: #000;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

blockquote,
q { /* for IE6-7 */
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before, q:after {  /* for Safari4 */
  content: '';
  content: none;
}

sub,
sup {
  font-size: 77%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

p.notes {
  padding-left: 1em;
  text-indent: -1em;
}


/*
---------------------------------------------------
==DIV
---------------------------------------------------
*/
.col2 {
  float: left;
  width: 49%;
}

.clrFix .col2:first-child {
  margin-right: 2%;
}

.col3 {
  float: left;
  margin-left: 2%;
  width: 32%;
}

.clrFix .col3:first-child {
  margin-left: 0%;
}


/*
---------------------------------------------------
==CLEARFIX (micro clearfix)
---------------------------------------------------
*/
.clrFix:before,
.clrFix:after {
  content: "";
  display: table;
}

.clrFix:after {
  clear: both;
}

/*
---------------------------------------------------
==MEMO
---------------------------------------------------
*/
/* FontsizeList */
.f10 { font-size: 77%; }
.f11 { font-size: 85%; }
.f12 { font-size: 93%; }
.f13 { font-size: 100%; }
.f14 { font-size: 108%; }
.f15 { font-size: 116%; }
.f16 { font-size: 123.1%; }
.f17 { font-size: 131%; }
.f18 { font-size: 138.5%; }
.f19 { font-size: 146.5%; }
.f20 { font-size: 153.9%; }
.f21 { font-size: 161.6%; }
.f22 { font-size: 167%; }
.f23 { font-size: 174%; }
.f24 { font-size: 182%; }
.f25 { font-size: 189%; }
.f26 { font-size: 197%; }

/*
---------------------------------------------------
==Twitterふきだしボタン 20170515追加
---------------------------------------------------
*/
.twitter_btn_h{
  width: 116px;
}

.twitter_btn_h .arrow_box{
    float: right;
    line-height: 20px;
    height: 20px;
    width: 40px;
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
    font-family: "Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
    font-size: 11px;
    text-align: center;
}

.twitter_btn_h .arrow_box {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
}
.twitter_btn_h .arrow_box:after,
.twitter_btn_h .arrow_box:before {
    right: 100%;
    top: 50%;
    left: auto;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.twitter_btn_h .arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 3px;
    margin-top: -3px;
}

.twitter_btn_h .arrow_box:before {
    border-color: rgba(204, 204, 204, 0);
    border-right-color: #ccc;
    border-width: 4px;
    margin-top: -4px;
}

/*
---------------------------------------------------
==Twitterふきだしボタン縦 20170515追加
---------------------------------------------------
*/

.twitter_btn{
  width: 68px;
}

.arrow_box {
  position: relative;
  background: #fff;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  text-align: center;
  font-size: 11px;
  height: 33px;
  line-height: 33px;
  display: block;
  text-decoration: none;
  color: #333;
  border-radius: 3px;
  font-family: "Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
}
.arrow_box:after, .arrow_box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 3px;
  margin-left: -3px;
}
.arrow_box:before {
  border-color: rgba(221, 221, 221, 0);
  border-top-color: #ccc;
  border-width: 4px;
  margin-left: -4px;
}