@charset "utf-8";

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

　　Base Setting

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


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

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

body {
  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: #333;
}

a {
  color: #333;
}

a:hover,
a:focus {
  color: #333;
}

/* -- Custom Color -- */

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

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

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

/* 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: #ff3333;
}

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

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

/* -- Form Color -- */

.form-control,
.search-input {
  border-radius: 0;
  border: 1px solid #ccc;
  -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;
  color: #333;
}

.form-control:focus,
.search-input:focus {
  border-color: #ccc;
  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: none;
}

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: underline;
}


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

.form-control {
  height: 30px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
button,
select,
textarea {
  border-radius: 0;
  padding: 5px;
  font-size: .9em;
  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;
}

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


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

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

#container.gt768 {
  width: 100% !important;
  position: relative !important;
  right: auto !important;
}

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


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

#header {
  position: relative;
  background: #fff;
}

#header,
#header a {
  color: #000;
}

.gt768 #header {
  left: 0 !important;
}

#header .inner {
  display: table;
  width: 100%;
  max-width: inherit;
  padding: 30px 40px;
  letter-spacing: -.40em;
  vertical-align: bottom;
}

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

#logo {
  display: table-cell;
  padding: 10px 30px 5px 0;
  vertical-align: bottom;
}

#logo h1 {
  margin: 0;
}

#logo a:hover {
  opacity: .7;
}

/* -------- Site Menu -------- */

#sitemenu {
  display: table-cell;
  font-size: .9em;
  font-weight: bold;
  text-align: right;
  letter-spacing: normal;
  vertical-align: bottom;
}

/* -- Menu Button -- */

#sitemenu #menu-btn {
  display: none;
}

/* -- Menu Content -- */

#sitemenu #menu {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
}

.gt768 #sitemenu #menu {
  display: block !important;
  height: auto !important;
  z-index: auto !important;
}

.gt768 #sitemenu #menu,
.gt768 #sitemenu #menu .sub-menu {
  overflow: visible !important;
}

/* ------ Global Navi ------ */

#gnav {
  letter-spacing: .05em;
}

#gnav .menu-list {
}

#gnav li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  padding: 8px 5px;
}

#gnav li.mediaSP {
  display: none !important;
}

#gnav li a {
  display: block;
  transition: color .4s ease-in-out;
  padding: 0 5px;
  color: #000;
  text-decoration: none;
}

#gnav li a:hover {
  color: #00468c;
}

#gnav li.current a {
  color: #ccc;
}

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

#content {
  padding-bottom: 250px;
  background: #f5f8fb;
}

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

#content-top {
}

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

#content-main {
  padding: 0 25px;
}

.gt768 #content-main {
  transform: translateY(40px);
  transform: translateY(0)\9;
  animation: tra2 1s ease-in-out 0s 1 forwards;
}

#content-main > .inner {
  position: relative;
  min-height: 500px;
  margin-top: -5%;
  padding: 50px 60px;
  background: #fff;
}

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

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

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

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

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


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

#footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 176px;
  color: #000;
  background: #fff;
}

#footer .inner {
  padding: 60px 40px;
  text-align: center;
}

#footer .inner > * {
  padding-top: 20px;
}

#footer .inner > *:first-child {
  padding-top: 0;
}

/* ---- Footer Navi ---- */

.footer-nav {
  font-size: .9em;
}

.footer-nav ul {
}

.footer-nav li {
  padding: 0 5px 10px;
}

.footer-nav a {
  display: block;
  transition: color .4s ease-in-out;
  padding: 0 5px;
  color: #000;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #777;
}

/* ---- Copyright ---- */

#copyright {
  display: block;
  clear: both;
  font-size: .78em;
  line-height: 1.6em;
}

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

#pagetop {
  display: none;
  position: fixed;
  top: auto !important;
  right: 20px;
  left: auto;
  bottom: 20px;
  z-index: 10;
  width: 42px;
  height: 42px;
  margin-left: 0;
  padding: 0 !important;
}

#pagetop a {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  overflow: hidden;
  transition: background .4s ease-in-out;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #111;
}

#pagetop a:before,
#pagetop a:after {
  transition: border-color .4s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -25px;
  margin-left: -18px;
  border-width: 18px;
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-radius: 100%;
  content: "";
}

#pagetop a:after {
  margin-top: -23px;
  border-bottom-color: #111;
}

#pagetop a:hover {
  opacity: 1;
  background-color: #666;
}

#pagetop a:hover:after {
  border-bottom-color: #666;
}

#pagetop a span {
  display: none;
}

