@charset "UTF-8";

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

img{
  border: none;
  display: block;
}

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

body{
  font-size: 16px;
  line-height: 1.7;
  color: #231714;
  font-family:"小塚ゴシック Pr6N","Helvetica Neue","Arial","Koduka Gothic Pro6N","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo","sans-serif";
}

#concept, #news, #access{
  width: 1166px;
  margin-inline: auto;
  margin-top: 150px;
}

h1,h2{
  margin: 0;
}

#gnavi li, .section_title, .open{
  font-family: "Alexa std";
}

.section_title{
  color: #6b3a1c;
  font-size: 48px;
  text-align: center;
}

/*ここからヘッダー*/
header{
  z-index: 1;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15%;
  align-items: center;
  top: 0;
  left: 0;
}

/* ハンバーガーメニュー(PC非表示) */
#hamburger {
  display: none;
}

#gnavi {
  position: static;
  display: block;
  height: auto;
  background: none;
  box-shadow: none;
}


#gnavi{
  margin-left: 20%;
}
#gnavi ul{
  display: flex;
}
#gnavi li{
  margin-left: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
}
#gnavi li a{
  color: #fdedc6;
  text-decoration: none;
  display: inline-block;
}
.gnavilink{
  padding: 0 10px;
  background-image: linear-gradient(#cca670, #cca670);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 100%;
  transition: color 0.5s, background-size 0.5s;
}
.gnavilink:hover{
  color: #fff;
  background-position: bottom left;
  background-size: 100% 100%;
}
#gnavi li:nth-child(5){
  padding-top: 12px;
}
#gnavi img{
  width: 25px;
  height: 25px;
}

/*メインビジュアルスライド*/
.main_slide{ 
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.main img{
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.main img:first-child{
  background-image: url(../../images/01main.jpg);
}
.main img:nth-child(2){
  background-image: url(../../images/02main.jpg);
}
.main img:nth-child(3){
  background-image: url(../../images/03main.jpg);
}
.main img:nth-child(4){
  background-image: url(../../images/04main.jpg);
}
.main img:nth-child(5){
  background-image: url(../../images/05main.jpg);
}
.main img:nth-child(6){
  background-image: url(../../images/06main.jpg);
  }
.main img:nth-child(7){
  background-image: url(../../images/07main.jpg);
}
/* 拡大率調整 */
@keyframes fadezoom{
  0% {
    transform: scale(1);
  }
  100%{
    transform: scale(1.3); /* 拡大率 */
  }
}
/* ズームアニメーション */
.main_slide_animation{
  animation: fadezoom 10s 0s forwards;
}

/* conceptセクション */
#concept::after {
  content: "";
  display: block;
  clear: both;
}
#logo_left{
  width: 390px;
  float: left;
  margin-left: 15px;
}
#logo_left img{
  width: 100%;
  height: auto;
}
.concept_text{
  width: 700px;
  float: right;
  margin-top: 100px;
  margin-right: 15px;
  text-align: center;
}
.concept_text h1{
  font-size: 30px;
  padding-bottom: 40px;
}
/* スマホでは改行 */
.sp_br{
  display: none;
}
#text_in{
  padding-bottom: 30px;
}

/* menuセクション */
#menu{
  clear: both;
  width: 100%;
  margin-top: 150px;
}
.slide_menu{
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 250px;
  margin: 80px auto;
}
.menu_slide1, .menu_slide2{
  display: inline-flex;
  flex: none;
  animation: slide_left 30s infinite linear 2s both;
}
.slide{
  margin: 0 30px;
  display: flex;
  align-items: center;
}
.slide img{
  display: block;
  width: 100%;
}
@keyframes slide_left{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}
#menu_text{
  text-align: center;
}
#menu_text p{
  margin-bottom: 70px;
  line-height: 2;
}

/* Button Effect */
.ver_glow{
  border-radius: 50px;
  padding: 10px 40px;
  text-transform: lowercase;
  font-family: "Alexa Std";
  font-size: 20px;
  background-color: #fce5b4;
  color: #6b3a1c;
  border: none;
  box-shadow: 0 2px 8px -1px rgb(200 200 200 / 50%), 0 0 12px #fef5d4;
  transition: box-shadow 0.2s ease-in-out;
}
.ver_glow:hover{
  background-color: #fce0a3;
  box-shadow: 0 0 10px #f5dda6,
    0 0 8px #f5dda6,
    0 0 110px #f5dda6;
    color: #231714;
    border: none;
}
/* newsセクション */
#news_contents{
  margin-top: 100px;
  display: flex;
  justify-content: space-around;
}
.visible{
  opacity: 1;
}
.fade_in{
  transition: opacity 2.5s;
}
.news_background{
  background-color: #fdf4e3;
  width: 360px;
  height: 450px;
  padding: 20px;
  box-shadow: 2px 2px 10px #707166;
  transition: 0.5s ease;
}
.news_background:hover{
  transform: scale(1.05,1.05);
}
.newsphoto{
  border-radius: 10px;
  margin-top: 20px;
}
.newsdate{
  margin-top: 10px;
  margin-left: 20px;
}
.newstext{
  margin-top: 20px;
  margin-left: 20px;
  width: 300px;
}
/*  access  */
#access{
  margin-bottom: 100px;
}
#accessMap{
  display: flex;
  width: 1166px;
  margin-top: 100px;
}
#accessMap iframe{
  width: 50%;
}
#access_right{
  width: 50%;
  line-height: 2;
  padding-top: 40px;
}
#access_right address, #access_right p{
  text-align: center;
}
.open{
  margin-top: 40px;
}
.open p{
  font-size: 24px;
}
.open dl{
  width: 300px;
  margin: 15px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.open dt{
  width: 70%;
  padding-left: 20px;
}
.open dd{
  width: 30%;
}

/*ここからフッター*/
#footerInner{
  width: 1166px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footerlogo_left{
  padding: 21px 0;
}
#copyRight{
  padding: 18px 0;
}
#mark_right{
  padding-left: 177px;
}

/* フローティングバナー */
.floating_banner{
  position: fixed;
  top: 150px;
  right: 40px;
  width: 150px;
}
.floating_banner_sp{
  display: none;
}
.banner_glow{
  border-radius: 50%;
  display: grid;
  place-content: center;
  place-items: center;
  width: 100px;
  height: 100px;
  margin: 10px 0;
  text-decoration: none;
  font-family: "Alexa Std";
  font-size: 20px;
  background-color: #fce5b4;
  color: #6b3a1c;
  border: none;
  box-shadow: 0 2px 8px -1px rgb(200 200 200 / 50%), 0 0 12px #fef5d4;
  transition: box-shadow 0.2s ease-in-out;
}
.banner_glow:hover{
  background-color: #fce0a3;
  box-shadow: 0 0 10px #f5dda6,
    0 0 8px #f5dda6,
    0 0 110px #f5dda6;
    color: #231714;
    border: none;
}

/* スクロールダウン */
.scroll{
  position: absolute;
  top: 750px;
  left:45%;
}
.scroll_down {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  width: 150px;
  height: 150px;
  color: #adadad;
  font-family: serif;
  text-decoration: none;
}
.circle_text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}
.circle_text span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 75px;
}
.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}
.arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #adadad;
  transform: translateX(-50%);
}
.arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #adadad;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

/* ここからreserve page */
#reserve_img{
  width: 100%;
}
#title_reserve{
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: "Alexa std";
  font-size: 400%;
  color: #fef5d4;
  text-shadow: 1px 1px 3px #231714;
  top: 190px;
  left: auto;
  right: auto;
}
.breadcrumbs{
  padding-top: 10px;
  padding-bottom: 10px;
  width: 75%;
  margin: 0 auto;
  list-style: none;
}
.breadcrumbs li{
  display: inline;
  font-weight: bold;
}
.breadcrumbs li::after{
  /* >表示 */
  content: '>';
  padding: 0 0.2em;
  color: silver;
}
.breadcrumbs li:last-child::after{
  content: '';
}
.breadcrumbs li a{
  text-decoration: none;
  color: #888;
}
.breadcrumbs li:first-child a::before{
  /* 家アイコン */
  font-family: "FontAwesome";
  content: '\e3af';
  font-weight: 900;
  font-size: 11px;
  color: #231714;
}
.breadcrumbs li a:hover{
  text-decoration: underline;
}

/*  予約フォーム  */
#mainInner{
  width: 75%;
  max-width: 1300px;
  height: auto;
  background-color: #fff9ee;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}
#mainInner h2{
  text-align: center;
  font-size: 36px;
  font-family: "Alexa std";
  padding-top: 3%;
}
#contents{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
}
#contents h3{
  padding-bottom: 10px;
}
#contents ul li{
  padding: 10px;
  list-style-type: "◆";
}
#checkbox{
  display: block;
  text-align: center;
  padding: 4%;
}
#checkbox span{
  color: #e62222;
}
#form_area{
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
#form1 div,#form3 dt{
  margin-top: 2%;
}
#form1_in{
  position: relative;
}
.select{
  width: 35%;
  height: 40px;
  padding: 10px;
  border: 1px solid #cdd7e5;
  background-color: #fff;
  border-radius: 5px;
  
}
#form1,#form3{
  margin-top: 5%;
}
#form1 input{
  padding: 15px;
}
#form1 input, #adult, #child{
  margin-right: 15px;
}
.mark1{
  display: inline-block;
  position: relative;
  background-color: #F37763;
  color: #ffffff !important;
  font-size: 10px;
  padding: 1px 8px;
  border-radius: 3px;
  top: -3px;
  margin-left: 12px;
}
#form2{
  margin-top: 3%;
}
span{
  font-size: 12px;
}
#form1 input[type="date"],[type="time"],#form3 input[type="text"],[type="email"],[type="tel"]{
  width: 35%;
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #cdd7e5;
  background-color: #fff;
  color: #231714;

}
#form3 dl{
  margin-bottom: 30px;
}
#form3 dl dt{
  width: 180px;
  padding-right: 5%;
  padding-bottom: 5px;
}
#form3 textarea{
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgb(205, 215, 229);
  background-color: rgb(255, 255, 255);
  color: rgb(35, 23,20);
  width: 73%;
  height: 130px;
}
#book{
  font-size: 14px;
  padding-bottom: 15px;
  padding-left: 4%;
}
#send_button{
  margin-top: 5%;
  text-align: center;
  padding-bottom: 5%;
}
#button{
  display: inline-block;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  padding: 9px 15px;
  background-color: #6b3a1c;
  color: #fef5d4;
  line-height: 100%;
  transition: .3s;
  box-shadow: 3px 3px 5px #666666;
  border: 2px solid #6b3a1c;
}
#button:hover{
  box-shadow: none;
  color: #6b3a1c;
  background-color: #ffffff;
}