/* ----------------------------------------------- 共通 */
html,
body {
  overflow-x: hidden;
}

body {
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 0;

}

p {
  line-height: 2.0em;
  font-weight: 100;
  font-style: normal;
  font-size: 14px;

}

.section_title {
  font-size: 36px;
  /* フォントの太さ600 標準は400です */
  font-weight: 600;
}

/* section_titleに擬似要素を追加 */
.section_title::after {
  /* 疑似要素はデフォルトでインライン要素のためブロック要素に変更 */
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 0 16px;
  width: 100px;
  border-bottom: solid 1px #000000;
}

/* ----------------------------------------------- ナビゲーションメニュー */
.navbar_brand_logo {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 15px;
}

.my_navbar_brand, .my_nav_link {
  font-size: 16px;
  font-family: 'Lora', serif;
  color: #000000 !important;
}

/* Bootstrapのボタンに初期設定されている周囲のborder（枠線）を消す */
.navbar-toggler {
  padding: 0 !important;
  border: none;
}

/* ハンバーガーボタンがチェック状態である（押されている）とき、閉じるボタン（×）を表示する */
#hamburger_btn_check:checked~.hamburger_btn .btn_close {
  display: block;
}

 /* ハンバーガーボタンがチェック状態である（押されている）とき、ハンバーガーボタンを表示しない */
#hamburger_btn_check:checked~.hamburger_btn .btn_open {
  display: none;
}

/* 最初に表示した時は、閉じるボタン（×）は表示しない */
.btn_close {
  display: none;
}

 /* ハンバーガーボタンが押されているかを判断するためのチェックボックスは隠す */
#hamburger_btn_check {
  display: none;
}

/* ----------------------------------------------- カールセル */
.my_carousel_caption {
  font-size: 52px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  font-family: 'Lora', serif;
  line-height: 1.5em;
}

/* 疑似要素でアイコンを配置。前に配置しています */
.my_carousel_caption::before {
  content: url(../img/logoSymbol_White.png);
  display: block;
}

/* スマートフォン画面幅（画面幅が最大375pxまで）の場合、以下のスタイルを適用。 */
@media screen and (max-width:375px) {
  .my_carousel_caption {
    font-size: 27px;
  }
}

.carousel-item {
  height: 32rem;
}

.carousel-item>img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}

/* ----------------------------------------------- アバウト */
 /* aboutクラスのあとに"私たちについて"の文字を追加  */
.about::after {
  content: "私たちについて";
}

.about_us_bg {
  background-color: #FFE6A5;
}

/* ----------------------------------------------- ギャラリー */
.gallery::after {
  content: "ギャラリー";
  margin: 0 auto 0;
}

/* ----------------------------------------------- メニュー */
.menu::after {
  content: "メニュー";
  margin: 0 auto 0;
}

.menu_title {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}

.menu_price {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Lora', serif;
}

/* ----------------------------------------------- レビュー */
 /* 背景画像を設定 */
.review_wrapper {
  background-image: url(../img/background-reviews.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* サブタイトルを擬似要素で表示 */
.review::after {
  content: "お客様の声";
  margin: 0 auto 0;
  border-bottom: solid 1px #ffffff;
}

/* 白い背景色の高さを固定 */
.h_420 {
  height: 420px;
  position: relative;
}

/* レビューの画像を修正 */
.reviewer_img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
}

/* 星のアイコン画像です */
.star_img {
  width: 25px;
  height: 25px;
}

/* 詳細ボタンを下部に固定 */
.fix_bottom {
  /* positionプロパティで絶対配置 */
  position: absolute;
  width: 80px;
  height: 44px;
  /* 左から24px、下から24pxの位置に配置 */
  left: 24px;
  bottom: 24px;
}

/* ----------------------------------------------- アクセス */
.access::after {
  content: "アクセス";
  margin: 0 auto 0;
}

/* ----------------------------------------------- フッター */
#footer {
  background-color: #FAFAFA;
}

/* position:　absoluteで下からの距離で固定 */
.copy_right {
  font-size: 14px;

  /* 先祖要素のdivタグの左下の角を基準に絶対配置します */
  position: absolute;
  bottom: 1rem;
  left: 12px;
  display: flex;
}

 /* copy_rightのクラスを適用したdivタグの子要素のpタグに適用される */
.copy_right>p {
  margin-right: 5rem;
  margin-bottom: 0;
}

/* copy_rightのクラスを適用したdivタグの子要素で、sns_imgクラスを適用しているimgタグに適用される */
.copy_right>img.sns_img {
  height: 24px;
  width: 24px;
  margin-right: 10px;
  margin-top: 0;
}

/* restaurant_info直下の子要素pタグ全てに適用される */
.restaurant_info p {
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
}

.restaurant_info img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  line-height: 1.5;
  margin-top: auto;
}

.footer_brand_logo {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-right: 15px;
}

.footer_text {
  font-size: 24px;
  font-family: 'Lora', serif;
}

@media screen and (max-width: 991px) {
  .footer_text, .copy_right {
    margin-top: 2rem;
    text-align: center;
    position: relative;
  }

  .copy_right>p,img {
    margin-right: 1rem;
    font-size: 14px;
    margin: 0;
    line-height: 35px;
  }
}
