@charset "UTF-8";
/********************************************************************************************************
CSS 構成書

 File Name:      common.css
 Style Info:     全ページ共通CSS
 Author:         man'age
 Create Modified:2016.06.02
********************************************************************************************************/
/*==========================================================
1.Basic -基本設定-
==========================================================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Font base13px */
body {
  font: 0.8125em/1.57 メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, Helvetica, Arial, sans-serif;
  font-weight: lighter;
  color: #595757;
  -webkit-text-size-adjust: 100%;
}

/* Anchor */
a {
  color: #000;
  text-decoration: underline;
  outline: 0;
}
a:hover {
  color: #666;
}

/* Strong */
strong {
  font-weight: bold;
}

/* Emphasis */
em {
  color: #eb6877;
  font-weight: bold;
  font-style: normal;
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
}

/* preformatted text */
pre {
  font-size: 1.07em;
}

/* Address */
address {
  font-style: normal;
}

/* list */
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul, nav ol, nav li {
  margin: 0;
  padding: 0;
  display: block;
}

/* img */
img {
  outline: 0;
}

/* input */
:focus {
  outline: 0;
}

/*==========================================================
2.Layout -基本レイアウトパーツ設定-

body
 ┣#header
 ┣#container
 ┃　┣#contents
 ┃　┗.side
 ┗#footer
==========================================================*/
/* Basic Layout */
body {
  text-align: center;
}

#header .site-title,
#container,
#footer {
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  *zoom: 1;
  z-index: 1;
  text-align: left;
}
#header .site-title:after,
#container:after,
#footer:after {
  content: "";
  display: table;
  clear: both;
}

#contents {
  position: relative;
  overflow: hidden;
  width: 770px;
  float: left;
}

#side-left {
  float: left;
}

#side-right {
  float: right;
}

#footer {
  padding: 30px 0 35px;
  text-align: center;
}

/* Basic Background */
body {
  border-top-width: 5px;
  border-top-style: solid;
  background: #f2f1ea;
}
body.bank {
  border-top-color: #0072b1;
}
body.shinkin {
  border-top-color: #2b8129;
}

#header {
  background-color: #fff;
  -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/*********************************************
 HEADER
*********************************************/
#header {
  padding: 20px 0;
  margin-bottom: 30px;
}

/***** site title *****/
.site-title {
  position: relative;
  text-align: left;
  left: -11px;
  font-size: 2.15em;
  font-weight: bold;
}
body.bank .site-title {
  height: 54px;
  line-height: 54px;
}
body.shinkin .site-title {
  height: 59px;
  line-height: 59px;
}
.site-title a {
  text-decoration: none;
  letter-spacing: 0.075em;
}
body.bank .site-title a {
  color: #0072b1;
}
body.shinkin .site-title a {
  color: #2b8129;
}

/*==========================================================
3.Functions -各種パーツ設定-
==========================================================*/
/*********************************************
clearfix
*********************************************/
.cf {
  position: relative;
  *zoom: 1;
}
.cf:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

/*********************************************
section
*********************************************/
.section {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.section .content {
  *zoom: 1;
}
.section .content:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

/*********************************************
TITLE
*********************************************/
/* title */
/*********************************************
widget
*********************************************/
.widget {
  margin-bottom: 10px;
}

.widget-ttl {
  background-color: #ccc;
  padding: 11px 10px 10px;
  line-height: 1.0;
  text-align: center;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
}
.widget-ttl img {
  vertical-align: middle;
}

.widget-content {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #bfbfbf;
  border-top: 0 none;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0;
  border-radius: 0 0 5px 5px;
}

/*********************************************
figure
*********************************************/
/*********************************************
icon
*********************************************/
.ico {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-indent: -9999em;
  margin-left: 3px;
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/*********************************************
text
*********************************************/
.b {
  font-weight: bold;
  font-family: "メイリオ ボールド", "Meiryo Bold", "ヒラギノ角ゴ Pro W6", HiraKakuPro-W6, "Helvetica Bold", "Arial Black", sans-serif;
}

.under {
  text-decoration: underline;
}

.notice {
  text-indent: -1em;
  margin-left: 1em;
}

.note {
  font-size: 0.75em;
}

.big {
  font-size: 1.285em;
}

.small {
  font-size: 0.857em;
  letter-spacing: 0;
}

.red {
  color: #c00 !important;
}

/*********************************************
float
*********************************************/
.f_left {
  float: left;
}

.f_right {
  float: right;
}

.f_none {
  float: none;
}

/*********************************************
link
*********************************************/
a.imgLink {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}
a.imgLink:hover, a.imgLink.current {
  background-color: transparent;
}
a.imgLink:hover img, a.imgLink.current img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

/* button */
.btn {
  display: inline-block;
  padding: 0.75em 1.25em 0.5em;
  overflow: hidden;
  background: #0072b1;
  color: #fff;
  font-size: 1.14em;
  text-decoration: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.btn:hover {
  background-color: #89ced9;
  color: #fff;
}

/*********************************************
dl
*********************************************/
/* inline list */
.inlineList {
  margin-bottom: 1em;
}
table .inlineList {
  margin-bottom: 0;
}
.inlineList dl {
  position: relative;
  overflow: hidden;
  margin-top: 0.25em;
}
.inlineList dl:first-child {
  margin-top: 0;
}
.inlineList dt, .inlineList dd {
  display: inline-block;
}
.inlineList dt {
  margin-right: 0.5em;
}

dl.dl dt {
  margin-top: 0.5em;
  margin-bottom: 0.25em;
}
dl.dl dt:first-child {
  margin-top: 0;
}

/*********************************************
list
*********************************************/
/* normal list */
.list ul, .list ol {
  margin-top: 5px;
}
.list li {
  margin-bottom: 5px;
}

ul.list {
  padding-left: 1.5em;
  list-style-type: disc;
}

ol.list {
  padding-left: 2em;
  list-style-type: decimal;
}

/* notice list  */
ul.noticelist {
  text-indent: 0;
  margin-left: 0;
}
ul.noticelist li {
  text-indent: -1em;
  margin-left: 1em;
}
ul.noticelist li:before {
  content: '※';
}

/*********************************************
table
*********************************************/
.table th, .table td {
  text-align: left;
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #595757;
}
.table th {
  background: #f2f2f2;
  font-weight: normal;
}

/*********************************************
form
*********************************************/
input, select, textarea {
  margin: 0.25em;
  font-size: 1em;
}

textarea {
  min-height: 20em;
}

input[type="text"],
input[type="password"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="email"],
textarea {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 0.85em 0.5em;
  vertical-align: middle;
  width: 99%;
  color: #333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #20abc8;
  -moz-box-shadow: inset #20abc8 0 0 10px;
  -webkit-box-shadow: inset #20abc8 0 0 10px;
  box-shadow: inset #20abc8 0 0 10px;
}

input[type="file"] {
  max-width: 94%;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}

select, option {
  font-size: 16px;
  max-width: 94%;
  word-break: break-all;
}

input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
  cursor: pointer;
  border: 0 none;
  font-size: 1em;
  font-weight: bold;
  color: #616161;
  padding: 0.5em 1.25em;
  background-color: #cfcfcf;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NmY2ZjZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #cfcfcf));
  background-image: -moz-linear-gradient(#ffffff, #cfcfcf);
  background-image: -webkit-linear-gradient(#ffffff, #cfcfcf);
  background-image: linear-gradient(#ffffff, #cfcfcf);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.17);
}

/* btn wrap */
.btnWrap {
  text-align: center;
  margin: 40px 0 20px;
}

/*==========================================================
9.Media Queries -タブレット／スマホ用スタイル-
==========================================================*/
/* 640px以下用（スマートフォン用）の記述
----------------------------------------------------------*/
@media screen and (max-width: 640px) {
  img {
    max-width: 100% !important;
  }

  /*==========================================================
  2.Layout -基本レイアウトパーツ設定-
  ==========================================================*/
  /* Basic Layout */
  #header,
  #footer {
    width: 96%;
    padding-left: 2%;
    padding-right: 2%;
  }

  #contents > .inner {
    width: 100%;
  }

  #main {
    float: none;
    width: 100%;
    margin: 0;
    overflow: visible;
  }

  #mainContent {
    width: 96%;
    padding-left: 2%;
    padding-right: 2%;
  }

  #side {
    display: none;
  }

  #footer {
    width: 92%;
    padding: 0 4%;
  }

  /* Basic Background */
  body {
    border-top: 0 none;
    background: #fff;
  }

  #contents:before {
    content: none;
  }
}
