@charset "UTF-8";

body{
  font-family: 'Noto Serif JP',"游明朝体","Shippori Mincho","Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #231815;
}

img{
  max-width: 100%;
}

a{
  text-decoration: none;
  color: #231815;
}

ul{
  list-style-type: none;
}

/* レイアウト */
#concept,#menu,#sns,#reservation,#access{
  padding: 80px 0;
}

.section-inner1{
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
.section-inner2{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.col-2{
  display: flex;
  justify-content: space-between;
}

.pc-only{
  display: block;
}
.sp-only{
  display: none;
}

/* レイアウト　スマホ */
@media  screen and (max-width:768px) {

  #concept,#menu,#sns,#reservation,#access{
    padding: 50px 0;
  }

  .section-inner1,.section-inner2{
    padding: 0 24px;
    max-width: 550px;
  }
  .col-2{
    display: block;
  }

  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }

}

/* テキスト */
h3.large{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 0.018em;
}

p.medium{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.018em;
}

p.small{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.018em;
}

/* テキスト　スマホ */
@media  screen and (max-width:768px) {
  h3.large{
    font-size: 16px;
  }
  p.medium{
    font-size: 12px;
  }
  p.small{
    font-size: 11px;
  }
}

/* ローディング画面 */
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-image: url(../images/background1.jpg);
    text-align:center;
  }
  
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width:150px;
  }
  
  /* 点滅するアイコンの動き */
  .fadeUp{
  animation-name: smooth-fadein-out;
  animation-duration:0.8s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  opacity: 0;
  }
  
  @keyframes smooth-fadein-out{
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* ローディング画面　スマホ */
  @media  screen and (max-width:768px) {
    #splash_logo img {
      width:120px;
    }
  }

/* ヘッダー */
#header{
  background-image: url(../images/header_background.png);
  background-size: cover;
  height: 133px;
  width: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.header-logo{
  display: flex;
  align-items: center;
  width: 300px;
  margin: 0 160px 27px 0;
}

.header-logo a{
  display: flex;
}

ul.gnav-pc li{
  display: inline;
  margin-left: 45px;
}

ul.gnav-pc li a{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-size: 23px;
  letter-spacing: 0.01em;
}

ul.gnav-pc li a:hover{
  opacity: 0.5;
}

#menu-button{
  display: none;
}

/* ヘッダー　スマホ */
@media  screen and (max-width:768px) {
  #header{
    background-image: url(../images/header_background_sp.png);
    height: 90px;
  }

  h1.header-logo{
    width: 150px;
    height: 30px;
    margin: 0 100px 10px 10px;
  }

  nav.gnav-pc-wrap{
    display: none;
  }

  #menu-button{
    display: block;
    width: 35px;
    height: 35px;
    padding: 0 50px;
    margin-bottom: 5px;
  }

  .menu-button-inner{
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
  }

  .menu-button-inner span{
    display: block;
    width: 100%;
    height: 3px;
    background: #231815;
    position: absolute;
  }

  .menu-button-inner span:nth-of-type(1){
    top: 5px;
  }
  .menu-button-inner span:nth-of-type(2){
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .menu-button-inner span:nth-of-type(3){
    bottom: 5px;
  }

  .close span:nth-of-type(1){
    width:100%;
    transform: rotate(45deg);
    top: 15px;
  }
  .close span:nth-of-type(2){
    opacity: 0;
  }
  .close span:nth-of-type(3){
    width:100%;
    transform: rotate(-45deg);
    bottom: 17px;
  }
}

/* SP用ハンバーガーメニューの中身 */
.gnav-sp-wrap{
  display: none;
  background-image: url(../images/spmenu_background.jpg);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 100;
  padding-top: 100px;
}

ul.gnav-sp li{
  text-align: center;
  margin-bottom: 45px;
}

ul.gnav-sp li a{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #231815;
}

/* メインビジュアル */
#mainvisual{
  width: 100%;
  height: calc(100vh - 113px);
  background-image: url(../images/mainvisual_img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 110px;
  opacity: 0;
  animation: 4.0s fadein 2.0s forwards;
}

.maincopy1{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  color: #231815;
  font-size: 33px;
  letter-spacing: 0.015em;
  opacity: 0;
  position: absolute;
  background: rgba(255,255,255,0.5);
  padding: 0 25px;
  bottom: 90px;
  animation: 2.5s fadein 4.0s forwards;
}

.maincopy2{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  color: #231815;
  font-size: 33px;
  letter-spacing: 0.015em;
  opacity: 0;
  position: absolute;
  background: rgba(255,255,255,0.5);
  padding: 0 25px;
  bottom: 35px;
  animation: 2.5s fadein 6.0s forwards;
}

@keyframes fadein{
  0%{
    left: 0px
  }
  100%{
    left: 0px;
    opacity: 1;
  }
}

/* メインビジュアル　スマホ */
@media  screen and (max-width:768px) {
  #mainvisual{
    height: calc(100vh - 120px);
    background-image: url(../images/mainvisual_sp_img.jpg);
    margin-top: 50px;
  }

  .maincopy1{
    
    font-size: 22px;
    padding: 0 15px;
    font-weight: 500;
    bottom: 65px;
  }
  .maincopy2{
    font-size: 22px;
    padding: 0 15px;
    font-weight: 500;
    bottom: 30px;
  }

}

/* 背景 */
#concept,#menu,#sns,#access{
  background-image: url(../images/background1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

/* セクションロゴ */
h2.section-logo{
  width: 260px;
  margin: 0 auto;
  margin-bottom: 50px;
}

/* セクションロゴ　スマホ */
@media  screen and (max-width:768px) {
  h2.section-logo{
    width: 130px;
    margin-bottom: 25px;
  }
}

/* コンセプト */
#concept .item {
  width: 50%;
  padding-right: 28px;
}

h3.large span{
  display: block;
}

.text-wrap{
  position: relative;
}

h3.large{
  padding: 50px 0 0 50px;
  line-height: 1.6;
}

.text-wrap-img1,.text-wrap-img2{
  width: 100px;
}

.text-wrap-img1{
  position: absolute;
  top: 0px;
}

.text-wrap-img2{
  position: absolute;
  top: 70px;
  right: 130px;
}

#concept p.medium{
  line-height: 2.8;
  margin-top: 65px;
}
.slider-for{
  padding-bottom: 15px;
}

.slick-slide{
  margin: 0 5px;
}

.slider-nav .slick-prev::before,
.slider-nav .slick-next::before{
  color: #231815;
}

/* コンセプト　スマホ */
@media  screen and (max-width:768px) {
  #concept .item {
    width: 100%;
    padding-right: 0px;
    text-align: center;
  }

  h3.large{
    padding: 30px 0 0 0;
  }

  .text-wrap-img1,.text-wrap-img2{
    width: 50px;
  }

  .text-wrap-img1{
    left: 0px;
  }
  
  .text-wrap-img2{
    top: 63px;
    right: 0px;
  }

  #concept p.medium{
    margin: 40px 0;
  }
}
/* メニュー */
.menu-img{
  max-width: 960px;
  margin: 0 auto;
}
.menu-img img:nth-of-type(1) {
    margin-bottom: 15px;
  }

#menu p.small{
  text-align: right;
}

/* メニュー　スマホ */
@media  screen and (max-width:768px) {
  .menu-img{
    width: 100%;
  }
  .menu-img img:nth-of-type(1) {
    margin-bottom: 10px;
  }
  
  #menu p.small{
    text-align: left;
  }
}

/* SNS */
.sns-text{
  text-align: center;
}

.sns-icon{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.icon {
  width: 60px;
}

.icon a:hover {
  opacity: 0.5;
}

.text{
  margin: 18px 0 0 20px;
}

.text a{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.text a:hover{
  opacity: 0.5;
}

.sns-item{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}

.item{
  width: 150px;
}

/* SNS　スマホ */
@media  screen and (max-width:768px) {
  .sns-icon{
    margin-top: 25px;
  }

  .icon{
    width: 40px;
  }

  .text{
    margin: 7px 0 0 15px;
  }
  .text a{
    font-size: 12px;
  }

  .sns-item{
    margin-top: 25px;
    gap: 10px;
  }

  .item{
    width: calc((100% - 10px * 3) / 4);
  }

}

/* 予約 */
#reservation{
  background-image: url(../images/reservation_background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#reservation p.medium{
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

#reservation .col-2{
  background: rgba(255,255,255,0.5);
  padding: 40px 0 30px 0;
}

#reservation .col-2 p.medium{
  color: #231815;
  margin: 0;
}

.line-tell{
  margin: 0 auto;
}

.line-tell img{
  width: 60px;
}

.line-tell a{
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.line,.tell{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.line-icon:hover{
  opacity: 0.7;
}

.line-text:hover{
  opacity: 0.7;
}

.line-text,.tell-text{
  margin-left: 15px;
}

.tell-icon:hover{
  opacity: 0.7;
}

.tell-text:hover{
  opacity: 0.7;
}

.r-text{
  margin: 0 auto;
  padding-top: 10px;
  line-height: 2.8;
}

.span-text2{
  margin-left: 75px;
}
.span-text3{
  margin-left: 80px;
}

/* 予約　スマホ */
@media  screen and (max-width:768px) {
  #reservation p.medium{
    margin-bottom: 25px;
    text-align: center;
  }

  .line-tell a{
    font-size: 14px;
  }

  .line-tell img{
    width: 50px;
  }

  .line-tell{
    width: 50%;
    margin: 0 auto;
  }

  .span-text1{
    margin-right: 55px;
  }
  .span-text2{
    margin-left: 30px;
  }
  .span-text3{
    margin-left: 5px;
  }

}

/* アクセス */
#access{
  padding-bottom: 100px;
}

#access .item{
  width: calc((100% - 80px) / 2);
}

.gmap{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.gmap iframe{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

#access p.medium{
  line-height: 2.8;
}

a.button{
  display: block;
  width: 200px;
  height: 50px;
  background-color: #231815;
  color: #ffffff;
  font-family: 'Noto Serif JP','游ゴシック',sans-serif;
  font-size: 16px;
  letter-spacing: 0.015em;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
}

a.button:hover{
  opacity: 0.7;
}

/* アクセス　スマホ */
@media  screen and (max-width:768px) {
  #access .item{
    width: 100%;
    margin: 0 auto;
    align-items: center;
  }

  #access p.medium{
    margin-top: 25px;
  }

  a.button{
    margin-top: 15px;
  }
  
}

/* フッター */
#footer{
  background-image: url(../images/footer_background.png);
  background-size: cover;
  height: 150px;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 40px 0;
  margin-top: -30px;
}

.instagram{
  width: 50px;
  margin: 0 auto;
}

.instagram:hover{
  opacity: 0.7;
}

#footer p.small{
  margin-top: 10px;
}

/* フッター　スマホ */
@media  screen and (max-width:768px) {
  #footer{
    background-image: url(../images/footer_background_sp.png);
    height: 100px;
    padding: 30px 0;
  }

  .instagram{
    width: 30px;
  }

  #footer p.small{
    margin-top: 0px;
  }

}
