﻿html:not(.responsive) {
	min-width: 1000px; /* viewport */
}



/*=============================================
 * body
 *=============================================*/

body {
	color: #000;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; 
	font-size: 15px;
	line-height: 32px;
	letter-spacing: 1.5px;
	font-weight: 500;
	background: url("../img/shared/bd_bg.jpg") center top repeat;
	min-width: inherit;
	min-height: inherit;
	max-height: 100%;
}
h2, h3, h4, h5{
	font-family: source-han-serif-sc, serif;
	font-weight: lighter;
	font-style: normal;
}
.red{
	color: #a40a0a;
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/

.fnt-mincho {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.fnt-meiryo {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS padding: ;Gothic", sans-serif;
}
.fnt-gothic {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}



/*=============================================
 * .fnt - customs
 *=============================================*/
.fnt_han-serif{
	font-family: source-han-serif-sc, serif;
	font-weight: lighter;
	font-style: normal;
}

.fnt-mincho {
}
.fnt-meiryo {
}
.fnt-gothic {
}
.fnt-garamond {
}



/*=============================================
 * <main>
 *=============================================*/

main {
	clear: both;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.wrap {
	width: 1000px;
}



#key {
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	min-height: 850px;
	position: relative;
}
#key ul {
	min-height: inherit;
}
#key li {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	min-height: inherit;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}



footer {
	text-align: center;
}

.btn-cont {
  text-align: center;
  position: relative;
  width: 430px;
  height: 80px;
  box-sizing: border-box;
}
.btn-cont:before {
  content: '';
  background: url("../img/index/s2_bnr_bg.jpg") center top no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.btn-cont:after {
  content: url("../img/shared/icon_arrow.png");
  position: absolute;
  top: 25px;
  right: 33px;
}
.btn-cont .btn {
  position: relative;
  border: 1px solid #dcdcdc;
  color: #000;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-decoration: none;
  font-size: 19px;
  letter-spacing: 2px;
  -webkit-font-smoothing: antialiased;
  padding: 20px 102px;
  line-height: 81px;
  box-sizing: border-box;
}
.btn-cont .btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  background-color: #dcdcdc;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.btn-cont .btn:after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  background-color: #dcdcdc;
  left: 0;
  top: 0;
  z-index: 1;
}
.btn-cont .btn span {
  margin-left: -18px;
}
.btn-cont .btn span:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  background-color: #dcdcdc;
  right: 0;
  top: 0;
  z-index: 1;
}
.btn-cont .btn span:after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  background-color: #dcdcdc;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.btn-cont .btn:hover {
  border: none;
}
.btn-cont .btn:hover:before {
  animation: move1 1500ms infinite ease;
}
.btn-cont .btn:hover:after {
  animation: move2 1500ms infinite ease;
}
.btn-cont .btn:hover span:before {
  animation: move3 1500ms infinite ease;
}
.btn-cont .btn:hover span:after {
  animation: move4 1500ms infinite ease;
}
@keyframes move1 {
  0% {
    height: 100%;
    bottom: 0;
  }
  54% {
    height: 0;
    bottom: 100%;
  }
  55% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 100%;
    bottom: 0;
  }
}
@keyframes move2 {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes move3 {
  0% {
    height: 100%;
    top: 0;
  }
  54% {
    height: 0;
    top: 100%;
  }
  55% {
    height: 0;
    top: 0;
  }
  100% {
    height: 100%;
    top: 0;
  }
}
@keyframes move4 {
  0% {
    width: 0;
    right: 0;
  }
  55% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
header {
  position: relative;
  padding-bottom: 20px;
}
header:before {
  content: '';
  background: url("../img/shared/nav_line.jpg") center top repeat;
  position: absolute;
  height: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
header h1 {
  width: 258px;
}
header .nav_top {
background: url(../img/shared/nav_bg.jpg) center top repeat;
    height: 230px;
}
header .nav_top .wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
header .nav_top .nav-fl {
  padding-top: 11px;
  padding-bottom: 10px;
}
header .tel {
  padding-top: 30px;
}
header .nav_top_left {
  padding-top: 10px;
}
header .nav-fixed {
  background: url("../img/shared/nav_bg.jpg") center top repeat-x;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.3s;
}
header .nav-fixed .wrap {
  padding: 15px 90px;
}
.nav-fixed.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
footer {
  background: url("../img/shared/footer_bg.jpg") center top repeat-x;
	-webkit-background-size: cover;
	background-size: cover;
  color: #fff;
  border-bottom: 15px solid #000;
}
footer .logo {
  text-align: center;
  padding-bottom: 11px;
}
footer .note {
  margin-left: 14px;
}
footer .tel {
  padding-top: 42px;
  padding-bottom: 21px;
}
footer .content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-bottom: 36px;
}
footer .ctn_left {
  width: 380px;
  text-align: center;
  padding-right: 12px;
}
footer .ctn_right {
  width: 615px;
  padding-top: 40px;
}
footer dl {
  display: table;
  width: 100%;
  padding-bottom: 20px;
}
footer dl dt {
  display: table-cell;
  width: 164px;
  text-align: left;
}
footer dl dd {
  text-align: left;
  line-height: 25px;
}
footer address {
  font-size: 12px;
  padding-top: 8px !important;
}

footer address a{
 font-size: 10px;
 text-align: center;
 color: #FFF;
 display: block;
 text-decoration: none;
}

footer .nav-inline {
  padding-top: 21px;
  padding-bottom: 40px;
}
footer .nav-inline a {
  color: rgba(255,255,255,1.00);
  padding-left: 15px;
}
footer .nav-inline a:first-child {
  padding-left: 0;
}
footer .nav-inline a:first-child:before{
  content: "\7C";
	display: inline-block;
	padding-right: 12px;
	text-decoration: none;
	text-decoration-line: none;
	text-decoration-color: transparent;
}
footer .nav-inline a:last-child:after {
	content: "\7C";
	display: inline-block;
	padding-left: 12px;
	text-decoration: none;
	text-decoration-line: none;
	text-decoration-color: transparent;
}
#reserve_btn {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 9;
}

.ins_botan a{
	background-color: #000;
	margin: 10px 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
	color:#fff;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
}
