@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-padding-top: 100px; /*リンク先遷移時に見出しがヘッダーに隠れないように*/
}
*{
  box-sizing: border-box;
}
body {
  background-color: #FAF2E8;
  color: #000; /* RGB */
  font-family: "ヒラギノ角ゴ ProN", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 1.5;
  text-align: center;
}
h2 {
  font-size: 2.4rem;
  /*font-family: "砧 丸丸ゴシックBSr StdN";*/
  font-family: "maru-maru-gothic-bsr-stdn", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h3{
  /*font-family: "砧 丸丸ゴシックBSr StdN";*/
  font-family: "maru-maru-gothic-bsr-stdn", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a{
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
ul{
  list-style: none;
}
img{
  vertical-align: bottom; /*画像に謎のスキマつかないように*/
}
/*ヘッダー*/
header{
  padding: 10px 0;
}
header .header-wrapper{
  width: 92%;
  /*display: flex;
  justify-content: space-between;*/
  margin: 0 auto;
}
header .gnav-btn{
  width: 50px;
  height: 50px;
}
/*header nav{
  display: none;
}*/
header .logo-wrapper{
  width: 195px;
  height: 45px;
}
header .logo{
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 13px;
}
.g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:0;
  right: -120%;
  width: 100%;
  height: 100vh;/*ナビの高さ*/
  background: #BA9A73;
  /*動き*/
	transition: all 0.6s;
  padding: 0 15px;
}

/*アクティブクラスがついたら位置を0に*/
.g-nav.panelactive{
    right: -40%;
}

/*ナビゲーション*/
.g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 35%;
  left: 53.5%;
  transform: translate(-50%,-50%);
  width: 100%;
}

/*リストのレイアウト設定*/
.g-nav ul li{
  text-align: left;
  letter-spacing: 0.1em;
  /*font-family: "砧 丸丸ゴシックBSr StdN";*/
  font-family: "maru-maru-gothic-bsr-stdn", sans-serif;
  font-weight: 400;
  font-style: normal;
	padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
}
.g-nav ul li a{
	text-decoration: none;
  color: #fff;
	/*display: block;*/
	text-transform: uppercase;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position: fixed;
  z-index: 9999;/*ボタンを最前面に*/
	top: 7px;
	right: 4%;
	cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #BA9A73;
  border-radius: 10px;
}
	
/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 10px;
  border-radius: 2px;
  background-color: #fff;
  width: 30px;
  height: 3px;
}

.openbtn span:nth-of-type(1) {
	top: 9px;	
}

.openbtn span:nth-of-type(2) {
	top: 17px;
}

.openbtn span:nth-of-type(3) {
	top: 25px;
}
.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top: 5px;
	left: 0px;
	color: #fff;
	font-size: 1.0rem;
  font-family: "ヒラギノ角ゴ ProN";
  font-weight: 600;
  /*letter-spacing: 0.1em;*/
	/*text-transform: uppercase;*/
}
.openbtn.active span:nth-of-type(1) {
  top: 9px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 21px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  font-weight: 600;
  transform: translateY(0) rotate(-45deg);
	top:8px;
	left:14px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.black-bg.panelactive {
  opacity: 0.3;
  visibility: visible;
}
header .header-wrapper .pc-nav{
  display: none;
}
@media (min-width :960px){
  header{
    padding: 19px 0 18px;
  }
  header .header-wrapper{
    width: 92%;
    position: relative;
    margin: 0 auto;
  }
  header .logo-wrapper{
    width: 300px;
    height: 63px;
  }
  header .header-wrapper .openbtn{
    display: none;
  }
  header .header-wrapper .pc-nav{
    display: block;
    position: fixed;
    z-index: 999;
    top: 19px;
    right: 4%;
  }
  header .header-wrapper .pc-nav nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 37px;
    background-color: #BA9A73;
    width: 540px;
    height: 63px;
    border-radius: 50px;
  }
  header .header-wrapper .pc-nav ul li a{
    /*font-family: "砧 丸丸ゴシックBSr StdN";*/
    font-family: "maru-maru-gothic-bsr-stdn", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: #fff;
    padding-bottom: 5px;
    position: relative;
  }
  header .header-wrapper .pc-nav ul li a::before{
    background: #fff;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  header .header-wrapper .pc-nav ul li a:hover{
    opacity: 0.8;
  }
  header .header-wrapper .pc-nav ul li a:hover::before{
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@media (min-width: 1100px){
  header .header-wrapper{
    width: 1000px;
    margin: 0 auto;
  }
  header .header-wrapper .pc-nav{
    margin-left: 440px;
    right: auto;
  }
  header .header-wrapper .pc-nav nav ul{
    width: 560px;
  }
}



/*フッター*/
footer{
  background-color: #F6E9D9;
}
footer .top-area{
  padding-top: 57px;
}
footer .top-area-wrapper{
  width: 92%;
  margin: 0 auto;
}
footer .title-wrapper{
  display: flex;
  justify-content: space-between;
  width: 260px;
  margin: 0 auto 14px;
}
footer .title-wrapper .logo-wrapper .logo{
  width: 195px;
  height: auto;
  vertical-align: middle;
}
footer .title-wrapper .instagram{
  width: auto;
  height: 25px;
}
footer p{
  font-size: 1.4rem;
  margin-bottom: 8px;
}
footer .yoyaku-bg{
  width: 110px;
  height: 26px;
  border-radius: 10px;
  background-color: #BA9A73;
  color: #fff;
  font-size: 1.2rem;
  line-height: 26px;
  vertical-align: middle;
}
footer .tel-wrapper{
  /*position: relative;*/
  display: flex;
  justify-content: center;
  /*gap: 10px;*/
  margin-bottom: 24px;
}
footer .tel-wrapper .tel-icon{
  width: 20.9px;
  height: 20px;
  margin: 2px 6px 0 0;
}
footer .tel-wrapper .tel{
  font-family: "Noto Sans JP";
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-right: 10px;
}
/*スマホでテキストが黒くなって欲しい safariの仕様でaタグが勝手につく*/
footer .tel-wrapper .tel a{
  text-decoration: none;
  color: #000;
}
footer table{
  max-width: 100%;
  margin: 0 auto 5px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
footer table thead{
  background-color: #4EAFF1;
  /*background-color: #30A1ED #60B5EE #50ADEC; #4EAFF1 #56B5F5*/
  color: #fff;
}
footer table thead th{
  font-weight: 600;
  padding: 9px 0;
}
footer table thead th:first-child{
  /*border-top-left-radius: 10px;*/
  border-right: 3px solid #fff;
  letter-spacing: 0.1em;
  width: 23.188406vw;
}
footer table thead th:last-child{
  /*border-top-right-radius: 10px;*/
}
footer table tbody tr{
  background-color: #fff;
}
footer table tbody th{
  border-right: 3px solid #60B5EE;
  font-weight: 300;
  line-height: 1.0;
  padding: 9px 0;
}
footer table tbody th .time-wrapper{
  margin: 0 auto;
  text-align: left;
}
footer table tbody td{
  /*width: 37px;*/
  width: 10.724638vw;
  vertical-align: middle;
  text-align: center;
}
footer table tbody td .ok{
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 100px;
  display: inline-block;
}
footer table tbody td .no{
  width: 15px;
  height: 15px;
  display: inline-block;
  /*background-color: #000;
  transform:rotate(-45deg);
  display: inline-block;*/
}
footer table tbody td .no img{
  width: 100%;
  height: 100%;
  display: block;
}
footer table tbody .tr02{
  border-top: 3px solid #60B5EE;
}
footer table tbody .tr02 th{
  /*border-bottom-left-radius: 10px;*/
}
footer table tbody .tr02 td:last-child{
  /*border-bottom-right-radius: 10px;*/
}
footer .attention{
  text-align: left;
  margin-bottom: 30px;
}
footer .attention span{
  display: inline-block;
  font-size: 1.2rem;
}
footer .googlemap{
  height: 300px;
  margin-bottom: 20px;
}
footer iframe{
  width: 100%;
  height: 100%;
  border: 1px solid #707070;
}
footer .bottom-area{
  width: 100%;
  height: 30px;
  background-color: #BA9A73;
}
footer .bottom-area small{
  color: #fff;
  font-size: 1.0rem;
  line-height: 30px;
  vertical-align: middle;
}
footer .bottom-area nav{
  display: none;
}
.scroll-btn{
  width: 45px;
  height: 45px;
  position: fixed;
  right: 15px;
  bottom: 34px;
  background: #BA9A73;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 0px 7px 0 rgba(0,0,0,0.5)
}
.scroll-btn a{
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  text-decoration: none;
}
.scroll-btn a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 35px;
  height: 35px;
  top: -2px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

@media (min-width: 960px){
  footer .top-area{
    padding-top: 50px;
  }
  footer .top-area .top-area-wrapper{
    display: flex;
    justify-content: center;
    /*gap : 60px;*/
  }
  footer .pc-leftside{
    padding-top: 20px;
    margin-right: 60px;
  }
  footer .title-wrapper{
    width: 330px;
    margin: 0 0 20px 0;
  }
  footer .title-wrapper .logo-wrapper .logo{
    width: 255px;
  }
  footer .title-wrapper .instagram{
    width: auto;
    height: 30px;
  }
  footer .top-area .top-area-wrapper p{
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  footer .yoyaku-bg{
    width: 126px;
    height: 30px;
    font-size: 1.4rem;
    line-height: 30px;
  }
  footer .tel-wrapper{
    display: flex;
    justify-content: normal;
    margin-bottom: 30px;
  }
  footer .tel-wrapper .tel-icon{
    width: 24.04px; 
    height: 23px;
    margin: 4px 10px 0 0;
  }
  footer .tel-wrapper .tel{
    font-size: 2.0rem;
    margin-right: 15px;
  }
  footer table{
    margin-bottom: 10px;
  }
  footer table tbody td{
    width: 40px;
  }
  footer table thead th:first-child{
    width: 153px;
  }
  footer .attention span{
    font-size: 1.4rem;
  }
  footer .googlemap{
    width: 500px;
    height: 375px;
    /*margin-bottom: 40px;*/
    margin: 0 0 40px; /*アクセスページ表示時だけなぜか左右に余白がついてしまう*/
  }
  footer .bottom-area{
    height: 85px;
    padding: 25px 0 15px;
  }
  footer .bottom-area nav{
    display: block;
  }
  footer .bottom-area nav ul{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  footer .bottom-area nav ul li{
    /*font-family: "砧 丸丸ゴシックBSr StdN";*/
    font-family: "maru-maru-gothic-bsr-stdn", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 1.4rem;
    padding: 0 15px;
    border-right: 1px solid #fff;
  }
  footer .bottom-area nav ul li:last-child{
    border-right: none;
  }
  footer .bottom-area nav ul li a{
    color: #fff;
    padding-bottom: 5px;
    position: relative;
  }
  footer .bottom-area nav ul li a:hover{
    opacity: 0.8;
  }
  footer .bottom-area nav ul li a::before{
    background: #fff;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  footer .bottom-area nav ul li a:hover::before{
    transform-origin: left top;
    transform: scale(1, 1);
  }
  footer .bottom-area small{
    font-size: 1.0rem;
    line-height: 0;
    vertical-align: baseline;
    display: block;
  }
  .scroll-btn{
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 40px;
    background: #BA9A73;
    border-radius: 50%;
    z-index: 999;
  }
  .scroll-btn a{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    text-decoration: none;
  }
  .scroll-btn a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 40px;
    color: #fff;
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
}













