@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  color: #333333;
  /* RGB */
  font-family: 'Noto Sans JP', YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 2.4rem;
  text-align: left;
}

main {
  background-color: #fff;
  overflow-x: hidden;
}

section h2 {
  font-size: 2.0rem;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  opacity: 1.2;
}

a:visited {
  color: none;
}

.none {
  display: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
}

iframe {
  width: 100%;
}

p {
  line-height: 3.2rem;
  letter-spacing: 0.02em;
}

h1 {
  text-align: left;
  font-family: "urw-din-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.6rem;
  line-height: 2.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}


@media(min-width:768px) {
  h1 {
    font-size: 4.8rem;
    margin-bottom: 17px;
  }

}

@media(min-width:1140px) {
  p {
    line-height: 3.9rem;
    letter-spacing: 0.04em;
  }

  h1 {
    font-size: 7.2rem;
    margin-bottom: 24px;
  }
}

/* ヘッダー */

.header {
  background-color: #fff;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  /*左右の余白確保*/
  display: flex;
  /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit;
  /*親要素の高さを継承*/
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 161px;
  margin: 0;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s;
  /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent;
  /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #333333;
  position: relative;
  transition: ease .4s;
  /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -17px;
  transform: rotate(-45deg);
}

.nav-items {
  padding-top: 16vh;
  padding-bottom: 10vh;
  text-align: left;
  letter-spacing: 0.2rem;
  color: #fff;
  padding-left: 60px;
}

.nav-items li {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
}

/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;

}

.nav-items a {
  color: #333;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

.nav-items li span {
  display: block;
  font-family: "urw-din-condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 5.4rem;
  padding-bottom: 24px;
}

@media(min-width:768px) {
  .header__title {
    width: 200px;
  }
}

@media(min-width:1140px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-evenly;
  }

  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    padding-left: 0;
    text-align: center;
  }

  .nav-items__item a {
    margin-bottom: 0;
  }

  .hamburger {
    display: none;
  }

  .nav-items li {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .nav-items li span {
    font-size: 2.4rem;
    font-family: "urw-din-condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding-bottom: 10px;
  }
}

.title-ja {
  text-align: left;
  margin-bottom: 50px;
  font-weight: 600;
}

/* .section-contact {
  background-image: url(../images/home/contact-dish.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 50px;
}

.section-contact__wrapper {
  padding: 50px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  width: 100%;
  text-align: center;
}

.section-contact__text {
  margin: 20px 0 20px;
}

.section-contact__tel span {
  font-size: 2.2rem;
  font-weight: 600;
  background-image: url(../images/home/tel-icon.png);
  background-repeat: no-repeat;
  background-size: 20px auto;
  padding-left: 30px;
  margin-right: 30px;
  background-position: center left;
} */

@media(min-width:768px) {
  .title-ja {
    margin-bottom: 30px;

  }

  .title-ja p {
    font-size: 2.2rem;
  }

  /* .section-contact {
    padding: 100px 50px;
  }

  .section-contact__wrapper {
    max-width: 768px;
    margin: 0 auto;
  } */
}

@media(min-width:1140px) {
  /* .section-contact {
    padding: 200px 10vh;
  }
  .title-ja p {
    font-size: 2.8rem;
  }
  .section-contact__wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 20px;
  }
.section-contact__wrapper h1{
  margin-bottom: 44px;
}
  .section-contact__tel span {
    font-size: 4.6rem;
    background-size: 40px auto;
    padding-left: 60px;
  margin-right: 60px;
  }
  .section-contact__text p{
    font-size: 2.4rem;

  }
  .section-contact__tel{
    margin-top: 50px;
  } */
}




/*矢印の設定*/

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff;
  /*矢印の色*/
  border-right: 2px solid #fff;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
  /*ドットの位置*/
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px !important;
  /*ドットボタンのサイズ*/
  height: 8px !important;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #a57d56 !important;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333 !important;
  /*ドットボタンの現在地表示の色*/
}





.footer {
  padding: 50px;
}

.footer__title {
  text-align: left;
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-small {
  margin: 50px auto 0;
  text-align: center;
}

.footer__nav ul li {
  margin-bottom: 20px;
  font-family: "urw-din-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.18rem;
  font-size: 2.4rem;
}

.footer-small small {
  font-size: 1.2rem;
}
@media(min-width:768px){
  .footer__nav ul{
    display: block;
    margin-left: 100px;
  }
  .footer__inner{
    display: flex;
  }
}
@media(min-width:1140px){
  .footer {
    padding: 50px 0;
    max-width: 1140px;
    margin: 0 auto;
}
.footer__nav ul{
  margin-left: 280px;
}
}




.section-title {
  opacity: 0;
  transition: all 1s;
  transform: translateY(100px);
}

.section-title.show {
  opacity: 1;
  transform: translateY(0);
}
.section-contact {
  padding: 50px 30px;
  margin-top: 100px;
  margin-bottom: 100px;
  background-image: url(../images/home/home-contact-woman.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-contact__wrapper {
  color: #fff;
}

.section-contact__attention {
  font-size: 2.0rem;
  margin-bottom: 50px;
  font-weight: 600;
  
}

.section-contact__attention p {
  letter-spacing: 0.06em;
}

.section-contact__tel span {
  font-size: 2.6rem;
  line-height: 3.5rem;
  font-weight: 600;
  background-image: url(../images/home/tel-icon.png);
  background-repeat: no-repeat;
  background-size: 25px auto;
  padding-left: 50px;
  margin-right: 30px;
  background-position: center left;
  letter-spacing: 0.06em;
  color: #fff;
}
.section-contact__tel a{
  color: #fff;
  text-decoration:none;
}

.section-contact__opening-hours {
  margin-top: 50px;
}

.section-contact__opening-hours-close {
  margin-top: 20px;
}
@media(min-width:768px){
  .section-contact{
      padding: 100px 50px;
      margin-top: 200px;
      margin-bottom: 200px;
  }
  .section-contact__tel span{
      font-size: 4.0rem;
      letter-spacing: 0.12em;
  }
  .section-contact__tel span{
    background-size: 32px auto;
  }
}
@media(min-width:1140px){
  .section-contact{
      background-position: right 35% bottom 45%;
  }
  .section-contact__wrapper{
      max-width: 1140px;
      margin: 0 auto;
  }
}
.section-contact__wrapper {
  opacity: 0;
  transition: all 1s;
  transform: translateY(100px);
}

.section-contact__wrapper.show {
  opacity: 1;
  transform: translateY(0px);
}