@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : common.css
 author     : UCI
 style info : UCI
=================================================================== */
/*Animate */
/*Vertical text */
/* -----------------------------------------------------------
	基本設定、リンクカラーなど
----------------------------------------------------------- */
html {
  /*font-size: small;*/
  /*line-height: 1.5;*/
}

body #contents {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  font-size: 108%;
}
.ie body #contents {
  font-size: 105%;
}
@media only screen and (max-width: 767px) {
  body #contents {
    font-size: 100%;
  }
}
body #contents a {
  color: #1a1a1a;
}
body #contents a:link, body #contents a:visited, body #contents a:active {
  text-decoration: underline;
}
.mouse body #contents a:hover, .touch body #contents a.touchstart {
  text-decoration: none;
  color: #333333;
}
body #contents img {
  max-width: 100%;
  -webkit-touch-callout: none;
}
body #contents p, body #contents ul, body #contents ol, body #contents blockquote, body #contents dl, body #contents figure, body #contents h1, body #contents h2, body #contents h3, body #contents h4, body #contents h5, body #contents h6, body #contents hr, body #contents menu {
  margin: 0;
}

html.ie8 .view_tab,
html.ie8 .view_tab_sp,
html.ie8 .view_sp {
  display: none !important;
}
html.ie8 #page {
  min-width: 960px !important;
  margin: auto;
  font-size: 100% !important;
}

@media only screen and (min-width: 1025px) {
  body .view_tab-sp, body .view_tab {
    display: none !important;
  }
}
@media print {
  body .view_tab-sp, body .view_tab {
    display: none !important;
  }
}
.ie8 body .view_tab-sp, .ie8 body .view_tab {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  body .view_sp {
    display: none !important;
  }
}
@media print {
  body .view_sp {
    display: none !important;
  }
}
.ie8 body .view_sp {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  body .view_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body .view_pc-tab, body .view_tab {
    display: none !important;
  }
}

.over:hover {
  -moz-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  -webkit-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

#contents * {
  outline: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-style: normal;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* -----------------------------------------------------------
	#page
----------------------------------------------------------- */
#page {
  padding-top: 65px;
}

/* -----------------------------------------------------------
	header
----------------------------------------------------------- */
header {
  z-index: 50000;
}

/* -----------------------------------------------------------
	con_breadcrum
----------------------------------------------------------- */
.con_breadcrum {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 0;
}
.con_breadcrum .box_breadcrum {
  display: flex;
}
.con_breadcrum .box_breadcrum li {
  padding-left: 1.5em;
  font-size: 12px;
  line-height: 1;
  position: relative;
}
.con_breadcrum .box_breadcrum li:before {
  content: '';
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  width: 4px;
  height: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0.3em;
  left: 0.5em;
}
.con_breadcrum .box_breadcrum li a {
  text-decoration: none;
  color: #000;
}
.con_breadcrum .box_breadcrum li a:visited {
  color: #000;
}
.con_breadcrum .box_breadcrum li.home {
  padding: 0;
}
.con_breadcrum .box_breadcrum li.home:before {
  content: none;
}
