@charset "UTF-8";
/* --------------------------------------------------
  Reset
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type="text"],
input[type="email"],
input[type="button"],
input[type="submit"],
textarea, select, option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* --------------------------------------------------
  Basic Styles
-------------------------------------------------- */
/* -------------------------
  Text
------------------------- */
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ","Meiryo", Osaka, Helvetica, Arial, Verdana, sans-serif, "ＭＳ Ｐゴシック","MS PGothic";
  color: black;
  background: white;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 15px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0px;
  word-break: break-word;
}

a:link,
a:visited {
  color: black;
  text-decoration: none;
}

a:hover,
a:active {
  color: black;
  text-decoration: none;
}

::selection {
  color: white;
  background: black;
}

::-moz-selection {
  color: white;
  background: black;
}

::-webkit-selection {
  color: white;
  background: black;
}

/* -------------------------
  Form
------------------------- */
select {
  cursor: pointer;
  width: 100%;
  padding: 12px 15px;
  border: 2px solid black;
  background-color: white;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 14px;
}

input[type="submit"] {
  cursor: pointer;
  width: 100%;
  padding: 15px;
  background-color: black;
  border: none;
  color: white;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* --------------------------------------------------
  External libs
-------------------------------------------------- */
/* -------------------------
  owl.carousel.css
------------------------- */
/*
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
*   Owl Carousel Owl Demo Theme
* v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

.slider_section {
  position: relative;
  min-height: 267px;
}
.slider_section:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -27px;
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/images/owl/AjaxLoader.gif");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.owl-theme .owl-controls .owl-page span {
  width: 11px;
  height: 11px;
  margin: 5px 15px;
  background: #000;
  border: 1px solid #e8e8de;
}

.owl-theme .owl-controls .owl-page.active span {
  background: #e8e8de;
  border: 1px solid #e8e8de;
}

.owl-theme .owl-controls {
  margin-top: 0px;
  padding: 15px 0;
  background-color: #000;
}

.owl-wrapper-outer {
  line-height: 0;
}

li.item {
  width: 100%;
}
li.item img {
  width: 100%;
}

/* --------------------------------------------------
  Templates
-------------------------------------------------- */
/* -------------------------
  Container
------------------------- */
html, body {
  height: 100%;
}

.container {
  position: relative;
  width: 100%;
  padding-top: 50px;
  background-color: #e8e8de;
  box-sizing: border-box;
}

.outSideLine {
  position: relative;
  width: 100%;
  height: 100%;
  border-left: 10px solid black;
  border-right: 10px solid black;
  border-bottom: 10px solid black;
  box-sizing: border-box;
}

.inSideLineL,
.inSideLineR,
.inSideLineT,
.inSideLineB {
  position: absolute;
  z-index: 9999;
  box-sizing: border-box;
}
.inSideLineL span,
.inSideLineR span,
.inSideLineT span,
.inSideLineB span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
}

.inSideLineL {
  left: 5px;
  top: 0px;
  width: 1px;
  height: 100%;
  padding: 5px 0;
}

.inSideLineR {
  right: 5px;
  top: 0px;
  width: 1px;
  height: 100%;
  padding: 5px 0;
}

.inSideLineT {
  left: 0px;
  top: 5px;
  width: 100%;
  height: 1px;
  padding: 0 5px;
}

.inSideLineB {
  left: 0px;
  bottom: 5px;
  width: 100%;
  height: 1px;
  padding: 0 5px;
}

.innerContentsSection {
  width: 100%;
  margin: 0 auto;
  padding: 45px 0;
}
.innerContentsSection > section {
  width: 100%;
  min-width: 600px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* -------------------------
  Nav
------------------------- */
.globalNav {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 720px;
  height: 50px;
  background-color: black;
}
.globalNav .gNav {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 0 0;
}
.globalNav .gNav li {
  display: inline-block;
  margin: 0 40px;
}
.globalNav .gNav li a {
  display: block;
  padding: 5px;
}
.globalNav .snsPages {
  position: absolute;
  right: 15px;
  top: 12px;
}
.globalNav .snsPages li {
  display: inline-block;
  padding: 5px;
}

.gNav li {
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}
.gNav li .bdB {
  width: 0%;
  height: 1px;
  bottom: 0px;
  right: 0;
  margin: 2px 0 0;
  background-color: #e8e8de;
}

.gNav li:hover .bdB {
  width: 100%;
  transition: 0.2s;
}

.gNav li.current .bdB {
  width: 100%;
}

/* --------------------------------------------------
  Components
-------------------------------------------------- */
/* -------------------------
  Loader
------------------------- */
#loading {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
#loading:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: white;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
#loading:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("/assets/images/common/loader.gif");
  background-position-x: left;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px;
}

/* -------------------------
  Title
------------------------- */
.ttlHead {
  padding: 0 0 40px;
  text-align: center;
}

/* -------------------------
  Text
------------------------- */
.itl {
  font-style: italic;
}

/* --------------------------------------------------
  Initialize Display
-------------------------------------------------- */
