@charset "utf-8";

body{
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #7b361e;
  background-color: #faf3e5;
}
.flex{
  display: flex;
  justify-content: space-between;
}
.inner{
  width: 90vw;
  margin: 0 auto;
}
.inner2{
  width: 70vw;
  min-width: 710px;
  margin: 0 auto;
}
a{
  text-decoration: none;
  color: #7b361e;
}
*{
  box-sizing: border-box;
}
.category{
  font-size: 50px;
  font-weight: bold;
  color: #d0250f;
  text-align: center;
  margin-bottom: 45px;
  display: block;
  /* ページ内リンクジャンプ先のずれ調整 */
  padding-top: 150px;
  margin-top: -150px;
}

/* -----------------------
  header 
------------------------*/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: 90px;
  padding: 11px 0;
  background-color: #faf3e5;
  z-index: 60;
}
header .flex{
  align-items: center;
}
header .logo{
  width: 210px;
}
.logo img{
  width: 100%;
}
header .icon{
  display: flex;
  justify-content: end;
  margin-right: 106px;
}
header .icon .insta{
  font-size: 44px;
  margin-right: 60px;
}
header .mail{
  font-size: 46px;
}

/* ハンバーガーとnavを揃える */
.ham{
  position: fixed;
  right: 1vw;
  width : 125px;
  display: flex;
  justify-content: center;
  z-index: 100;
}
/*　ハンバーガーボタン　*/
.hamburger {
  position: fixed;
  z-index : 100;
  top   : 21px;
  width : 48px;
  height: 48px;
  cursor: pointer;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 36px;
  height  : 2px ;
  left    : 6px;
  background : #7b361e;
  transition : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 34px;
}

/* nav開いてる時のハンバーガーボタン .show追加*/
.hamburger.show{
  z-index: 150;
}
.hamburger.show span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  transform : rotate(-45deg);
}
.hamburger.show span:nth-child(2),
.hamburger.show span:nth-child(3) {
  top: 16px;
  background :#fff;
  transform : rotate(45deg);
}

/* 開いてる時のnav */
nav.globalMenuSp{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #555;
}
nav.globalMenuSp ul li{
  width: 100%;
  height: auto;
  padding: 1.5em 1em;
  font-size: 18px;
  text-align: center;
}
nav.globalMenuSp ul li a{
  color: #fff;
}
nav.globalMenuSp ul li a:hover{
  color :#e3e1e1;
}
nav.globalMenuSp .icon-sp{
  display: none;
}
/* アニメーション前のメニューの状態 */
nav.globalMenuSp{
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
}
/* アニメーション後のメニューの状態 */
nav.globalMenuSp.show{
  pointer-events: auto;
  opacity: 1;
}
/* ハンバーガーここまで */

/* -----------------------
  メインビジュアル
------------------------*/
.mv{
  margin-top: 140px;
}
.mv .mvleft{
  width: 33vw;
  height: calc(100vh - 140px);
  margin-left: 3.5vw;
}
.mv .catchcopy-pc{
  width: 28vw;
  margin: 35px 0 70px;
}
.mv .catchcopy-pc img{
  width: 100%;
}
.catchcopy-sp{
  display: none;
}

/* キャッチコピー左からフェードイン */
.mv .fade-left{
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity:0;
  }

  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }

.mainNav{
  margin-left: 1vw;
}
.mainNav li{
  font-size: 18px;
  margin-bottom: 37px;
  cursor: pointer;
}
.mainvisu{
  background-image: url(../images/mv.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 67vw;
  height: calc(100vh - 140px);
}
/* mvロード時のフェード*/
.load-fade{
  opacity: 0; 
  transition: opacity 3s, transform 3s;
}
.load-fade.done{
  opacity : 1;
  transform : translate(0, 0);
}

/* -----------------------
  about 
------------------------*/
.about{
  margin: 200px 0;
}
.about .flex{
  justify-content: space-around;
}
.about .detail{
  text-align: center;
  line-height: 2.6;
  letter-spacing: 0.04em;
  width: 712px;
  margin: 0 auto 100px;
}
.title{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}
.point{
  margin-bottom: 150px;
}
.point:last-child{
  margin-bottom: 0;
}
.point .pointimg{
  width: 44vw;
  min-width: 300px;
}
.point .pointimg img{
  width: 100%;
}
.subtitle .number{
  color: #d0250f;
	font-size: 65px;
  line-height: 1;
}
.contents{
  width: 46vw;
}
.contents:nth-child(odd){
  margin-right: 40px;
}
.contents:nth-child(even){
  margin-left: 40px;
}
.contents .subtitle{
  font-size: 33px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}
.contents p{
  line-height: 2.3;
  letter-spacing: 0.02em;
  text-align: justify;
}

/* -----------------------
  kitchen 
------------------------*/
.kitchen{
  margin-bottom: 200px;
}
.zumen{
  width: 50vw;
  margin: 0 auto 60px;
}
.zumen img{
  width: 100%;
}
.kitchen dl{
  margin-bottom: 50px;
}
.kitchen dl:last-of-type{
  margin-bottom: 46px;
}
.kitchen dt{
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.kitchen dd{
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.attention{
  letter-spacing: 0.02em;
}

/* -----------------------
  cost 
------------------------*/
.cost{
  background-color: #fff;
  padding: 100px 5vw;
}
.cost .cost-table{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.cost table{
  width: 100%;
  margin-bottom: 20px;
}
.cost table tr th,.cost table tr td{
  font-weight: bold;
}
.cost table .plan th{
  text-align: center;
  border-bottom: solid 1px #7b361e;
  padding-bottom: 15px;
}
.cost table .border{
  border-bottom: solid 1px #7b361e;
}
.cost table tr td{
  padding: 18px 0;
}
.cost table .riyou th{
  text-align: center;
  padding: 0 30px;
}
.cost table tr .time{
  padding-left: 47px;
}
.cost table tr .price{
  padding: 0 30px;
}
.cost p{
  font-size: 14px;
  margin-bottom: 10px;
}

/* -----------------------
  flow  
------------------------*/
.flow{
  margin: 200px 0;
}
.flow .step-pc{
  width: 100%;
  margin-bottom: 20px;
}
.flow .step-pc img{
  width: 100%;
}
.flow .step-sp{
  display: none;
}
.flow .onayami{
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 100px;
}
.flow .contact-info{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}
.flow .contact-info br{
  display: none;
}
.button{
  width: 225px;
  padding: 1.4em 4.2em;
  background-color: #d0250f;
  border-radius: 0.3rem;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
}
.button:hover{
  opacity: .8;
}
.button a{
  width: 225px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.button a::after{
  content: ">";
  font-size: 18px;
  color: #fff;
  margin-left: 15px;
}

/* -----------------------
  calendar 
------------------------*/
.calendar{
  background-color: #fff;
  padding: 100px 0;
}
.calendar .goglecale{
  text-align: center;
}
.calendar .goglecale iframe{
  width: 100%;
} 

/* -----------------------
  contact 
------------------------*/
.contact{
  margin: 200px;
  text-align: center;
}
.contact .text{
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.contact .fa-instagram{
  font-size: 70px;
}
.contact .fa-envelope{
  font-size: 72px;
  margin-left: 50px;
}

/* -----------------------
  access 
------------------------*/
.access{
  margin-bottom: 200px;
}
.access .flex{
  align-items: flex-end;
}
.access .gogle-map iframe{
  width: 42vw;
  aspect-ratio: 16 / 9;  
  /* アスペクト比（縦横比）を指定 */
}
.access .info{
  margin-left: 60px;
}
.access .shopname{
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.access address{
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
.access .route{
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

/* -----------------------
  footer
------------------------*/
footer{
  background-color: #7b361e;
  height: 100px;
  padding: 28px 0;
} 
footer .flex{
  justify-content: end;
  align-items: center;  
}
footer p{
  width: 30vw;
  display: block;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
footer .icon{
  width: 30vw;
  display: flex;
  justify-content: end;
}
footer .fa-instagram{
  font-size: 44px;
  color: #fff;
}
footer .fa-envelope{
  font-size: 46px;
  color: #fff;
  margin-left: 45px;
}

/* TOPへ戻るボタン */
#top-page{
  display: none;/* 最初は消す */
  position: fixed;
  z-index: 50;
  right: 5vw;
  bottom: 20px;
  background-color: transparent;
}
#top-page a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(123, 54, 30, .7);
  transition: opacity .6s ease;
}
#top-page a:hover{
  opacity: .6;
}
#top-page a::before{
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  /* 矢印 */
  width: 10px;
  height: 10px;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

  /* ロード時のフェード*/
.load-fade{
  opacity: 0; 
  transition: opacity 4s, transform 4s;
}
.load-fade.done{
  opacity : 1;
  transform : translate(0, 0);
}

/* スクロールすると下からふわっと表示 */
.fadein-bottom{
  /* 30px下げる */
  transform: translateY(30px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 2s, opacity 2s;
}
.fadein-bottom.show {
  transform: translateY(0);
  opacity: 1;
}

/* 画像スクロールフェードイン */
.fadein{
  transition: 3s;
  opacity: 0;
}
.fadein.animated {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .inner,.inner2,header .logo,.mv .mvleft,.mv .catchcopy-pc,.mainvisu,.about .detail,.point .pointimg,.contents,.zumen,footer p,footer .icon{
    width: auto;
  }
  .inner2,.point .pointimg{
    min-width: auto;
  }
  .cost table{
    max-width: none;
  }
  .flex {
    display: block;
  }
  header .icon,.mainNav{
    display: none;
  }
  .inner,.inner2{
    margin: 0 15px;
  }
  .category{
    font-size: 30px;
    margin-bottom: 20px;
    /* ページ内リンクジャンプ先のずれ調整 */
    padding-top: 100px;
    margin-top: -100px;
  }
  br.delete{
    display: none;
  }

  /* -----------------------
    header sp
  ------------------------*/
  header{
    height: 80px;
    padding: 15px 0;
    z-index: 60;
  }
  header .logo{
    width: 150px;
    margin: 0 auto;
  }
  .ham{
    right: -4vw;
  }
  .hamburger{
    top: 17px;
  }
  /* nav開いているとき */
  nav.globalMenuSp ul li{
    padding: 1em 1em;
    font-size: 16px;
  }
  nav.globalMenuSp .icon-sp{
    display: block;
    display: flex;
  }
  nav.globalMenuSp .icon-sp li{
    font-size: 30px;
    padding: .5em .5em;
  }
  
  /* -----------------------
    メインビジュアル sp
  ------------------------*/
  .mv{
    position: relative;
    margin-top: 0;
  }
  .mv .mvleft{
    height: auto;
  }
  .mv .catchcopy-pc{
    display: none;
  }
  .mv .catchcopy-sp{
    display: block;
    position: absolute;
    top: 105px;
    width: 70vw;
    z-index: 50;
  }
  .mv .catchcopy-sp img{
    width: 100%;
  }
  .mainvisu{
    /* 画像少し明るく */
    background-image: linear-gradient(rgba(255,255,255,.4),rgba(0,0,0,.3)),url(../images/mv.jpg);
    width: 100vw;
    height: 100vh;
    background-position: 34% 36px;
  }
 
  /* -----------------------
    about sp
  ------------------------*/
  .about{
    margin: 150px 0;
  }
  .about .detail{
    font-size: 14px;
    text-align: justify;
    letter-spacing: 0.02em;
  }
  .title{
    font-size: 25px;
    margin-bottom: 30px;
  }
  .point:nth-of-type(2){
    display: flex;
    flex-direction: column-reverse;
  }
  .point{
    margin-bottom: 110px;
  }
  .point .pointimg{
    margin-bottom: 15px;
  }
  .contents .subtitle{
    font-size: 20px;
    margin-bottom: 12px;
  }
  .subtitle .number{ 
    font-size: 50px;
    margin-right: 7px;
  }
  .contents .left{
    padding-left: 5.5em;
  }
  .contents:nth-child(odd){
    margin-right: 0;
  }
  .contents:nth-child(even){
    margin-left: 0;
  }
  .contents p{
    font-size: 14px;
    line-height: 2;
  }
  .indent{
    padding-left: 30px;
  }

  /* -----------------------
    kitchen sp
  ------------------------*/
  .kitchen{
    margin-bottom: 150px;
  }
  .kitchen dl{
    margin-bottom: 46px;
  }
  .kitchen dl:last-of-type{
    margin-bottom: 46px;
  }
  .kitchen dt{
    font-size: 17px;
    margin-bottom: 8px;
  }
  .kitchen dd{
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: justify;
  }
  .attention{
    font-size: 14px;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
  }

  /* -----------------------
    cost sp 
  ------------------------*/
  .cost{
    padding: 100px 20px;
  }
  .cost .inner2{
    margin: 0;
  }
  .cost table{
    width: 100%;
  }
  .cost table thead{
    display: none;
  }
  /* table縦並び */
  .cost table tr th,.cost table tr td{
    width: 100%;
    display: block;
    text-align: center;
  }
  .cost table .riyou th{
    font-size: 17px;
    padding: 40px 0 23px;
  }
  .cost table .riyou .border-top{
    border-top: solid 1px #7b361e;
  }
  .cost table tr td{
    font-size: 14px;
    font-weight: normal;
    padding: 0;
  }
  .cost table tr .day{
    padding-bottom: 10px;
  }
  .cost table tr .price{
    padding: 0 0 40px 0;
  }
  .cost table tr .time{
    padding-left: 1em;
  }
  .cost .cost-table p{
    line-height: 1.4;
    margin-bottom: 15px;
    text-indent: -1em;
    padding-left: 1em;
  }

  /* -----------------------
    flow sp
  ------------------------*/
  .flow{
    margin: 150px 0;
  }
  .flow .step-pc{
    display: none;
  }
  .flow .step-sp{
    display: block;
  }
  .flow .step-sp .step{
    margin-bottom: 30px;
  }
  .flow .step-sp .yajirusi{
    width: 15px;
    margin: 0 auto 30px;
  }
  .flow .step-sp .step5{
    width: 46vw;
    margin: 0 auto 30px;
  }
  .flow .step-sp img{
    width: 100%;
  }
  .flow .onayami{
    font-size: 14px;
    text-align: start;
    margin-bottom: 50px;
  }
  .flow .contact-info{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .flow .contact-info br{
    display: block;
  }
  .button{
    width: 170px;
    padding: 1em 0 1em .3em;
  }
  .button a{
    width: 170px;
    font-size: 17px;
    font-weight: normal;
  }

  /* -----------------------
  calendar sp 
  ------------------------*/


  /* -----------------------
    contact sp
  ------------------------*/
  .contact{
    margin: 150px 0;
  }
  .contact .text{
    font-size: 14px;
    text-align: justify;
  }
  .contact .fa-instagram{
    font-size: 44px;
  }
  .contact .fa-envelope{
    font-size: 46px;
    margin-left: 35px;
  }

  /* -----------------------
    access sp 
  ------------------------*/
  .access{
    margin-bottom: 150px;
  }
  .access .inner2{
    margin: 0;
  }
  .access .gogle-map iframe{
    width: 100%;
    border: none;
  }
  .access .gogle-map{
    margin-bottom: 20px;
  }
  .access .info{
    margin: 0 15px 0;
  }
  .access{
    margin-bottom: 100px;
  }

  /* -----------------------
  footer sp
  ------------------------*/
  footer{
    height: 156px;
    padding: 40px 0 20px;
  }
  footer .flex{
    display: flex;
    flex-direction: column-reverse;
  }
  footer p{
    font-size: 10px;
  }
  footer .icon{
    justify-content: center;
    margin-bottom: 40px;
  }
  footer .fa-envelope{
    margin-left: 40px;
  }
  /* TOPへ戻るボタン */
  #top-page a{
    width: 45px;
    height: 45px;
  }
  #top-page a:hover{
    opacity: .6;
  }
  #top-page a::before{
    /* 矢印 */
    width: 8px;
    height: 8px;
  }
}
 
  
  

  
  




