@charset "UTF-8";
/* --------------------------------------------------
@import css
-------------------------------------------------- */
/* RESET CSS - ress.css */
@import url(./ress.css);
/* ICON FONT - font awesome */
@import url(./font-awesome.min.css);
/* UTILITY CSS*/
@import url(./util.css);
/* WEB FONTS - Noto Sans Japanese */
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
/* WEB FONTS - Sawarabi Mincho */
@import url('https://fonts.googleapis.com/earlyaccess/sawarabimincho.css');
/*はんなり明朝*/
@font-face {
  font-family: "hannari";
  src: url(../fonts/hannari/hannari.eot);
  src: url(../fonts/hannari/hannari.eot?#iefix) format('embedded-opentype'),
       url(../fonts/hannari/hannari.otf) format('opentype'),
       url(../fonts/hannari/hannari.woff) format('woff'),
       url(../fonts/hannari/hannari.ttf) format('truetype'),
       url(../fonts/hannari/hannari.svg#fontset) format('svg');
  font-weight: normal;
  font-style: normal;
}

/* --------------------------------------------------
MEDIA QUERY FORMAT
---------------------------------------------------*/
@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
}

@media screen and (max-width: 320px) {
}

/* --------------------------------------------------
CSS Browser Selector FORMAT - OS
---------------------------------------------------*/
.win {/*Windows (全バージョン)のみ*/}
.vista {/*Windows Vistaのみ*/}
.linux {/*linux（x11とlinux）のみ*/}
.mac {/*Mac OSのみ*/}
.freebsd {/*FreeBSDのみ*/}
.ipod {/*iPod Touchのみ*/}
.iphone {/*iphoneのみ*/}
.ipad {/*ipadのみ*/}
.webtv {/*WebTVのみ*/}
.j2me {/*J2ME Devices（例えばOpera mini）のみ*/}
.blackberry {/*blackberryのみ*/}
.android {/*Google Androidのみ*/}
.mobile {/*全てのモバイルデバイスのみ*/}

/* --------------------------------------------------
CSS Browser Selector FORMAT - Browser
---------------------------------------------------*/
.ie {/*Internet Explorer（全バージョン）のみ*/}
.ie8 {/*Internet Explorer 8.xのみ*/}
.ie7 {/*Internet Explorer 7.xのみ*/}
.ie6 {/*Internet Explorer 6.xのみ*/}
.ie5 {/*Internet Explorer 5.xのみ*/}
.gecko {/*Firefox（全バージョン）とCaminoのみ*/}
.ff2 {/*Firefox 2のみ*/}
.ff3 {/*Firefox 3のみ*/}
.ff3_5 {/*Firefox 3.5のみ*/}
.ff3_6 {/*Firefox 3.6のみ*/}
.opera {/*Opera（全バージョン）のみ*/}
.opera8 {/*Opera 8.xのみ*/}
.opera9 {/*Opera 9.xのみ*/}
.opera10 {/*Opera 10.xのみ*/}
.konqueror {/*Konquerorのみ*/}
.webkit {/*Safari, NetNewsWire, OmniWeb, Shiira, Google Chromeのみ*/}
.safari {/*Safari, NetNewsWire, OmniWeb, Shiira, Google Chromeのみ*/}
.safari3 {/*Safari 3.xのみ*/}
.chrome {/*Google Chromeのみ*/}
.iron {/*SRWare Ironのみ*/}

/* --------------------------------------------------
base layout
---------------------------------------------------*/
* {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/*
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
*/

html {
  font-size: 62.5% !important; /* 62.5% = 10px = 1.0rem */
  height: 100%;
}

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

.page {
  width: 100%;
  min-width: 1280px;
  height: 100%;
  font-family: 'Noto Sans Japanese', "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #444;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------
sys
---------------------------------------------------*/
.sans {
  font-family: "Noto Sans Japanese", "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Sawarabi Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.android .serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "hannari", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

a:link {
  color: #444;
  text-decoration: none;
}

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

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

.on a,
.off a,
.active a {
  cursor: default;
  pointer-events: none;
}

.cap,
.caption {
  background: none;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
}

.cap {
  padding-top: 5px;
}

img {
  width: auto;
  max-width: 100%;
  line-height: 1;
}

.ph {
}

.ph img {
  width: 100%;
}

.wrap {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

.hov {
  opacity: 1;
}

.hov:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
  -ms-filter: "alpha(opacity=75)";
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
}

/* --------------------------------------------------
header
---------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  z-index: 2;
  width: auto;
  padding: 15px 0 0 40px;
}

header a {
  display: block;
}

header:after {
  content: "";
  display: block;
  clear: both;
}

h1.siteTitle {
  max-width: 240px;
}

/* --------------------------------------------------
nav format
---------------------------------------------------*/
nav ul {
  text-align: center;
  font-size: 0;
  line-height: 1;
}

nav ul li {
  display: inline-block;
  vertical-align: middle;
}

nav ul li:hover a,
nav ul li.on a {
  font-weight: bold;
}

nav ul li.on a:hover {
  text-decoration: none;
}

nav ul li.off {
  pointer-events: none;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
}

/* --------------------------------------------------
gNav
---------------------------------------------------*/
#gNav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  padding: 0 30px 0 0;
}

#gNav ul {
  text-align: right;
  width: 100%;
  margin: 0 auto;
}

#gNav ul li {
  padding: 15px;
}

#gNav ul li a {
  display: block;
  color: #e2e2e2;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: bold;
}

#gNav ul li a:hover {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: bold;
}

/* --------------------------------------------------
fNav
---------------------------------------------------*/
#fNav ul {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
}

#fNav ul li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 30px;
  line-height: 3rem;
}

#fNav ul li:after {
  display: inline-block;
  content: "｜";
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  padding: 0 5px;
}

#fNav ul li:last-child:after {
  display: none;
}

/* --------------------------------------------------
pagetop
---------------------------------------------------*/
#pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  margin: 0 auto;
}

#pagetop a {
  display: block;
  max-width: 40px;
}

/* --------------------------------------------------
footer
---------------------------------------------------*/
footer {
  width: 100%;

}

footer:after {
  content: "";
  display: block;
  clear: both;
}

/* --------------------------------------------------
copyright
---------------------------------------------------*/
#copyright {
  text-align: center;
  background: #082143;
  height: 40px;
  margin: 0 auto;
  padding: 15px;
}

#copyright img {
  max-width: 303px;
}
