@charset "UTF-8";

* {
  font-size: 100%;
  line-height: 1.6;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #382620;
}

header {
  padding: 10px 2%;
  width: 100%;
  background-color: #383838;
  display: flex;
  align-items: center;
}

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

.menu-list {
  display: flex;
}

#header li a:hover {
  opacity: 0.7;
}

.logo {
  color: #ffffff;
}

/* リンクのデフォルトスタイルを無効化し、下線を追加する */
#header li a {
  display: inline-block;
  /* これがないとリンク範囲が全幅になる */
  font-size: 14px;
  /* 文字サイズ */
  position: relative;
  /* 相対位置指定 */
  text-decoration: none;
  /* デフォルトのテキストの下線を消す */
}

/* 下線のスタイル */
#header li a::after {
  background-color: #eeeeee;
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 2px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: center top;
  /* 変形の原点を中央上に指定 */
  transition: transform .3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

/* リンクにホバーした際の下線の表示 */
#header li a:hover::after {
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.current a {
  color: #23ff5a;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 36px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h3 {
  font-size: 30px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h4 {
  font-size: 24px;
  text-align: center;
  margin: 10px 0 0;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.h4-flex {
  text-align: left;
}

.sub {
  margin: 0px 0;
}

nav {
  margin: 0 0 0 auto;
}

ul {
  list-style: none;
  margin: 0;
  align-items: center;
}

li {
  margin: 0 0 0 15px;
  font-size: 14px;
}

/* ------ドロップダウンメニュー */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 22px;
  right: -32px;
  background-color: #555555;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: inline;
}

.dropdown-item a {
  margin-bottom: 20px;
  color: #ffffff;
  display: block;
}

/* ------- */

.icon-2 {
  width: 50px;
  height: auto;
  object-fit: cover;
}

.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 4%;
}

.sec-title {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 40px;
  margin-top: 0%;
  text-align: center;
}

.sec-title-mv {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 76px;
  text-align: center;
}

.text {
  text-align: center;
}

.cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.btn {
  font-size: 20px;
  text-align: center;
  max-width: 240px;
  margin: 40px auto;
  border-radius: 50px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #009926a1;
}

.btn a {
  color: #ffffff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.btn:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* width, heightといっしょに使います */
}

.h2-img {
  width: 300px;
  height: auto;
  object-fit: cover;
  margin: auto;
  display: block;
}

.size {
  font-size: 24px;
}

.br-sp {
  display: none;
}

/* メインビジュアル */
#mv img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

/* インフォ */
.icon {
  width: 100px;
  height: auto;
  object-fit: cover;
}

.new-shop1 {
  width: 90%;
  height: auto;
}

.icon-text {
  margin: 0 20px;
}

.icon-text span {
  color: red;
  font-weight: bold;
}

.info-text {
  border: 2px solid #492300;
  border-radius: 16px;
}

.insta-text {
  color: #382620;
  display: block;
  margin: 20px 0px;
}

/* ごあいさつ */
#message {
  padding: 20px 0;
}

.mes-flex {
  display: flex;
  gap: 10px;
}

.mes-img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.mes-text {
  width: 50%;
}

.mes-text p {
  margin-top: 16px;
}

.text {
  margin-bottom: 16px;
}

.text a {
  color: crimson;
}

.text a:hover {
  opacity: 0.7;
}

.flex {
  display: flex;
  width: 100%;
  gap: 20px;
}

.flex-re {
  display: flex;
  width: 100%;
  gap: 20px;
}

.free {
  width: 50%;
}

.free img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mes-text {
  width: 50%;
}

.message-text {
  text-align: center;
  border: 2px solid #492300;
  border-radius: 16px;
  margin-top: 50px;
  padding: 0 20px;
}

.right {
  text-align: end;
}

.bigimg {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-red {
  font-weight: 600;
  color: red;
  text-align: center;
  font-size: 24px;
}

/* メニュー */
#menu {
  background-image: url(../img/22250470.png);
  padding: 20px 0;
}

#menu-1 {
  padding: 20px 0;
}

.img__card {
  width: 33.333%;
}

.menu-text p {
  text-align: center;
}

.lesson {
  width: 100%;
  height: 300px;
  border-radius: 25px;
  object-fit: cover;
  /* width, heightといっしょに使います */
}

.price {
  margin-top: 50px;
}

.padding {
  padding-top: 50px;
}

.table-flex {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.table-menu {
  margin: 0 auto;
  margin-top: 20px;
}

.red {
  color: red;
  font-size: 20px;
}

/* ギャラリー */
#gallery {
  padding: 20px 0;
}

.name {
  font-size: 40px;
}

.notes {
  font-size: 16px;
  margin-top: 0px;
}

.wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item {
  width: 32%;
  border-radius: 20px;
}

/* アクセス */
#access {
  background-image: url(../img/22250470.png);
  padding: 20px 0;
}

#access-1 {
  padding: 20px 0;
}

.sign-img {
  width: 60%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.sign-text {
  margin: 20px 0 0;
  text-align: center;
  color: red;
  font-size: 36px;
  font-weight: bold;
}

.margin-b {
  margin-bottom: 16px;
}

table,
table th,
table td {
  border: 1px solid #333333;
  border-collapse: collapse;
  padding: 8px 12px;
}

.table {
  margin: 32px auto;
}

.google-map-container {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.shop-name {
  font-size: 20px;
  font-weight: bold;
}

/* ご予約 */
#reserve {
  padding: 20px 0;
}

.reserve-text {
  text-align: center;
}

/* フッター */
footer {
  padding: 20px 0;
  width: 100%;
  background-color: #383838;
  color: #ffffff;
  text-align: center;
}

/* レスポンシブ */
@media screen and (min-width: 769px) {
  .sp-nav {
    display: none;
  }

}

@media screen and (max-width: 769px) {
  .flex {
    display: block;
  }

  .flex-re {
    flex-direction: column-reverse;
    gap: 0;
  }

  .mes-flex {
    display: block;
  }

  .mes-img {
    width: 100%;
  }

  .img__card {
    width: 100%;
  }

  .sec-title-mv {
    font-size: 48px;
  }

  .sec-title {
    font-size: 40px;
  }

  .btn {
    font-size: 16px;
    max-width: 200px;
    margin: 12px auto;
  }

  h1 {
    font-size: 24px;
  }

  .size {
    font-size: 20px;
  }

  .br-sp {
    display: block;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
    /* text-align: left; */
  }

  .red p {
    font-size: 18px;
  }

  .icon-text p {
    text-align: center;
    font-size: 16px;
  }

  .insta-text {
    font-size: 14px;
  }

  .free img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .padding {
    padding-top: 16px;
  }

  .sign-text {
    font-size: 28px;
  }

  .sub {
    text-align: center;
    margin-bottom: 10px;
  }

  .mes-text {
    width: 100%;
  }

  .wrap {
    display: block;
  }

  .item {
    width: 100%;
  }

  .free {
    width: 100%;
  }

  .name {
    font-size: 32px;
  }

  .notes {
    font-size: 14px;
  }

  .table-flex {
    flex-direction: column;
  }

  .table-eat {
    width: 100%;
  }

  .table-topping {
    width: 100%;
  }

  footer p {
    text-align: center;
  }

  /* ハンバーガーメニュー */
  .pc-nav {
    display: none;
  }

  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
    margin: 0 0 0 auto;
  }

  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
  }

  #hamburger::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    transition: all .2s ease-in-out;
    opacity: 0;
    transform: translateY(-100%);
  }

  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .sp-nav li {
    margin: 0;
    padding: 0;
  }

  .sp-nav li span {
    font-size: 15px;
    color: #fff;
  }

  .sp-nav li a,
  .sp-nav li span {
    display: block;
    padding: 20px 0;
  }

  /*基準となるli要素*/
  .sp-nav .close {
    position: relative;
    padding-left: 20px;
  }

  /*バツ印線1*/
  .sp-nav .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
  }

  /*バツ印線2*/
  .sp-nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
  }

  .toggle {
    transform: translateY(0);
    opacity: 1;
  }

  #header li a::after {
    bottom: 15px;
    /* 要素の下端からの距離 */
  }

}

/* トップへ戻るボタン */
/* 右下に固定 */
#page-top a {
  /* background-color: #222222a1; */
  background-color: #009926a1;
  bottom: 100px;
  color: #ffffff;
  padding: 20px;
  position: fixed;
  right: 0px;
}