@charset "utf-8";
/* CSS Document */


/* サイト全体のフォント指定 */
body {
font-family: "メイリオ" ;
}


/* ヘッダー */
header {
	background: #ffffff;
}
.header-container {
	padding: 30px 20px 10px 20px;
}
.header-logo {
	margin: 0;
	width: 100px;
	height: 22px;
	background-image: url(../image/logo.png);
	background-size: 100px 22px;
	background-repeat: no-repeat;
	text-indent: -9999px;
}
@media screen and (min-width: 768px) {
	.header-logo {
		width: 200px;
		height: 44px;
		background-size: 200px 44px;
	}
}



/* ナビゲーション */
nav {
	border-top: 8px solid #987D60;
	background: #FFDF7F;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav li {
	border-bottom: 1px solid #987D45;
}
nav li a {
	display: block;
	width: 100%;
	padding: 20px 0;
	text-decoration: none;	
	text-align: center;
	font-size: 14px;
	color: #987D60;
}
nav li a:hover {
	background: #FFDF7F;
}

@media screen and (min-width: 768px){
nav {
	border-top: 8px solid #987D45;
	background: #FFDF7F;
}
nav ul {
	overflow: hidden;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 1000px;
}
nav li {
	box-sizing: border-box;
	float: left;
	border-right: 1px solid #FFDF7F;
	width: 20%;
}
nav li:last-child {
	border-right: none;
}
nav li a {
	display: block;
	padding: 20px 0;
	width: 100%;
	text-decoration: none;	
	text-align: center;
	font-size: 14px;
	color: #987D60;
}
}


/* メイン */
.main {}
.main-contents-container {
	padding: 10px 0 0 0;
	text-align: center;
	background: #ffffff;	
}
.title {
	font-size: 0;
	text-align: center;
}
.title img {
	width: 50%;	
}
.room{
	font-size: 0;
	text-align: center;
}

.room img {
	width: 90%;	
	margin-left: auto;
    margin-right: auto;
}
.info{
	font-size: 0;
	text-align: center;
}
.info img{
	width: 90%;
	margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) {
.title img {
	width: 200px;
	}
.room img {
	width: 1000px;	
}

.info {
	width: 1000px;
	margin-left: auto;
    margin-right: auto;
}
}
	
	/* 見出し */
.salon{
	padding: 0 0 30px 0;
	text-align: center;
	font-size: 1.4rem;
}
@media screen and (min-width: 768px){
		.salon {
		font-size: 1.8rem;
	      }
}	



/* telタップ */

	.tel {
text-decoration: none;
}
	
@media screen and (min-width: 768px) {
	.tel  a[href^="tel:"]{
    pointer-events: none;
	text-decoration: none;
  }

		/* トップフット */
	
	.top-foot{
		padding: 20px 10px 20px 10px;
		text-align: center;
	}
	
	
	
	/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;  
	}
.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

body{
  background:#eee;
}

h2,p {
    text-align:center;
    padding:20px;
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

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







