@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Didot";
}

/* reset */
html,
body {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  font-weight: bold;
  line-height: 1;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 24px;
}

p,
a {
  padding: 0;
  margin: 0;
  color: black;
  line-height: 1;
  font-weight: bold;
}

p {
  font-size: 12px;
}

a {
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
  line-height: 1;
}

li {
  line-height: 1;
}

div {
  line-height: 1;
}

.fwb {
  font-weight: bold !important;
}

.YuMincho {
  font-family: YuMincho;
}

html {
  font-size: 62.5%;
}
html body {
  margin: 0 !important;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

header#header {
  position: fixed;
  display: flex;
  padding: 20px;
  width: 100%;
  justify-content: space-between;
  z-index: 100;
}
header#header .header-logo img {
  width: 130px;
}
header#header .header-btn {
  height: 60px;
  width: 60px;
  background: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
header#header .header-btn .header-btn-border {
  display: block;
  width: 30px;
  background-color: #fff;
  height: 2px;
}

.drawer-overlay {
  display: none;
}
.drawer-overlay.js_humburgerOpen {
  display: block;
  height: 100%;
  cursor: pointer;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  right: 0;
  z-index: 150;
}

.headerToggleMenu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 200;
  display: block;
  transition: 1s;
  background-color: #000;
  right: -120%;
}
@media screen and (min-width: 769px) {
  .headerToggleMenu {
    width: 350px;
  }
}
.headerToggleMenu.js_humburgerOpen {
  right: 0;
}
.headerToggleMenu .headerToggleMenu-btn {
  height: 60px;
  width: 60px;
  background: #fff;
  position: relative;
  position: absolute;
  top: 20px;
  right: 20px;
}
.headerToggleMenu .headerToggleMenu-btn::before, .headerToggleMenu .headerToggleMenu-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px; /* 棒の幅（太さ） */
  height: 2px; /* 棒の高さ */
  background: #000; /* バツ印の色 */
}
.headerToggleMenu .headerToggleMenu-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.headerToggleMenu .headerToggleMenu-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.headerToggleMenu .headerToggleMenu-list {
  margin-left: 30px;
  margin-top: 107px;
}
.headerToggleMenu .headerToggleMenu-list ul {
  display: grid;
  gap: 35px;
}
.headerToggleMenu .headerToggleMenu-list ul li a {
  font-size: 17px;
  line-height: 25px;
  color: #fff;
  font-weight: normal;
  font-family: "Didot";
}
@media screen and (min-width: 769px) {
  .headerToggleMenu .headerToggleMenu-list ul li a {
    font-size: 20px;
  }
}
.headerToggleMenu .headerToggleMenu-list ul li a:visited {
  color: #fff;
}
.headerToggleMenu .headerToggleMenu-list ul li a:hover {
  color: #fff;
  opacity: 0.7;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
}

/* フッターセクション全体 */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  background-color: #fff; /* 必要に応じて背景色を変更 */
}
@media screen and (max-width: 768px) {
  .footer-section {
    padding: 60px 0 20px;
  }
}

/* ロゴ画像 */
.footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer-logo img {
    width: 130px;
  }
}

.social-link {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.social-link a {
  display: flex;
  align-items: center; /* アイコンとテキストを中央揃え */
  gap: 10px; /* アイコンとテキストの間にスペースを追加 */
  color: #333; /* リンクテキストの色 */
  text-decoration: none; /* リンクの下線を削除 */
}

.social-link a:hover {
  color: #555; /* ホバー時のテキスト色 */
}

.social-link img {
  width: 40px; /* Instagramアイコンのサイズ */
  height: auto;
}

/* 著作権表示 */
.copyright p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

.btn-reservation {
  display: block;
  width: 365px;
  margin: 110px auto 0;
}
@media screen and (max-width: 768px) {
  .btn-reservation {
    width: 250px;
    margin: 60px auto 0;
  }
}

.top-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Didot";
  /* Addressのリスト */
  /* Recruitセクション全体のスタイル */
  /* Recruitの見出し画像 */
  /* Moreボタンのスタイル */
}
.top-page h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
.top-page .banner-container {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.top-page .slideshow-container {
  position: relative;
  overflow: hidden;
  width: 100%; /* 横幅100% */
}
.top-page .slide-fade {
  display: block; /* 最初に表示される要素は表示する */
  width: 100%;
  height: auto; /* 高さは自動的に調整される */
  animation: fadeEffect 1.5s;
}
.top-page .slide-fade img {
  width: 100%; /* 横幅を100%に設定 */
  height: auto; /* 高さは自動調整される */
  object-fit: cover; /* 親要素の幅に合わせて画像が適切に拡大される */
}
.top-page .overlay-buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.top-page .overlay-button {
  position: absolute;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  pointer-events: auto; /* ボタン部分だけクリック可能に */
}
.top-page .overlay-button img {
  width: 33.3vw; /* アイコンのサイズ */
  height: auto;
  object-fit: cover; /* 親要素の幅に合わせて画像が適切に拡大される */
}
.top-page .overlay-menu-button {
  position: absolute;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  pointer-events: auto; /* ボタン部分だけクリック可能に */
}
.top-page .overlay-menu-button img {
  width: 8.33vw; /* アイコンのサイズ */
  height: auto;
  object-fit: cover; /* 親要素の幅に合わせて画像が適切に拡大される */
}
.top-page .left-top {
  top: 20px;
  left: 20px;
}
.top-page .right-top {
  top: 20px;
  right: 20px;
}
.top-page .right-bottom {
  bottom: 20px;
  right: 20px;
}
.top-page .content-container {
  margin: 0 auto;
  max-width: 980px;
  margin-top: 89px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-page .content-container {
    padding: 0 20px;
    margin-top: 60px;
  }
}
.top-page .intro-section {
  text-align: center;
  width: 100%;
}
.top-page .intro-section h2 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
  font-weight: normal;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .top-page .intro-section h2 {
    font-size: 20px;
  }
}
.top-page .intro-section p {
  padding-top: 42px;
  line-height: 24px; /* 行間を設定 */
  color: #333;
  font-size: 12px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .top-page .intro-section p {
    padding-top: 36px;
  }
}
.top-page .section-heading {
  font-size: 24px;
  margin: 70px 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-page .section-heading {
    margin: 55px 0 30px;
  }
}
.top-page .section-heading::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #000;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .top-page .section-heading::after {
    margin: 5px auto 0;
  }
}
.top-page .access {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.top-page .map-container {
  width: 100%;
}
.top-page .map-container iframe {
  width: 100%;
  height: 529px;
}
@media screen and (max-width: 768px) {
  .top-page .map-container iframe {
    height: 350px;
  }
}
.top-page .info-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-page .info-section {
    flex-direction: column;
  }
}
.top-page .info-section h2 {
  font-size: 24px;
  margin: 0;
  width: 80px; /* 見出しの幅を統一 */
  text-align: left;
}
.top-page .access-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 左揃えに変更 */
  text-align: left; /* テキストを左揃え */
  width: 100%;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .top-page .access-section {
    padding-top: 27px;
  }
}
.top-page .access-info,
.top-page .hours-info {
  display: flex;
  align-items: flex-start; /* 上端を揃える */
  gap: 20px;
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  .top-page .access-info,
.top-page .hours-info {
    padding-top: 0;
    gap: 11px;
  }
}
@media screen and (max-width: 768px) {
  .top-page .hours-info {
    padding-top: 42px;
  }
}
.top-page .access-info h2,
.top-page .hours-info h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  min-width: 80px; /* 見出しの幅を固定 */
  text-align: left;
}
.top-page .address-list,
.top-page .hours-list {
  display: flex;
  flex-direction: column;
  gap: 5px; /* 行間を調整 */
  text-align: left;
  font-size: 14px;
}
.top-page .address-item,
.top-page .hours-item {
  display: flex;
  justify-content: flex-start;
}
.top-page .hours-item .service-name {
  min-width: 80px; /* 各サービス名の幅を固定 */
}
.top-page .access-info h2,
.top-page .hours-info h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  min-width: 80px; /* 見出しの幅を固定して揃える */
  text-align: left;
}
.top-page .address-list,
.top-page .hours-list {
  display: flex;
  flex-direction: column;
  gap: 5px; /* 行間を調整 */
  text-align: left;
}
.top-page .hours-item,
.top-page .address-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.top-page .hours-item span,
.top-page .address-item span {
  font-family: "Noto Sans JP", sans-serif;
}
.top-page .recruit-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0; /* 上下に余白を追加 */
  text-align: center;
  margin-top: 81px;
}
@media screen and (max-width: 768px) {
  .top-page .recruit-section {
    margin-top: 109px;
  }
}
.top-page .recruit-heading img {
  max-width: 200px; /* Recruit画像の最大幅を設定（必要に応じて調整） */
  margin-bottom: 20px; /* RecruitとMoreの間に余白を追加 */
}
.top-page .recruit-button img {
  max-width: 100%;
  width: 90%; /* 幅を100%に設定 */
}
.top-page .recruit-button a {
  display: inline-block;
}

.cafe-top {
  background-color: #b19d8a;
}
.cafe-top section.fv {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .cafe-top section.fv {
    height: 520px;
  }
}
.cafe-top section.fv .cafe-top-container {
  height: 100%;
}
.cafe-top section.fv .cafe-top-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cafe-top .content-container {
  max-width: 980px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container {
    padding: 0 20px;
  }
}
.cafe-top .content-container section.intro-section {
  margin-top: 80px;
}
.cafe-top .content-container section.intro-section h2 {
  font-size: 28px;
  color: #000;
  text-align: center;
  line-height: 24px;
  font-weight: normal;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.intro-section h2 {
    font-size: 18px;
    line-height: 30px;
  }
}
.cafe-top .content-container section.intro-section p {
  margin-top: 42px;
  text-align: center;
  font-size: 14px;
  font-family: "Didot";
  color: #000;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.intro-section p {
    margin-top: 38px;
    line-height: 23px;
  }
}
.cafe-top .content-container section.news p {
  text-align: center;
}
.cafe-top .content-container section.menu .menu-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.menu .menu-container {
    flex-direction: column;
    gap: 28px;
  }
}
.cafe-top .content-container section.menu .menu-container .menu-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.cafe-top .content-container section.menu .menu-container .menu-item img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 200px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.menu .menu-container .menu-item img {
    max-width: 100%;
    height: auto;
  }
}
.cafe-top .content-container section.menu .menu-container .menu-item .menu-text {
  margin-top: 10px; /* 画像とテキストの間に余白 */
  font-size: 16px;
  color: #333;
}
.cafe-top .content-container section.menu .menu-container .menu-item .menu-text p {
  font-weight: normal;
  margin: 5px 0;
}
.cafe-top .content-container section.menu .menu-container .content-img .menu-img-upper {
  margin-bottom: 20px;
}
.cafe-top .content-container section.space-style {
  margin-top: 89px;
}
.cafe-top .content-container section.space-style .space-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.space-style .space-images {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px;
    display: grid; /* smallの場合はグリッドレイアウトに変更 */
    grid-template-columns: repeat(2, 1fr); /* 2列に設定 */
  }
}
.cafe-top .content-container section.space-style .space-images .space-item {
  display: flex;
  flex-direction: column;
}
.cafe-top .content-container section.space-style .space-images .space-item img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 230px;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.space-style .space-images .space-item img {
    max-width: 100%;
    height: auto;
  }
}
.cafe-top .content-container section.staff .staff-images {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.staff .staff-images {
    gap: 14px;
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
  }
}
.cafe-top .content-container section.staff .staff-images .staff-member {
  position: relative;
  text-align: left;
}
.cafe-top .content-container section.staff .staff-images .staff-member img {
  display: block;
  height: 230px;
  width: 230px;
  border-radius: 20px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container section.staff .staff-images .staff-member img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
.cafe-top .content-container section.staff .staff-images .staff-member .staff-text {
  margin-top: 5px;
  color: #333;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.cafe-top .content-container .section-heading {
  text-align: center;
  margin-top: 89px;
}
@media screen and (max-width: 768px) {
  .cafe-top .content-container .section-heading {
    margin-top: 86px;
  }
}
.cafe-top .content-container .more-section {
  text-align: center;
  margin-top: 42px;
}
.cafe-top .btn-reservation {
  display: block;
  width: 365px;
  margin: 200px auto 0;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .cafe-top .btn-reservation {
    width: 250px;
    margin: 60px auto 0;
    padding-bottom: 75px;
  }
}

main.menu {
  background-color: #000;
}
main.menu section.fv img {
  max-width: 100%;
  width: 100%;
}
main.menu section.contents {
  padding: 0 20px;
  padding-top: 60px;
}
main.menu section.contents h2 {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  line-height: 48px;
  font-weight: normal;
  font-family: "Alex Brush";
}
@media screen and (max-width: 768px) {
  main.menu section.contents h2 {
    font-size: 28px;
    line-height: 54px;
  }
}
main.menu section.contents .contents-wrap {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
main.menu section.contents .contents-wrap h2 {
  font-size: 36px;
  padding-top: 73px;
  text-align: center;
  margin-top: -1px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  main.menu section.contents .contents-wrap h2 {
    font-size: 20px;
  }
}

main.bar-menu section.contents .contents-wrap h2 {
  color: #fff;
  font-family: "Alex Brush";
}
main.bar-menu section.contents .contents-wrap .content-text {
  padding: 85px 0 115px;
}
main.bar-menu section.contents .contents-wrap .content-text p {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
}

main.cafe-menu section.contents .contents-wrap h2 img {
  width: 86px;
}
main.cafe-menu section.contents .contents-wrap .content-img {
  padding: 60px 0 120px;
}
@media screen and (max-width: 768px) {
  main.cafe-menu section.contents .contents-wrap .content-img {
    padding: 35px 0 60px;
  }
}
main.cafe-menu section.contents .contents-wrap .menu-img-bottom {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main.cafe-menu section.contents .contents-wrap .menu-img-bottom {
    margin-top: 25px;
  }
}

.bar-top {
  background-color: #000000;
}
.bar-top section.fv {
  width: 100%;
  max-width: 100%;
  background-color: #444;
}
@media screen and (max-width: 768px) {
  .bar-top section.fv {
    height: 520px;
  }
}
.bar-top section.fv .bar-top-container {
  height: 100%;
}
.bar-top section.fv .bar-top-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bar-top .content-container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container {
    padding: 0 20px;
  }
}
.bar-top .content-container section.intro-section {
  margin-top: 80px;
}
.bar-top .content-container section.intro-section h2 {
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  font-weight: normal;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.intro-section h2 {
    font-size: 18px;
    line-height: 30px;
  }
}
.bar-top .content-container section.intro-section p {
  color: #fff;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 80px;
}
.bar-top .content-container section.news {
  margin-top: 160px;
}
.bar-top .content-container section.news h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Alex Brush";
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.news h2 {
    font-size: 18px;
    line-height: 30px;
  }
}
.bar-top .content-container section.news .news-container {
  margin-top: 10px;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
}
.bar-top .content-container section.menu {
  margin-top: 64px;
}
.bar-top .content-container section.menu .menu-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 41px;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.menu .menu-container {
    flex-direction: column;
    gap: 14px;
  }
}
.bar-top .content-container section.menu .menu-container .menu-item {
  display: flex;
  flex-direction: column;
}
.bar-top .content-container section.menu .menu-container .menu-item img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 230px;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.menu .menu-container .menu-item img {
    max-width: 100%;
    height: auto;
  }
}
.bar-top .content-container section.menu .menu-container .menu-item .menu-text {
  margin-top: 7px;
  font-size: 14px;
}
.bar-top .content-container section.menu .menu-container .menu-item .menu-text p {
  font-weight: normal;
  margin: 5px 0;
  color: #ffffff;
}
.bar-top .content-container section.menu .more-section {
  max-width: 240px;
  margin: 94px auto 0;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
}
.bar-top .content-container section.menu .more-section a p {
  color: #ffffff;
  font-size: 22px;
  font-weight: normal;
  margin: 5px;
}
.bar-top .content-container section.space-style {
  margin-top: 87px;
}
.bar-top .content-container section.space-style .space-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 41px;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.space-style .space-images {
    flex-direction: column;
    gap: 14px;
  }
}
.bar-top .content-container section.space-style .space-images .space-item {
  display: flex;
  flex-direction: column;
}
.bar-top .content-container section.space-style .space-images .space-item img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 230px;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.space-style .space-images .space-item img {
    max-width: 100%;
    height: auto;
  }
}
.bar-top .content-container section.space-style .more-section {
  max-width: 240px;
  height: 50px;
  margin: 94px auto 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
}
.bar-top .content-container section.space-style .more-section a p {
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  margin: 5px;
}
.bar-top .content-container section.staff {
  margin-top: 82px;
  padding-bottom: 390px;
}
.bar-top .content-container section.staff .staff-images {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
  padding-bottom: 400px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.staff .staff-images {
    gap: 14px;
    justify-content: flex-start;
  }
}
.bar-top .content-container section.staff .staff-images .staff-member {
  position: relative;
  text-align: left;
}
.bar-top .content-container section.staff .staff-images .staff-member img {
  height: 230px;
  width: 230px;
  border-radius: 20px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .bar-top .content-container section.staff .staff-images .staff-member img {
    width: 160px;
    height: 160px;
  }
}
.bar-top .content-container section.staff .staff-images .staff-member .staff-text {
  margin-top: 5px;
  color: #ffffff;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.bar-top .content-container .section-heading {
  text-align: center;
}
.bar-top .content-container .section-heading h2 {
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  line-height: 37px;
  font-weight: bold;
  font-family: "Alex Brush";
}
@media screen and (max-width: 768px) {
  .bar-top .content-container .section-heading h2 {
    font-size: 18px;
    line-height: 42px;
  }
}

main.space section.fv img {
  max-width: 100%;
  width: 100%;
}
main.space section.contents {
  padding: 0 20px;
  /* Addressのリスト */
}
main.space section.contents .contents-wrap {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
main.space section.contents .contents-wrap h2 {
  font-size: 36px;
  padding-top: 73px;
  text-align: center;
  margin-top: -1px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  main.space section.contents .contents-wrap h2 {
    font-size: 20px;
  }
}
main.space section.contents .contents-wrap .content-img {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 768px) {
  main.space section.contents .contents-wrap .content-img {
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
main.space section.contents .contents-wrap .content-img img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main.space section.contents .contents-wrap .content-img img {
    width: 100%;
    height: auto;
  }
}
main.space section.contents .map {
  display: block;
  max-width: 980px;
  width: 100%;
  margin: 67px auto 0;
  height: 530px;
}
@media screen and (max-width: 768px) {
  main.space section.contents .map {
    width: 100%;
    height: 350px;
    margin-top: 35px;
  }
}
main.space section.contents .access-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 左揃えに変更 */
  text-align: left; /* テキストを左揃え */
  width: 100%;
  padding-top: 20px;
  color: #fff;
  padding-bottom: 182px;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main.space section.contents .access-section {
    padding-top: 27px;
  }
}
main.space section.contents .access-info, main.space section.contents .hours-info {
  display: flex;
  align-items: flex-start; /* 上端を揃える */
  gap: 20px;
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  main.space section.contents .access-info, main.space section.contents .hours-info {
    padding-top: 0;
    gap: 11px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  main.space section.contents .hours-info {
    padding-top: 42px;
  }
}
main.space section.contents .access-info h2, main.space section.contents .hours-info h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  min-width: 80px; /* 見出しの幅を固定 */
  text-align: left;
}
main.space section.contents .address-list, main.space section.contents .hours-list {
  display: flex;
  flex-direction: column;
  gap: 5px; /* 行間を調整 */
  text-align: left;
  font-size: 14px;
}
main.space section.contents .address-item, main.space section.contents .hours-item {
  display: flex;
  justify-content: flex-start;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}
main.space section.contents .hours-item .service-name {
  min-width: 80px; /* 各サービス名の幅を固定 */
}
main.space section.contents .access-info h2, main.space section.contents .hours-info h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  min-width: 80px; /* 見出しの幅を固定して揃える */
  text-align: left;
}
@media screen and (max-width: 768px) {
  main.space section.contents .access-info h2, main.space section.contents .hours-info h2 {
    margin-bottom: 11px;
  }
}
main.space section.contents .address-list, main.space section.contents .hours-list {
  display: flex;
  flex-direction: column;
  gap: 5px; /* 行間を調整 */
  text-align: left;
}
main.space section.contents .hours-item, main.space section.contents .address-item {
  display: flex;
  gap: 20px;
  line-height: 24px;
}

main.bar-space section.contents .contents-wrap h2 {
  color: #fff;
  font-family: "Alex Brush";
}
main.bar-space section.contents .address-item, main.bar-space section.contents .hours-item {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
}
main.bar-space section.contents .address-item span, main.bar-space section.contents .hours-item span {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
}

main.cafe-space section.contents .contents-wrap h2 img {
  width: 200px;
}
main.cafe-space section.contents .access-section {
  color: #000;
}
main.cafe-space section.contents .address-item, main.cafe-space section.contents .hours-item {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
main.cafe-space section.contents .address-item span, main.cafe-space section.contents .hours-item span {
  font-family: "Noto Sans JP", sans-serif;
}

main > img {
  width: 100vw;
}

main {
  background-image: url(../image/headermenu-bgi-top.jpg);
  background-size: cover;
}
main.bar {
  background-image: url(../image/headermenu-bgi-bar.jpg);
}
main.cafe {
  background-image: url(../image/headermenu-bgi-cafe.jpeg);
}/*# sourceMappingURL=main.css.map */