@charset "utf-8";

/* ヘッダー */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  box-sizing: border-box;
  transition: .4s ease;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  transition: transform .4s ease;
  z-index: -1;
  transform: translateY(0);
}

.home .header:not(.is-show)::before {
  transform: translateY(-100%);
}

.header.is-show::before {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  padding: 10px 0;
  margin: 0 auto;
  transition: opacity .4s ease, visibility .4s ease;
  line-height: 0;
  opacity: 1;
  visibility: visible;
}

.home .header:not(.is-show) .global-nav {
  opacity: 0;
  visibility: hidden;
}

.global-nav .logo img {
  width: 100px;
}

.nav-list {
  display: flex;
  gap: 0 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 0 5px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.sub-nav {
  display: none;
}

.nav-btn {
  display: none;
}

@media (max-width: 1040px) {
  .global-nav {
    padding: 10px 30px;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 0;
  }

  .header::before {
    background: rgba(20, 20, 20, 0.9);
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(20, 20, 20, 0.98);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    display: block;
    padding: 90px 15%;
    overflow-y: auto;
  }

  .home .header.is-show .global-nav,
  .global-nav {
    opacity: 0;
    visibility: hidden;
  }

  .global-nav.active {
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #000;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-btn span {
    display: block;
    position: absolute;
    width: 25px;
    height: 1px;
    left: 13px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }

  .nav-btn span:nth-of-type(1) {
    top: 17px;
  }

  .nav-btn span:nth-of-type(2) {
    top: 25px;
  }

  .nav-btn span:nth-of-type(3) {
    top: 33px;
  }

  .nav-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }

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

  .nav-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  .nav-list {
    flex-direction: column;
    margin-top: 1.5em;
    gap: 1em;
    font-size: 18px;
  }

  .sub-nav {
    display: block;
    padding-left: 40px;
    line-height: 1.5;
  }

  .sub-nav li {
    margin-top: 0.5em;
  }

  .sub-nav a {
    font-size: 15px;
    position: relative;
  }

  .sub-nav a::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 0.5px;
    background: currentColor;
  }
}

/* メインイメージ */
.main-visual {
  width: 100%;
  height: 80vh;
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.main-visual::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/main-img.jpg") no-repeat center / cover;
  animation: zoomIn 5s ease-out forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.logo-area {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo-area .logo {
  width: 60%;
  max-width: 300px;
}

.logo-area .logo img {
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

/* お知らせ一覧 */
.page-header {
  width: 100%;
  height: 30vh;
  max-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.4)), url("../images/head-img.jpg") no-repeat center / cover;
}

.page-header-title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding-top: 60px;
}

.page-header-title h2 {
  position: relative;
  text-align: center;
  font-size: clamp(1.875rem, 1vw + 1.5rem, 2.25rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

@media (max-width: 767px) {
  .page-header {
    height: 200px;
  }

  .page-header-title {
    padding-top: 0;
  }
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.news-item {
  border-bottom: 1px solid #807771;
  position: relative;
}

.news-all-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-link {
  display: flex;
  gap: 20px;
  padding: 0 10px 15px 10px;
  text-decoration: none;
  color: #333;
  align-items: flex-start;
}

.news-thumbnail {
  width: 180px;
  flex-shrink: 0;
}

.news-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 6 / 4;
}

.news-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.top .news-body {
  flex-direction: row;
  gap: 20px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 11em;
}

.news-category {
  background: #917E3F;
  color: #fff;
  padding: 0.2em 0.6em;
  font-size: 10px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.news-category a {
  color: #fff;
}

.news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.news-excerpt {
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news-link {
    gap: 15px;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .news-thumbnail {
    width: 100px;
  }

  .news-thumbnail img {
    width: 100%;
    height: auto;
  }

  .news-title {
    font-size: 14px;
  }

  .news-date {
    font-size: 12px;
  }

  .news-excerpt {
    display: none;
  }

  .top .news-body {
    flex-direction: column;
    gap: 5px;
  }
}

/* ページネーション */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #333;
  color: #333;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.pagination-wrap .page-numbers:hover, .pagination-wrap .page-numbers.current {
  background: #333;
  color: #fff;
}

.pagination-wrap .page-numbers .material-symbols-outlined {
  font-size: 14px;
  line-height: 1;
  font-variation-settings:
    'FILL' 0,
    'wght' 100,
    'GRAD' 0,
    'opsz' 24;
}

.pagination-wrap .prev.page-numbers .material-symbols-outlined {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .pagination-wrap .page-numbers {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  .pagination-wrap .page-numbers .material-symbols-outlined {
    font-size: 12px;
  }
}

/* お知らせ詳細 */
.post-header {
  margin-bottom: 30px;
}

.post-detail .post-title {
  margin: 0 0 0.5em;
  font-size: 24px;
  line-height: 1.4;
  color: #333;
}

.post-detail .news-meta {
  margin-left: 0.2em;
}

.post-detail .news-date {
  font-size: 14px;
  ;
}

.post-detail .news-category {
  background: #917E3F;
  color: #fff;
  padding: 0.2em 0.6em;
  font-size: 12px;
  line-height: 1.2;
}

.post-eyecatch {
  margin-bottom: 30px;
}

.post-eyecatch img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .post-title {
    font-size: 20px;
  }
}

.entry-content {
  line-height: 1.7;
}

.entry-content h2 {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #222;
  padding: 0 5px;
  margin-bottom: 1.5em;
}

.entry-content h3 {
  font-size: 18px;
  font-weight: 500;
  border-left: 3px solid #8A0016;
  padding: 0 0 0 10px;
  margin-bottom: 1.5em;
  line-height: 1;
}

.entry-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1em;
}

.entry-content p {
  margin-bottom: 1em;
}

.entry-content strong {
  font-weight: bold;
}

.entry-content figcaption {
  font-size: 0.9em;
}

.entry-content ul,
.entry-content ol {
  margin: 0.5em 0 1em;
}

.entry-content ul li,
.entry-content ol li {
  margin: 0 0 0.5em;
}

.entry-content ul {
  list-style: disc;
  padding-left: 22px;
}

.entry-content ol {
  list-style: decimal;
  padding-left: 15px;
}

.entry-content ol>li {
  margin-left: 0.5em;
}

.entry-content p a {
  text-decoration: underline;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
}

.post-nav a {
  color: #917E3F;
  display: inline-flex;
  align-items: center;
  gap: 0 5px;
}

.post-nav-prev a::before,
.post-nav-next a::after {
  font-size: 18px;
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 100,
    'GRAD' 0,
    'opsz' 24;
}

.post-nav-prev a::before {
  content: "\e5e0";
}

.post-nav-next a::after {
  content: "\e5e1";
}

/* お知らせ詳細  WPスタイル上書き */
.wp-block-buttons {
  gap: 20px;
}

.wp-block-buttons .wp-block-button__link {
  min-width: 160px;
}

.wp-block-button__link {
  line-height: 1;
  white-space: nowrap;
  transition: .4s ease-out;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  background: transparent;
  border: 1px solid #222;
  border-radius: 0;
}

.wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform .4s ease-out;
  z-index: -1;
  background: #222;
  transform: scaleX(1);
  transform-origin: right;
}

.wp-block-button__link:hover::before {
  transform: scaleX(0);
}

.wp-block-button__link:hover {
  color: #222;
}

.rev .wp-block-button__link {
  background: transparent;
  border: 1px solid #222;
  color: #222;
}

.rev .wp-block-button__link::before {
  background: #222;
  transform: scaleX(0);
  transform-origin: left;
}

.rev .wp-block-button__link:hover::before {
  transform: scaleX(1);
}

.rev .wp-block-button__link:hover {
  color: #fff !important;
}

/* コンセプト */
.concept .sec-block {
  margin-bottom: 60px;
}

.concept-box {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  position: relative;
  padding: 10px 10px 20px;
  z-index: 1;
  border: 30px solid transparent;
  border-image-source: url("../images/consept-frame-01.png");
  border-image-slice: 30;
  border-image-width: 30px;
  border-image-repeat: stretch;
}

.concept-box::before {
  top: 0;
  background-position: top center;
}

.concept-box::after {
  bottom: 0;
  transform: scaleY(-1);
  background-position: top center;
}

.concept-box h2 {
  font-weight: 500;
  font-size: clamp(1.375rem, 1vw + 1rem, 1.875rem);
  letter-spacing: 0.1em;
}

.read-text {
  position: relative;
  font-weight: normal;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
}

@media (max-width: 767px) {
  .concept .sec-block {
    margin-bottom: 40px;
  }

  .concept-box {
    padding: 0;
    gap: 10px;
  }

  .read-text {
    font-size: 15px;
  }
}

/* 見出し */
.headline {
  position: relative;
  text-align: center;
  font-size: clamp(1.625rem, 1vw + 1.25rem, 2rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.8em;
}

.headline::after {
  content: '';
  background-image: url("../images/headline-02.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 66px;
  height: 25px;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  bottom: -30px;
}

/* こだわり */
.contents-wrap {
  display: flex;
  margin: 0 auto 80px;
  max-width: 1600px;
}

.contents-wrap:last-child {
  margin-bottom: 0;
}

.rev {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {

  .contents-wrap,
  .rev {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    align-items: center;
  }
}

.contents-img {
  flex: 1;
  position: relative;
  line-height: 0;
}

.contents-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contents-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  background: linear-gradient(90deg, transparent 70%, #000);
  pointer-events: none;
}

.rev .contents-img::after {
  background: linear-gradient(-90deg, transparent 70%, #000);
}

.contents-text {
  width: 40%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin: 60px 60px 0 -60px;
  padding: 30px 40px;
  border: 1px solid #ddd;
  z-index: 2;
  position: relative;
}

.rev .contents-text {
  margin: 60px -60px 0 60px;
}

.contents-text::before,
.contents-text::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 75px;
  background-image: url('../images/contents-frame.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.contents-text::before {
  top: 10px;
  left: 10px;
}

.contents-text::after {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .contents-img {
    max-width: none;
  }

  .contents-img::after,
  .rev .contents-img::after {
    background: linear-gradient(180deg, transparent 70%, #000);
  }

  .contents-text,
  .rev .contents-text {
    width: 95%;
    margin: -40px 0 0;
    gap: 10px 0;
  }
}

.contents-text h3 {
  font-size: clamp(1.25rem, 1vw + 0.75rem, 1.5rem);
  font-weight: 500;
}

.contents-text h4 {
  font-size: 24px;
  font-weight: 500;
}

/* メニュー */
.menu-wrap {
  margin-bottom: 50px;
}

.menu-wrap:last-child {
  margin-bottom: 0;
}

.menu-wrap h3 {
  text-align: center;
  font-size: clamp(1.25rem, 1vw + 0.9rem, 1.625rem);
  margin-bottom: 0.5em;
}

.menu-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.menu-item {
  width: calc((100% - 30px) / 2);
  max-width: calc((100% - 30px) / 2);
  cursor: pointer;
  align-self: flex-start;
}

.menu-img-box {
  width: 100%;
  overflow: hidden;
}

.zoom {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.menu-item:hover .zoom {
  transform: scale(1.05);
}

.drink .menu-item,
.alacarte .menu-item {
  cursor: default;
}


.menu-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-left: 3px solid #8A0016;
  margin: 15px 0 0;
  padding-left: 10px;
  font-size: clamp(1.125rem, 1vw + 0.75rem, 1.375rem);
}

.menu-ttl h4,
.menu-ttl p {
  line-height: 1.2;
}

.menu-ttl span {
  font-size: 14px;
}

@media (max-width: 767px) {
  .menu-wrap {
    margin-bottom: 30px;
  }

  .menu-item {
    width: 100%;
    max-width: 100%;
  }

  .menu-box {
    gap: 30px;
  }

  .menu-box.drink {
    gap: 10px;
  }
}

/* メニュー・PDFポップアップ */
.pum-container {
  background: url("../images/bg.jpg") no-repeat center / cover;
  color: #222;
  padding: 50px;
}

.pum-container,
.pum-content {
  font-size: 18px !important;
}

.pum-container .pum-title {
  display: none !important;
}

.pum-container .btn-red a:hover {
  border: 1px solid #8A0016;
}

.pum-theme-popup-menu .pum-container {
  padding-top: 60px !important;
  width: 90vw !important;
  max-width: 900px !important;
}

@media (max-width: 767px) {
  .pum-theme-popup-menu .pum-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 30px !important;
  }

  .pum-container,
  .pum-content {
    font-size: 16px !important;
  }
}

.pum-theme-popup-menu .pum-container .title-box {
  justify-content: space-between;
  margin: 10px 0 20px;
  flex-wrap: wrap;
}

.pum-theme-popup-menu .pum-container h2.item-title {
  font-size: 24px;
  font-weight: 500;
}

.pum-theme-popup-menu .pum-container .sub-title {
  font-size: 20px;
  color: #917E3F;
  margin: 0 10px 0;
}

.pum-theme-popup-menu .pum-container .price {
  font-size: 20px;
  margin-bottom: 0;
}

.pum-theme-popup-menu .pum-container .price span {
  font-size: 14px;
}

.pum-theme-popup-menu .pum-container .copy {
  font-size: clamp(1.125rem, 1vw + 0.75rem, 1.375rem);
  font-weight: 500;
}

.pum-theme-popup-menu .pum-container p,
.pum-theme-popup-menu .pum-container figure {
  margin-bottom: 1em;
}

.pum-theme-popup-menu .pum-container figcaption {
  font-size: 0.9em;
}

.pum-theme-popup-menu .pum-container h3 {
  font-size: clamp(1rem, 1vw + 0.6rem, 1.25rem);
  font-weight: 500;
  border-bottom: 1px solid #222;
  padding: 0 5px;
  margin-bottom: 1em;
}

.pum-theme-popup-menu .pum-container strong {
  font-weight: bold;
}

.pum-theme-popup-menu .pum-container ul {
  margin: 0.5em 0 1em;
  list-style: disc;
  padding-left: 22px;
}

.pum-theme-popup-menu .pum-container ul li {
  margin: 0 0 1em;

}

.pum-theme-popup-menu .pum-container ul li>ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.9em;
}

.pum-theme-popup-menu .pum-container ul li>ul>li {
  margin-bottom: 0.5em;
}

.pum-theme-popup-pdf .pum-container {
  width: 90vw !important;
  max-width: 900px !important;
  height: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.pum-theme-popup-pdf .pum-content {
  padding: 0 0 10px 0 !important;
  width: 100% !important;
  height: auto !important;
  position: static !important;
}

.pum-theme-popup-pdf .pum-content iframe {
  display: block !important;
  width: 100% !important;
  height: 80vh !important;
  border: none !important;
  position: static !important;
  padding-bottom: 5px !important;
}

.pum-theme-popup-pdf .pum-content p,
.pum-theme-popup-pdf .pum-content a {
  color: #fff;
}

@media (max-width: 768px) {
  .pum-theme-popup-pdf .pum-container {
    width: 95vw !important;
  }
}

/* お席 */
.table-wrap {
  margin-bottom: 50px;
}

.table-item {
  margin: 0 10px;
  text-align: center;
  /* cursor: pointer; */
  width: fit-content !important;
}

.table-item img {
  width: 500px;
  height: auto;
}

.table-item h3 {
  font-size: 20px;
  margin: 0.5em 0;
}

.table-item-content {
  display: flex;
  flex-direction: row;
  gap: 0 15px;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.table-item-content p {
  font-size: 14px;
}

.table-item-content p span {
  background: #917E3F;
  color: #fff;
  padding: 0.2em 0.6em;
  margin-right: 0.5em;
  font-size: 10px;
  line-height: 1.2;
  position: relative;
}

@media (max-width: 767px) {
  .table-item h3 {
    font-size: 17px;
  }

  .table-item img {
    max-width: 400px;
  }

  .table-item-content {
    flex-direction: column;
    gap: 10px 0;
  }
}

/* スライダー */
.slick-slide {
  opacity: 0.5;
}

.slick-center {
  opacity: 1;
}

.slick-prev::before,
.slick-next::before {
  content: none;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: auto;
  bottom: -52px;
  transform: none;
  z-index: 99999;
}

.slick-prev {
  left: calc(50% - 150px);
}

.slick-next {
  right: calc(50% - 150px);
}

.slick-prev .material-symbols-outlined,
.slick-next .material-symbols-outlined {
  font-size: 40px;
  color: #fff;
  line-height: 1;
  font-variation-settings:
    'FILL' 0,
    'wght' 100,
    'GRAD' 0,
    'opsz' 24;
}

.slick-dotted.slick-slider {
  margin-bottom: 80px;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li {
  width: 15px;
  height: 15px;
}

.slick-dots li button:before {
  font-size: 20px;
  color: #fff;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #fff;
}

/* 店舗詳細 */
.outline-wrap {
  margin-bottom: 50px;
}

.outline-box {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  max-width: 700px;
  margin: 0 auto 30px;
}

.outline-item {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.outline-item .head {
  min-width: 180px;
}

@media (max-width: 767px) {
  .outline-item {
    flex-direction: column;
    gap: 10px 0;
  }
}

/* 地図 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 45%;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .map {
    padding-top: 75%;
    margin-bottom: 30px;
  }
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(.2);
}

/* 下の画像 */
.last-img {
  background-image: url("../images/last-img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 767px) {
  .last-img {
    min-height: 250px;
  }
}

/*  フッター  */
.top-wrap {
  font-size: 14px;
  padding: 60px 0;
}

.top-wrap .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
}

.top-wrap .footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.top-wrap .footer-text .logo img {
  max-width: 160px;
}

.top-wrap .footer-text .tel {
  font-size: 22px;
}

.top-wrap .footer-link {
  font-size: 11px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.top-wrap .footer-link a {
  text-decoration: underline;
}

.top-wrap .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.top-wrap .footer-nav ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.top-wrap .footer-sns img {
  width: 30px;
}

@media (max-width: 1040px) {
  .top-wrap {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .top-wrap {
    font-size: 13px;
    padding: 40px;
  }

  .top-wrap .footer-inner {
    flex-direction: column;
    gap: 20px 0;
    width: 100%;
    align-items: center;
  }

  .top-wrap .footer-inner .footer-nav-list {
    display: none;
  }

  .top-wrap .footer-link {
    font-size: 10px;
    flex-wrap: wrap;
  }
}

/* WHフッター*/
.lower-wrap {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  background: #f6f6f6;
  margin-bottom: 0;
  padding: 30px 0;
}

@media (max-width: 1040px) {
  .lower-wrap {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .lower-wrap {
    background: #f6f6f6;
    margin-bottom: 0;
    padding: 40px;
  }
}

.lo-flx-wrap {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
  gap: 20px;
}

.lower-wrap .logo-box {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}

.lower-wrap .logo-box a {
  font-size: 12px;
  font-weight: bold;
}

.lower-wrap .logo-box img {
  width: 58px;
}

@media (max-width:767px) {
  .lo-flx-wrap {
    justify-content: center;
  }

  .lower-wrap .logo-box {
    flex-direction: column;
    justify-content: center;
    gap: 5px 0;
  }
}

.lower-wrap .cont-business {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 0 50px;
}

.lower-wrap .sup {
  font-size: 0.9em;
}

@media (max-width:767px) {
  .lower-wrap .cont-business {
    display: block;
    width: 100%;
  }

  .lower-wrap .cont-business ul {
    margin-top: 20px;
  }

  .lower-wrap .cont-business ul li {
    width: 100%;
  }
}

.lower-wrap .cont-business ul li {
  margin-bottom: 10px;
}

.lower-wrap .cont-business .bold {
  font-weight: bold;
  padding-top: 10px;
}

.lower-wrap .cont-business .bold:first-child {
  padding-top: 0;
}

.lower-wrap .cont-business ul.wh-wrap {
  margin-top: 0;
}

@media (max-width:767px) {
  .lower-wrap .cont-business ul.wh-wrap {
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px;
    text-align: center;
  }
}

.lower-wrap .copyright {
  font-size: 10px;
  text-align: center;
  margin: 20px 0 0;
}

/*  pagetop  */
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page-top::after {
  font-family: 'Material Symbols Outlined';
  content: "\e316";
  font-size: 60px;
  color: #fff;
  font-variation-settings:
    'FILL' 0,
    'wght' 100,
    'GRAD' 0,
    'opsz' 24;
}

/* 404ページ */
.not-found {
  padding-top: 120px;
  padding-bottom: 80px;
}

.not-found h1 {
  text-align: center;
  font-size: clamp(1.625rem, 2vw + 1rem, 2.5rem);
  font-weight: 500;
  margin-bottom: 1.5em;
}

.not-found h2 {
  text-align: center;
  font-size: clamp(1.25rem, 1vw + 0.9rem, 1.625rem);
  margin-bottom: 0.5em;
}

.not-found p {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .not-found {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .not-found h2,
  .not-found p {
    text-align: left;
  }
}