@charset "utf-8";

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

　　Base Setting

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


/*  Overall Setting
--------------------------------------------- */

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #fbf9f1;
  font-family: "segoe UI", "YuGothic", "游ゴシック体", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;font-size: 1.5em;
  text-align: center;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

/*  Color Setting
-------------------------- */

/* -- Common Color -- */

body {
  color: #111;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: inherit;
}

/* -- Custom Color -- */

/* Default */
.txt-default,
.txt-default:hover,
.txt-default:focus {
  color: #999;
}

.txt-default-light,
.txt-default-light:hover,
.txt-default-light:focus {
  color: #bbb;
}

.txt-default-dark,
.txt-default-dark:hover,
.txt-default-dark:focus {
  color: #555;
}

/* Base */
.txt-base,
.txt-base:hover,
.txt-base:focus {
  color: #000;
}

.txt-base-light,
.txt-base-light:hover,
.txt-base-light:focus {
}

.txt-base-dark,
.txt-base-dark:hover,
.txt-base-dark:focus {
}

/* Primary */
.txt-primary,
.txt-primary:hover,
.txt-primary:focus {
  color: #00468c;
}

.txt-primary-light,
.txt-primary-light:hover,
.txt-primary-light:focus {
}

.txt-primary-dark,
.txt-primary-dark:hover,
.txt-primary-dark:focus {
}

/* Accent */
.txt-accent,
.txt-accent:hover,
.txt-accent:focus {
  color: #ca0000;
}

.txt-accent-light,
.txt-accent-light:hover,
.txt-accent-light:focus {
  color: #f00;
}

.txt-accent-dark,
.txt-accent-dark:hover,
.txt-accent-dark:focus {
  color: #a00000;
}

/* -- Form Color -- */

.form-control,
.search-input {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus,
.search-input:focus {
  border-color: #999;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 4px rgba(136, 136, 136, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 4px rgba(136, 136, 136, .6);
}

/* -- Placeholder Color -- */

:placeholder-shown {
  color: #999;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}


/*  Switch Display
-------------------------- */

.media-sp {
  display: none;
}


/*  Link Setting
-------------------------- */

a {
  text-decoration: underline;
}

a,
a img {
  transition: opacity .4s ease-in-out,color .4s ease-in-out,background-color .4s ease-in-out,border-color .4s ease-in-out;
}

a:hover {
  text-decoration: none;
}


/*  Form Setting
-------------------------- */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
button,
select,
textarea {
  border-radius: 3px;
  padding: 5px;
  font-size: 1em;
  font-family: "segoe UI", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 8px;
  padding: 0;
  font-size: 1.2em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  transition: border-color .3s ease-in-out;
  border: 1px solid #cec3b2;
}

select {
  min-width: 200px;
  height: 30px;
  padding: 0;
}


/*  Container Setting
--------------------------------------------- */

#container {
  position: relative;
  width: 100% !important;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  text-align: center;
}

.inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: left;
}


/*  Header Setting
--------------------------------------------- */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* ------ Site Logo ------ */

#header #logo {
}

#header #logo h1 {
  margin: 0;
}

#header #logo h1 a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  z-index: 1;
}

#header #logo p {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

#header #logo p img {
  width: 18%;
}

@media screen and (max-width: 890px) {
  #header #logo p img {
    width: 15%;
  }
}

/* -- Header Background -- */

#header:before {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: url(/share/imgs/header-bg-all.jpg) no-repeat top center;
  background-size: 110%;
  content: "";
}

/*  Content Settings
--------------------------------------------- */

#content {
  overflow: hidden;
  padding-top: 18%;
  padding-bottom: 214px;
}

/*  Content Top
----------------------------------- */

#content-top {
}

/*  Content Main
----------------------------------- */

#content-main { 
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fbf9f1;
}

#content-main > .inner {
  position: relative;
}

/*  Content Bottom
----------------------------------- */

#content-bottom {
  position: relative;
  z-index: 5;
  padding-top: 0;
  padding-bottom: 50px;
  background: #fbf9f1;
}


/*  2 Column Setting
----------------------------------- */

/* ---- Main ---- */

#main {
  float: left;
  width: 700px;
}

/* ---- Side ---- */

#side {
  float: right;
  width: 220px;
}


/*  Footer Setting
--------------------------------------------- */

#footer {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 214px;
  border-top: 1px solid #ddd;
  background: #fbf9f1;
  color: #000;
}

#footer .inner {
  padding: 50px 0;
  letter-spacing: -.40em;
}

/* ---- Address / Logo ---- */

.footer-address,
.footer-logo {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  letter-spacing: normal;
}

/* ---- Address ---- */

.footer-address {
  width: 60%;
  line-height: 1.7;
}

.footer-address dt {
  padding-bottom: 10px;
  font-size: 1.03em;
}

/* ---- Logo ---- */

.footer-logo {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  width: 40%;
  text-align: right;
}

/* ---- Page Top ---- */

#pagetop {
  display: block;
  position: absolute;
  top: -410px;
  right: auto;
  left: auto;
  z-index: 600;
  margin-left: 890px;
}

#pagetop.fxd {
  position: fixed;
  top: auto !important;
  bottom: 15px;
}

#pagetop a {
  display: block;
  transition: all 0.4s ease-in-out;
  float: right;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: url(/share/imgs/main-footer-btn-pagetop.png) no-repeat center #128543;
}

#pagetop a:hover,
#pagetop a:focus {
  background-color: #003215;
}

#pagetop a span {
  display: none;
}

