@CHARSET "UTF-8";

/*************************************************************
*  Common Base Style
*************************************************************/

body {
  background: #fff;
  color: #333;
  font-family: Arial,Helvetica,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  line-height: 1.62;
  text-align: center;
  height: 100%;
}

/* Link Style */
a {
  color: #0095d9;
  -moz-transition: linear 0.3s;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
}

a:HOVER {
  color: #1e50a2;
  text-decoration: none;
}

/* Image Width */
img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Input Box Layout */
input[type="text"], input[type="email"], input[type="search"], input[type="url"],
  input[type="password"] {
  border: 1px solid #bbb;
  border-top: 1px solid #999;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  height: 28px;
  padding: 2px 4px;
}

select {
  border: 1px solid #bbb;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  height: 28px;
  padding: 2px;
}

/*** Head Line *************************************/
hr {
  border: none;
  border-bottom: 1px solid #ccc;
  clear: both;
  margin: 1em 0;
}


/*************************************************************
* Common Use Class
*************************************************************/

/* Clear Fix */
.clear {
  *zoom: 1;
}

.clear:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

/* List Reset Style */
ul.reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.reset>li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Icon Link */
.ico-link i {
  margin-right: 8px;
}

/* Width Default Size */
.full {
  width: 100%;
}

.mdl {
  width: 75%;
}

.harf {
  width: 50%;
}

.tri {
  width: 33%;
}

.quad {
  width: 25%;
}

/* Default Align */
.t-right {
  text-align: right;
}

.t-ceter {
  text-align: center;
}

/* Box Table layout Style */
.tbl-wraper {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.tbl-cel {
  display: table-cell;
}

/* Inline block */
.ilblk {
  display: inline-block;
}

/* Margin Style */

.mg0 {
  margin: 0 !important;
}

.pd0 {
  padding: 0 !important;
}

.mg8 {
  margin: 8px !important;
}

.pd8 {
  padding: 8px !important;
}

/*************************************************************
* Button Parts
*************************************************************/

/* Button Base */
.btn {
  background: #efefef;
  border: #ccc 1px solid;
  border-radius: 1px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  color: #666;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  padding: 6px 8px;
  outline: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, .1);
  vertical-align: bottom;
  zoom: 1;
}

.btn:hover {
  background: #f9f9f9;
  text-decoration: none;
}

.btn:active {
  background: #eee;
  box-shadow: 0 0 2px rgba(0, 0, 0, .1), inset 0 1px 2px rgba(0, 0, 0, .1);
  color: #333;
  text-decoration: none;
  position: relative;
  top: 1px;
  text-shadow: none;
}

/* Base Button */
.btn-base {
  background: #444;
  border: 1px solid #444;
  color: #fff;
}

.btn-base:HOVER {
  background: #666;
}

.btn-base:active {
  background: #333;
  color: #ddd;
}


/*************************************************************
*  Modal Window
*************************************************************/
.mod-bkg {
  background: #666;
  background: rgba(0,0,0,.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.mod-close:after {
  color: #fff;
  content: "\f00d";
  cursor: pointer;
  display: block;
  font-family: FontAwesome;
  font-size: 32px;
  z-index: 100;
  line-height: 1;
  padding: 4px;
  position: fixed;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
}

.mod-content-img {
  height: 80%;
  position: fixed;
  top: 10%;
  left: 10%;
  width: 80%;
  z-index: 100;
}

.mod-content-img img {
  max-height: 100%;
}

.face .side-box {
  min-height: 500px;
}