@charset "utf-8";
/* CSS Document */
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 30px;
  letter-spacing: 10px;
 }
h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  letter-spacing: 8px;
 }
 h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: normal;
 }
p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
 }
 address {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 300;
 }
ul,ol {
  list-style: none;
}
a {
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
time {
  font-size: 14px;
}
span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
}
table {
  border-collapse: initial;
}
table th,table td {
  border-bottom:1px solid #EE7E0E;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
@media (max-width: 480px) {
  h2,h3,p,span {
    font-size: 1rem;
  }
  }
/*----------------------
header
-------------------------*/
/*----------------------
PC版スクロール前
-------------------------*/
.header_outside {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.header_inner {
  max-width: 1250px;
  width: 100%;/*必要：maxしか指定していなかったため*/
  height: 100%;
  display: flex;
  margin: 0 auto;
  align-items: center; /*全ての要素：上下中央揃え*/
  justify-content: space-between;
  color: #fff;
  position: relative;
}
/*logo*/
.header_logo {
  width: 100px;
  height: 100%;
  margin-left: 7px;
  position: relative;
}
.header_logo a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition-duration: 0.5s;
}
.header_logo a img {
  height: 100%;
  object-fit: cover;
  z-index: 99;
}
.header_logo:hover {
  opacity: 0.5;
}
.header_logo .logo_black {
  opacity: 0;
}
/*ハンバーガーメニュー*/
.navToggle {
  display: none; /*通常時は非表示*/
  width: 50px;
  height: 50px;
  margin: 5px 10px 0 auto;
  cursor: pointer;
}
.navToggle div {
  position: relative;
} 
.navToggle span {
  display: block;
  position: absolute;
  width: 80%;
  border-radius: 10px;
  border-bottom: solid 3px #fff;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  z-index: 999;
}
.navToggle span:nth-child(1) {
  top:8px;
}
.navToggle span:nth-child(2) {
  width: 65%;
  top:20px;
}
.navToggle span:nth-child(3) {
  top:32px;
}
/*ナビゲーションメニュー*/
.navMenu {
  margin-left: auto;
}
.navMenu ul {
  display: flex;
  align-items: center;
}
.navMenu ul li {
  padding: 0 20px;
  margin: 0;
  border-left: 1px solid #fff;
}
.navMenu ul li a {
  position: relative;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #fff;
  transition: .3s;
}
.navMenu ul li a::after {/*ナビゲーション下線*/
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #fff;
  transition: .4s;
}
.navMenu ul li a:hover::after {/*hover:下線出てくる*/
  width: 100%;
  color: #fff;
 }
 /*LINE予約ボタン*/
.lineBtn {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  transition: .3s;
}
.lineBtn a img {
  width: 100%;  
  height: 100%;
}
.lineBtn:hover {
  opacity: .7;
}
/*----------------------
PC版スクロール後
-------------------------*/
.header_outside.active {
  background-color: rgba(255, 255, 255,0.8);
  box-shadow: 0 1px 5px gray;
  transition: 1s;
}
/*スクロール後のlogo*/
.header_outside.active .header_logo .logo_white {
  opacity: 0;
}
.header_outside.active .header_logo .logo_black {
  opacity: 1;
}
/*ナビゲーション*/
.header_outside.active .navMenu ul {
  display: flex;
  align-items: center;
}
.header_outside.active .navMenu ul li {
  padding: 0 20px;
  margin: 0;
  border-left: 1px solid #333;
}
.header_outside.active .navMenu ul li a {
  position: relative;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #333;
  transition: .3s;
}
.header_outside.active .navMenu ul li a::after {/*ナビゲーション下線*/
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #333;
  transition: .4s;
}
.header_outside.active .navMenu ul li a:hover::after {/*hover:下線出てくる*/
  width: 100%;
  color: #333;
 }
 /*----------------------
mobile版
-------------------------*/
@media screen and (max-width: 850px) {
/*スクロール前*/
.navToggle {
  display:block;
  margin-left: auto;
}
.navMenu {
  position: absolute; /*bodyに対しての絶対位置*/
  right: 0;
  top: -350px;/*通常時はビュー外*/
  background: rgba(255,255,255,.9);
  width: 50%;
  padding: 10px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  text-align: left;
}
.navMenu ul {
  flex-direction: column;
}
.navMenu ul li {
  padding: 20px;
  margin: 0;
  border-left: none;
}
.navMenu ul li:first-child {
  margin-top: 40px;/*ホームとバツボタンが被らないように*/
}
.navMenu ul li a {
  color: #333;
}
/*スクロール後*/
.header_outside.active .navToggle span {
  border-bottom: solid 3px #333;
  z-index: 999;
}
.header_outside.active .navMenu {
  position: absolute; /*header_innerに対しての絶対位置*/
  right: 0;
  top: -350px;/*通常時はビュー外*/
  background: rgba(255,255,255,0.9);
  width: 50%;
  padding: 10px;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 99;
}
.header_outside.active .navMenu ul {
  flex-direction: column;
}
.header_outside.active .navMenu ul li {
  padding: 20px;
  margin: 0;
  border-left: none;
}
.header_outside.active .navMenu ul li:first-child {
  margin-top: 40px;/*ホームとバツボタンが被らないように*/
}
.header_outside.active .navMenu ul li a {
  color: #333;
}
/*クリック後:ハンバーガーメニューのバツボタン*/
.openNav .navToggle span {
  border-bottom: solid 3px #333;
}
.openNav .navToggle span:nth-child(1) {
  top: 11px;
  -webkit-transform:rotate(-45deg);
  -moz-transform:rotate(-45deg);
  transform:rotate(-45deg);
}
.openNav .navToggle span:nth-child(2) {
  opacity: 0;
}
.openNav .navToggle span:nth-child(3) {
  top: 11px;
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  transform:rotate(45deg);
}
/*クリック後:ナビゲーション*/ 
.openNav .navMenu {
  -moz-transform: translateY(351px);
  -webkit-transform: translateY(351px);
  transform: translateY(351px);
}
.openNav .navMenu li a::after {
  background-color: #333;
}
}
@media screen and (max-width: 450px) {
.header_outside {
  height: 60px;
}
.navToggle {
margin: 5px 10px 0 auto;
}
}
/*----------------------
section_reserve
-------------------------*/
.section_reserve {
 padding: 40px 20px;
 background-color: #f8b36e;
 box-sizing: border-box;
}
.section_reserve_inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section_reserve_txt {
  text-align: center;
}
.section_reserve_txt p {/*お問い合わせと～*/
  font-size:  1.1rem;
  font-weight: bold;
  line-height: 30px;
}
.section_reserve_txt span {/*※部分*/
  font-weight: normal;
}
.line_footer {/*ボタンとQR*/
  margin: 20px auto 0;
  display: flex;
  flex-wrap:wrap;
  gap: 0 5%; /*余白*/
  align-items: center;
  justify-content: center;
}
/*QRコード*/
.qr {
 width: 60px;
 height: 60px;
}
@media (max-width: 480px) {
.qr {
  display: none;
}
}
/*----------------------
footer
-------------------------*/
footer {
  margin: 0;
  padding: 30px 0;
  background-color: #FFF3E8;
  color: #333;
  text-align: center; 
}
.footer_inner {
  max-width: 1080px;
  width: 100%;/*必要：maxしか指定していなかったため*/
  margin: 0 auto 40px;/*中央寄せ＆コピーライトとの余白*/
  display: flex;
  justify-content: space-between;
}
/*footer_info*/
.footer_info {
  width: 50%;
}
.footer_info img {/*ロゴ*/
  max-width: 150px;
  width: 20%;
  object-fit: cover;
}
.footer_info p,.footer_info address {
  margin-top: 10px;
}
/*footer_menu*/
.footer_menu {
  width: 50%;
  border-left: 1px solid #f8b36e;
}
.footer_menu ul li {
  margin-top: 20px;
}
.footer_menu ul li a {
  color: #333;
  position: relative;
  transition: .3s;
}
.footer_menu ul li a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #333;
  color: #333;
  transition: .4s;
}
.footer_menu ul li a:hover::after {/*hover:下線出てくる*/
 width: 100%;
 color: #333;
}
small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: lighter;
}
/*スマホ版*/
@media (max-width: 480px) {
.footer_inner {
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer_info {
  width: 80%;
  margin: 0 auto;
}
.footer_info img {
  max-width: 150px;
  width: 30%;
}
.footer_menu {
  width: 80%;
  margin: 20px auto 20px;
  border-left: none;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.footer_menu ul {
  margin: 20px 0 ;
}
small {
  padding: 0 10px;
}
}
/*----------------------
detailpage_top
-------------------------*/
.detailpage_top {
  width: 100%; 
  height: 200px;
  position: relative;
}
.detailpage_top_bg {
  width: 100%;
  height: 100%;
  background-color: #f8b36e;
  position: relative;
}
/*足跡*/
.detailpage_top_bg img {
  position: absolute;
  width: 30px;
  transform: rotate(90deg);
  opacity: 0;
  animation: fadein 1s ease forwards;
}
@keyframes fadein {
    100% {  opacity: .5;}
}
.detailpage_top_bg img:nth-child(1) {
  top: 60%;
  left: 10%;
  animation-delay: .2s;
}
.detailpage_top_bg img:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: .4s;
}
.detailpage_top_bg img:nth-child(3) {
  top: 50%;
  left: 30%;
  animation-delay: .6s;
}
.detailpage_top_bg img:nth-child(4) {
  top: 45%;
  left: 40%;
  animation-delay: .8s;
}
.detailpage_top_bg img:nth-child(5) {
  top: 50%;
  left: 50%;
  animation-delay: 1s;
}
.detailpage_top_bg img:nth-child(6) {
  top: 50%;
  left: 60%;
  animation-delay: 1.2s;
}
.detailpage_top_bg img:nth-child(7) {
  top: 60%;
  left: 70%;
  animation-delay: 1.4s;
}
.detailpage_top_bg img:nth-child(8) {
  top: 55%;
  left: 80%;
  animation-delay: 1.6s;
}
.detailpage_top_bg img:nth-child(9) {
  top: 65%;
  left: 90%;
  animation-delay: 1.8s;
}
/*About*/
.top_title {
  width: 100%;
  position: absolute;
  top: 80%;
  text-align: center;
}
 .top_title h1 {
  font-family: 'Oleo Script', cursive;
  font-size: 70px;
  color: #333;
  letter-spacing: 20px;
  font-weight: normal;
  position: relative;
  z-index: 10;
 }
 .top_title span {/*枠線テキスト*/
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-48%);
  font-family: 'Oleo Script', cursive;
  font-size: 68px;
  color: rgba(51, 51, 51, 0);
  letter-spacing: 20px;
  font-weight: normal;
  -webkit-text-stroke: 1px #333;
 }
 .top_title h2 {
  color: #333;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
 }
 @media (max-width: 450px) {
.detailpage_top {
  height: 120px;
}
.top_title {
  top: 73%;
}
.top_title h1 {
  font-size: 55px;
}
.top_title span {
  font-size: 53px;
}
.detailpage_top_bg img {
  width: 20px;
}
.detailpage_top_bg img:nth-child(even) {
  display: none;
}
}