@charset "UTF-8";
/* ===================================================================
format
=================================================================== */
/*	html
--------------------------------------------------------------------*/
html {
  /* font-size指定をremで設定するための処理　1.6rem = 16px */
  font-size: 62.5%;
}

/*	body
--------------------------------------------------------------------*/
body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "FontAwesome";
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "FontAwesome";
  }
}
/*	a:link,a:visited,a:hover,a:active
--------------------------------------------------------------------*/
a:link, a:visited {
  color: #aaa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: #aaa;
}

/*	img
--------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*	ul,ol
--------------------------------------------------------------------*/
ul,
ol {
  list-style: none;
}

/*	table
--------------------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #858585;
  border-left: 1px solid #858585;
}

th,
td {
  padding: 0.5em;
  border-right: 1px solid #858585;
  border-bottom: 1px solid #858585;
}

/*	movie
--------------------------------------------------------------------*/
.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*	form
--------------------------------------------------------------------*/
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 0 0.5em;
  font-size: 1.6rem;
  border: 1px solid #ddd;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
select {
  height: 40px;
}

input[type=radio],
input[type=check] {
  margin-right: 0.6em;
}

textarea {
  height: 120px;
}

button {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
  text-align: center;
  font-size: 1.4rem;
  border-radius: 4px;
}

button :hover {
  cursor: pointer;
  opacity: 0.7;
}

.btn_check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.btn_check button {
  margin: 0;
}

/*	searchform
--------------------------------------------------------------------*/
#searchform > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#searchform i {
  padding-right: 0.5em;
  font-size: 1.4rem;
}

#searchsubmit {
  margin-left: 0.5em;
  padding: 0 1em;
}

/*	btn
--------------------------------------------------------------------*/
.btn {
  padding: 0 0 60px;
  text-align: center;
}

.btn a {
  display: inline-block;
  padding: 0.6em 2em;
  background: white;
}

.btn a:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0.7;
  filter: alpha(opacity=30);
}

/* ===================================================================
Layout
=================================================================== */
/* ===================================================================
Layout-contents
=================================================================== */
/*	header
--------------------------------------------------------------------*/
#h_wrap {
  background: #060606;
}

/*	main
--------------------------------------------------------------------*/
#main_wrap {
  background: #333;
}

/*	contents
--------------------------------------------------------------------*/
#contents {
  background: #fff;
}

/*	footer
--------------------------------------------------------------------*/
#f_wrap {
  padding: 25px 0 40px;
  border-top: 10px solid #4b4b4b;
  background: #000;
}

/* ===================================================================
FontAwesome
=================================================================== */
/* ===================================================================
breadcrumb
=================================================================== */
.breadcrumb {
  padding: 8px 0;
  background: #4b4b4b;
}
.breadcrumb ol {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb li {
  font-size: 1.2rem;
  color: #fff;
}
.breadcrumb li:before {
  content: ">";
  padding: 0 0.3em 0 0.8em;
}
.breadcrumb li:first-child:before {
  content: none;
}

/* ===================================================================
Pagetop
=================================================================== */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.pagetop a {
  display: block;
  width: 100px;
  padding: 1em 0;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 0.5em;
  background: #666;
}

.pagetop a:hover {
  text-decoration: none;
  background: #999;
}

/* ===================================================================
Rollover 背景が白の時用
=================================================================== */
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=30);
}/*# sourceMappingURL=common.css.map */