@charset "UTF-8";

/* ====== 共通 ====== */
body {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;

}

b, strong, .bold{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Segoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

header .navbar-brand {
  width: 20%;
  min-width: 200px;
}

header .navbar-brand .logo {
  width: 100%;
}

header .tel {
  font-size: 2rem;
  color: #fff;
}

header .tel a {
  color: #fff;
}

header.top-page {
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
}

/* ====== ナビバー/ハンバーガーメニューの設定 ====== */
header .navbar {
  background-color: #fff;
}

header .navbar li {
  font-weight: bold;
}

header .navbar li.nav-item a {
  color: #333;
}

header .navbar-collapse {
  flex-grow: 0;
  text-align: center;
}

  /*ハンバーガー*/
.navbar-toggler {
  border: none;
  padding: 0px 5px;
  box-sizing: border-box;
  position: relative;
  border: solid 2px #333;
  width: 44px;
  height: 50px;
}

.navbar-toggler-menu {
  position: relative;
  bottom: 16px;
  width: 0;
  font-size: 0.64rem;
  font-weight: 500;
}

.navbar-toggler-icon {
  background-image: none;
  /* この行で背景画像を無効化 */
  background-color: #333;
  width: 30px;
  height: 3px;
  display: block;
  position: absolute;
  transition: ease .5s;
}

  /* 3本のバーそれぞれの座標を設定 */
.navbar-toggler-icon:nth-of-type(1) {
  top: 20px;
}

.navbar-toggler-icon:nth-of-type(2) {
  top: 28px;
}

.navbar-toggler-icon:nth-of-type(3) {
  top: 36px;
}

  /* メニューが開いている時の　3本のバーそれぞれの座標および角度を設定 */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
  top: 28px;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
  top: 28px;
  transform: rotate(-45deg);
}

  /*SNS */
header .navbar-sns li img {
  width: 30px;
}

/* ====== ACCESS ====== */
.access #google-map {
  position: relative;
    width: 100%;
    padding-top: 50%; /* = height ÷ width × 100 */
}

.access #google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access .parking-icon {
  color: #a62126;
}


/* ====== トップスライダー ====== */
#slider-area {
  overflow: hidden;
}
#slider-area .top-slider {
  padding-left: 0px;
  padding-right: 0px;
}
/*スライド画像の横幅可変*/
.top-slider img {
      width: 100%;
     height: 36vw;
     object-fit: cover;
     margin: 0 auto;
}

/*矢印*/
.slider-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.slider-next {
  right: 20px;
}
.slider-prev {
  left: 20px;
  z-index: 1000;
}

/* ====== SHOPINFO ====== */
.shopinfo dt {
  width: 85px;
}
.shopinfo dd {
  padding-left: 85px;
}
.shopinfo .logo {
  width: 40%;
  min-width:200px;
}

/* ====== Footer ====== */
footer .bg {
  background-color: #333;
}

/* ====== MENUボタン ====== */
.menu .btn-more {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #333;
  font-weight: 800;
  border: solid 3px #333;
  border-radius: 3px;
  transition: .4s;
}

.menu .btn-more:hover {
  background: #333;
  color: white;
}

/* ====== 各セクションタイトル ====== */

.ttl-bdr {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.ttl-bdr:before,
.ttl-bdr:after {
content: "";
height:1px;
flex-grow: 1;
background-color:#333;
}
.ttl-bdr:before {
margin-right: 1rem;
height: 10px;
}
.ttl-bdr:after {
margin-left: 1rem;
height: 10px;
}

/* ====== TOTOP ====== */
/* ページトップ */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 80%;
}

#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 100px;
  padding: 25px 0;
  text-align: center;
  display: block;
  border-radius: 10px;
}

#page-top a:hover {
  text-decoration: none;
  background: #999;
}

.btn-outline-secondary:hover {
  color: #6c757d;
}


/* =============================================
メディアクエリ
============================================= */
/* 大デバイス（デスクトップ, 1200px 未満）
==============================================*/
@media screen and (max-width: 1199.98px) {
  .herounit h1 {
    margin-top: 10rem;
  }
  .top-slider img {
       height: 46vw;
  }
}

/* END */
/* 中デバイス（タブレット, 992px 未満）
==============================================*/
@media screen and (max-width: 991.98px) {
  .container {
    max-width: 740px;
  }
  /* ====== SHOPINFO ====== */
  .shopinfo dd {
    padding-left: 0px;
  }

    header .navbar-nav {
      border-top: 1px solid #fff;
      text-align: center;
    }
    header ul.navbar-sns {
      display: block;
    }

    header .navbar-sns li {
      display: inline-block;
      padding: 0 8px 15px 8px;
    }
}

/* END */
/* 小デバイス（横向きモバイル, 768px 未満）
==============================================*/
@media screen and (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
  }

  #sec3 {
    background-image: none;
  }

  .ttl-bdr {
    position: relative;
    display: block;
  }

  .ttl-bdr::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 6px solid #333;
    width: 13%;
    margin: 0 auto -15px;
    height: 0px;
  }
    .ttl-bdr::after {
      display: none;
    }
    .sp-mabo {
      margin-bottom: 3rem;
    }
}

/* END */
/* 極小デバイス（縦向きモバイル, 576px 未満）
==============================================*/
@media screen and (max-width: 575.98px) {
  .display-3 {
    line-height: 0.8em;
  }

  .display-4 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

/* END */
