@charset "UTF-8";
.js-show-up {
  opacity: 0;
  transform: translate(0, 80px);
}
.js-show-up.is-show {
  opacity: 1;
  transform: none;
}

.js-show-left {
  opacity: 0;
  transform: translate(80px, 0);
}
.js-show-left.is-show {
  opacity: 1;
  transform: none;
}

.js-show-right {
  opacity: 0;
  transform: translate(-80px, 0);
}
.js-show-right.is-show {
  opacity: 1;
  transform: none;
}

html {
  box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 !important;
  scroll-behavior: smooth;
  color: #603813;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  html {
    font-size: 14px;
  }
}

input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0;
}

.container {
  overflow: hidden;
}

:root {
  --header-height: 100px;
  /* ヘッダーの高さを変数として管理 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

.wrap {
  margin-inline: auto;
  padding: 0 40px;
  width: min(100%, 1200px);
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

.wrap-tb {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1004px);
}

.wrap-tb-s {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 808px);
}

@media screen and (max-width: 964px) {
  .tb-hide {
    display: none;
  }
}

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

@media screen and (max-width: 572px) {
  .sm-hide {
    display: none;
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.body-fadein {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.scroll-off {
  overflow: hidden;
}

.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  transition: 0.7s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 572px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 60px;
  }
}
.scroll-top.is-show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  box-shadow: none;
}
.scroll-top::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #F7931E;
  border-top: 2px solid #F7931E;
  transform: rotate(45deg) translate(2px, 2px);
}

.section-title {
  text-align: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.section-title__en {
  color: #F7931E;
  font-size: 3.5rem;
}
@media screen and (max-width: 572px) {
  .section-title__en {
    font-size: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .section-title__en {
    font-size: 2rem;
  }
}
.section-title__ja {
  line-height: 1;
  margin-top: 1em;
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .section-title__ja {
    font-size: 1rem;
  }
}

.sec-name {
  position: relative;
  font-size: 1.75rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  color: #F7931E;
  margin-inline: auto;
}
@media screen and (max-width: 572px) {
  .sec-name {
    font-size: 1.5rem;
    padding: 0 0 0 10px;
  }
}
.sec-name::before {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../image/company/icon-sec-name.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
}

.pagination {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .pagination {
    margin-top: 50px;
  }
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 50px;
  height: 50px;
  background: #F7EDE0;
  color: #F7931E;
  margin-right: 1em;
  font-size: 1.25rem;
  font-weight: 400;
  transition: 0.5s;
  border-radius: 50%;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    font-size: 1.1rem;
  }
}

.nav-links a.page-numbers:hover {
  opacity: 0.7;
}

.nav-links .current {
  font-weight: bold;
  background-color: #F7931E;
  color: #fff;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  color: currentColor;
  position: relative;
  border: none;
  background-color: transparent;
}

.nav-links .dots {
  background: transparent;
  border: none;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #F7931E;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(0, -50%);
}
.next.page-numbers::after {
  content: "･･･";
  position: absolute;
  color: #F7931E;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-75%, -50%);
  font-size: 14px;
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #F7931E;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform: translate(0, -50%);
}
.prev.page-numbers::after {
  content: "･･･";
  position: absolute;
  color: #F7931E;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-25%, -50%);
  font-size: 14px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  /* ローダー終了 */
  /* ロゴ初期状態 */
}
.loader.is-hide {
  opacity: 0;
  visibility: hidden;
}
.loader .logo {
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  /* ロゴ表示 */
}
@media screen and (max-width: 572px) {
  .loader .logo {
    width: 220px;
  }
}
.loader .logo.is-show {
  opacity: 1;
  visibility: visible;
}

.container {
  position: relative;
}
.container .header {
  width: 100%;
  height: 140px;
  background-color: transparent;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 32px 20px;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .container .header {
    height: 80px;
    padding: 12px 20px;
  }
}
.container .header.is-scroll {
  background-color: #fff;
  box-shadow: 0 1px 5px 1px #ccc;
  height: 80px;
  padding: 8px 20px;
}
@media screen and (max-width: 572px) {
  .container .header.is-scroll {
    padding: 12px 20px;
  }
}
.container .header__logo {
  height: 100%;
}
.container .header__logo > a {
  display: block;
  height: 100%;
  transition: 0.3s;
}
.container .header__logo > a:hover {
  opacity: 0.7;
}
.container .header__logo > a > img {
  height: 100%;
}
.container .header__nav {
  height: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .container .header__nav {
    display: none;
  }
}
.container .header__nav-list {
  display: flex;
  align-items: center;
}
.container .header__nav-list .list-item.is-active > a {
  color: #F7931E;
}
.container .header__nav-list .list-item > a {
  display: block;
  padding: 0.5em 0.75em;
  transition: 0.3s ease;
  text-align: center;
  line-height: 1;
}
.container .header__nav-list .list-item > a .ja {
  margin-top: 5px;
  font-size: 0.875rem;
}
.container .header__nav-list .list-item > a:hover {
  color: #F7931E;
}
.container .header__nav-list .item-tel {
  line-height: 1;
  text-align: center;
  margin-left: 20px;
}
.container .header__nav-list .item-tel .tel {
  font-size: 2rem;
}
.container .header__nav-list .item-tel .time {
  margin-top: 5px;
}
.container .header__nav-list .item-btn {
  background-color: #79502A;
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 30px;
  display: block;
  margin-left: 20px;
  transition: 0.3s ease;
}
.container .header__nav-list .item-btn:hover {
  opacity: 0.7;
}
.container .fv {
  position: relative;
  padding: 0 20px;
  width: min(1300px, 100%);
  margin: 140px auto 0;
  /* ========= テキスト ========= */
  /* ========= ページネーション ========= */
  /* ========= PC / SP 切り替え ========= */
  /* ========= SP ========= */
}
@media screen and (max-width: 572px) {
  .container .fv {
    margin: 100px auto 0;
  }
}
.container .fv .hero-shape {
  position: relative;
  width: 100%;
}
.container .fv__text {
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 8%;
  z-index: 1;
}
@media screen and (max-width: 572px) {
  .container .fv__text {
    top: 20px;
    right: auto;
    left: 30px;
  }
}
.container .fv__text > span {
  background-color: #F7931E;
  color: #fff;
  font-size: 2.25rem;
  font-weight: bold;
  display: inline-block;
  margin-left: 10px;
  padding: 10px 10px 0;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 572px) {
  .container .fv__text > span {
    font-size: 1.5rem;
  }
}
.container .fv .fv-sp-logo {
  display: none;
  width: 100px;
  height: auto;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1;
}
@media screen and (max-width: 572px) {
  .container .fv .fv-sp-logo {
    display: block;
  }
}
.container .fv .hero-shape__pagination {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: auto;
}
@media screen and (max-width: 572px) {
  .container .fv .hero-shape__pagination {
    bottom: 0;
  }
}
.container .fv .hero-shape__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: transparent;
  border: 2px solid #fff;
  margin: 0 6px !important;
}
.container .fv .hero-shape__pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.container .fv .hero-shape--sp {
  display: none;
}
@media (max-width: 572px) {
  .container .fv .hero-shape--pc {
    display: none;
  }
  .container .fv .hero-shape--sp {
    display: block;
    width: min(90vw, 360px);
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 24px;
    margin: 0 auto;
    position: relative;
  }
  .container .fv .hero-shape--sp .hero-shape__slide {
    width: 100%;
    height: 100%;
  }
  .container .fv .hero-shape--sp .hero-shape__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
.container .fix-sidebtn {
  position: fixed;
  right: 0;
  z-index: 10;
  line-height: 1;
  font-weight: bold;
  transition: 0.3s;
}
.container .fix-sidebtn.fix-shop {
  bottom: 52%;
}
@media screen and (max-width: 572px) {
  .container .fix-sidebtn.fix-shop {
    bottom: 0;
    width: 50%;
    right: auto;
    left: 0;
  }
}
.container .fix-sidebtn.fix-reservation {
  top: 52%;
}
@media screen and (max-width: 572px) {
  .container .fix-sidebtn.fix-reservation {
    bottom: 0;
    width: 50%;
    top: auto;
  }
}
@media screen and (max-width: 572px) {
  .container .fix-sidebtn.fix-reservation > a {
    border-left: 1px solid #F4F5F4;
  }
}
.container .fix-sidebtn > a {
  display: block;
  width: 40px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F7EDE0;
  color: #79502A;
  transition: 0.3s;
  writing-mode: vertical-lr;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 572px) {
  .container .fix-sidebtn > a {
    width: 100%;
    height: 50px;
    writing-mode: initial;
    background-color: #79502A;
    color: #fff;
    border-radius: 10px 10px 0 0;
  }
}
.container .fix-sidebtn > a:hover {
  opacity: 0.7;
}
.container .fix-sidebtn > a > img {
  height: 26px;
  display: none;
}
@media screen and (max-width: 572px) {
  .container .fix-sidebtn > a > img {
    display: block;
    margin-right: 5px;
  }
}
.container .mv {
  margin-top: 140px;
}
@media screen and (max-width: 572px) {
  .container .mv {
    margin-top: 80px;
  }
}
.container .mv__image {
  height: 300px;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 572px) {
  .container .mv__image {
    height: 200px;
  }
}
.container .mv__image > img {
  width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 572px) {
  .container .mv__image > img {
    width: 230px;
  }
}
.container .hamburger {
  width: 80px;
  height: 80px;
  padding: 28px 16px;
  margin-left: auto;
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: transparent;
  z-index: 190;
  display: none;
  color: #F7931E;
  transition: 0.3s ease;
}
.container .hamburger.is-scroll {
  top: 0;
}
@media screen and (max-width: 1024px) {
  .container .hamburger {
    display: block;
  }
}
@media screen and (max-width: 572px) {
  .container .hamburger {
    top: 0;
    right: 10px;
    padding: 30px 24px;
  }
}
.container .hamburger.on-click {
  z-index: 210;
}
.container .hamburger.on-click .inner span:nth-child(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 390deg;
}
.container .hamburger.on-click .inner span:nth-child(2) {
  opacity: 0;
}
.container .hamburger.on-click .inner span:nth-child(3) {
  top: 50%;
  translate: 0 -50%;
  rotate: -390deg;
}
.container .hamburger .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.container .hamburger .inner span {
  width: 100%;
  height: 3px;
  background-color: #F7931E;
  position: absolute;
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .container .hamburger .inner span {
    height: 2px;
  }
}
.container .hamburger .inner span:nth-child(1) {
  top: 0;
}
.container .hamburger .inner span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.container .hamburger .inner span:nth-child(3) {
  bottom: 0;
}
.container .hamburger .inner > p {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 572px) {
  .container .hamburger .inner > p {
    top: 115%;
    font-size: 0.875rem;
  }
}
.container .ham-menu {
  display: flex;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  z-index: 200;
  transition: 0.3s;
  background-color: #fff;
}
.container .ham-menu.is-show {
  opacity: 1;
  visibility: visible;
}
.container .ham-menu__inner {
  width: 100%;
  overflow-y: auto;
  position: relative;
}
.container .ham-menu__inner .illust {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.container .ham-menu__logo {
  width: 100px;
  margin: 50px auto 0;
  text-align: center;
}
.container .ham-menu__logo > a {
  display: inline-block;
  width: 100%;
}
.container .ham-menu__logo > a > img {
  width: 100%;
}
.container .ham-menu__nav {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  padding: 0 40px 50px;
}
.container .ham-menu__nav-list {
  width: 100%;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.container .ham-menu__nav-list .list-item:not(:first-child) {
  margin-top: 1.5em;
}
.container .ham-menu__nav-list .list-item > a {
  display: block;
  text-align: center;
}
.container .ham-menu__nav-list .list-item > a .ja {
  font-size: 0.875rem;
  margin-top: 5px;
}
.container .ham-menu__nav-list .item-tel {
  margin-top: 30px;
}
.container .ham-menu__nav-list .item-tel .tel {
  font-size: 2rem;
}
.container .ham-menu__nav-list .item-tel .time {
  margin-top: 5px;
}
.container .ham-menu__nav-list .item-btn {
  width: 240px;
  margin: 30px auto 0;
  background-color: #79502A;
  color: #fff;
  padding: 0.75em 2em;
  border-radius: 30px;
  display: block;
  transition: 0.3s ease;
}
.container .ham-menu__nav-list .item-btn:hover {
  opacity: 0.7;
}

.g-map {
  margin-top: 60px;
  width: 100%;
}
.g-map iframe {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 572px) {
  .g-map iframe {
    height: 250px;
  }
}

.footer {
  margin-top: 60px;
  padding: 80px 0 0;
  position: relative;
  background-image: url(../image/bg/bg-footer.png);
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 572px) {
  .footer {
    background-image: url(../image/bg/bg-footer-sp.png);
    padding: 50px 0 0;
  }
}
.footer__logo {
  margin: 0 auto;
  width: 120px;
}
.footer__logo > a {
  display: block;
  width: 100%;
  transition: 0.3s;
}
.footer__logo > a:hover {
  opacity: 0.7;
}
.footer__logo > a > img {
  width: 100%;
}
.footer__nav {
  font-weight: bold;
  width: 100%;
  margin-top: 30px;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
@media screen and (max-width: 572px) {
  .footer__nav-list {
    gap: 10px;
    flex-direction: column;
  }
}
.footer__nav-list .list-item.is-active > a {
  color: #F7931E;
}
.footer__nav-list .list-item > a {
  display: block;
  padding: 0.5em 1em;
  transition: 0.3s ease;
  text-align: center;
  line-height: 1;
}
.footer__nav-list .list-item > a .ja {
  margin-top: 5px;
  font-size: 0.875rem;
}
.footer__nav-list .list-item > a:hover {
  color: #F7931E;
}
.footer__nav-list .item-tel {
  line-height: 1;
  text-align: center;
  margin-left: 30px;
}
@media screen and (max-width: 964px) {
  .footer__nav-list .item-tel {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}
.footer__nav-list .item-tel .tel {
  font-size: 2rem;
}
.footer__nav-list .item-tel .time {
  margin-top: 5px;
}
.footer__nav-list .item-btn {
  background-color: #79502A;
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 30px;
  display: block;
  margin-left: 30px;
  transition: 0.3s ease;
}
@media screen and (max-width: 964px) {
  .footer__nav-list .item-btn {
    margin-left: 0;
    margin-top: 20px;
  }
}
.footer__nav-list .item-btn:hover {
  opacity: 0.7;
}

.copylight {
  padding: 1em 20px;
  text-align: center;
  font-size: 0.925rem;
  background-color: transparent;
}
@media screen and (max-width: 572px) {
  .copylight {
    padding: 20px 1em 70px;
  }
}

.main .news {
  margin-top: 80px;
  background-image: url(../image/bg/bg-news.png);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
@media screen and (max-width: 572px) {
  .main .news {
    margin-top: 50px;
    padding: 40px 0;
  }
}
.main .news .news-content {
  color: #fff;
  margin-top: 30px;
}
.main .wadamata {
  padding: 60px 0;
}
@media screen and (max-width: 572px) {
  .main .wadamata {
    padding: 40px 0;
  }
}
.main .wadamata .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .main .wadamata .flex {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.main .wadamata__message-title {
  font-size: 2rem;
  font-weight: bold;
}
.main .wadamata__message-text {
  margin-top: 1em;
}
.main .wadamata__image {
  width: 50%;
}
@media screen and (max-width: 572px) {
  .main .wadamata__image {
    width: 100%;
  }
}
.main .wadamata__image > img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.main .menu {
  background-color: #FBF4ED;
  padding: 60px 0;
}
@media screen and (max-width: 572px) {
  .main .menu {
    padding: 40px 0;
  }
}
.main .menu .menu-content {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em 2em;
}
@media screen and (max-width: 964px) {
  .main .menu .menu-content {
    gap: 2em 1.5em;
  }
}
@media screen and (max-width: 572px) {
  .main .menu .menu-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em 1em;
  }
}
.main .menu .menu-content__item {
  width: 100%;
  display: block;
  font-weight: bold;
}
.main .menu .menu-content__item .item-image {
  width: 100%;
  border-radius: 5px;
  position: relative;
}
.main .menu .menu-content__item .item-image .item-tag {
  position: absolute;
  top: -20px;
  left: -10px;
}
@media screen and (max-width: 572px) {
  .main .menu .menu-content__item .item-image .item-tag {
    top: -10px;
  }
}
.main .menu .menu-content__item .item-image .item-tag .inner {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #FBB03B;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 1.2;
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 572px) {
  .main .menu .menu-content__item .item-image .item-tag .inner {
    width: 55px;
    height: 55px;
    font-size: 0.775rem;
  }
}
.main .menu .menu-content__item .item-image .item-tag .inner::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #FBB03B;
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 572px) {
  .main .menu .menu-content__item .item-image .item-tag .inner::after {
    width: 15px;
    height: 15px;
  }
}
.main .menu .menu-content__item .item-image .item-cat {
  position: absolute;
  display: inline-block;
  bottom: 10px;
  right: 10px;
  background-color: #F7931E;
  color: #fff;
  padding: 0 1em;
  border-radius: 5px;
  line-height: 1.6;
  text-align: center;
  font-size: 0.875rem;
}
.main .menu .menu-content__item .item-image > img {
  width: 100%;
  height: auto;
}
.main .menu .menu-content__item .item-title {
  line-height: 1.4;
  font-weight: bold;
  margin-top: 5px;
  text-align: center;
}
.main .menu .p-bg {
  position: relative;
}
.main .menu .p-bg .bg1 {
  width: 140px;
  position: absolute;
  right: 102%;
  bottom: 0;
  opacity: 0.7;
}
.main .menu .p-bg .bg2 {
  width: 140px;
  position: absolute;
  left: 102%;
  bottom: 0;
  opacity: 0.7;
}
.main .skill {
  margin-top: 60px;
  background-image: url(../image/bg/bg-skill.png);
  background-size: cover;
  background-position: bottom center;
  padding: 60px 0;
}
@media screen and (max-width: 572px) {
  .main .skill {
    padding: 40px 0;
  }
}
.main .skill__content {
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 572px) {
  .main .skill__content {
    width: auto;
    height: auto;
    aspect-ratio: 1;
  }
}
.main .skill__content-title {
  color: #fff;
  font-weight: bold;
  width: 100%;
  padding: 0 50px;
}
.main .skill__content-title > p {
  width: 100%;
  background-color: #79502A;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .main .skill__content-title > p {
    font-size: 1.25rem;
  }
}
.main .skill__content-title > p:not(:first-child) {
  margin-top: 10px;
}
.main .skill__content-text {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 2;
  padding: 0 10px;
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .main .skill__content-text {
    font-size: 0.937rem;
  }
}

.sec-head {
  color: #F7931E;
  font-weight: bold;
  text-align: center;
}
.sec-head.c-white {
  color: #fff;
}
.sec-head::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background-color: currentColor;
  margin: 0 auto;
}
.sec-head > h2 {
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .sec-head > h2 {
    font-size: 1.5rem;
  }
}

.btn-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 572px) {
  .btn-wrap {
    margin-top: 30px;
  }
}

.more-btn {
  display: block;
  width: 240px;
  border-radius: 30px;
  line-height: 1;
  padding: 1em 0;
  font-size: 0.935rem;
  text-align: center;
  transition: 0.3s ease;
  background-color: #F7931E;
  color: #fff;
  border: 1px solid #F7931E;
  position: relative;
  font-weight: bold;
}
.more-btn.c-white {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.more-btn::after {
  content: "";
  width: 16px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: currentColor;
  transform: translate(0, -50%);
}
.more-btn:hover {
  opacity: 0.7;
}

.shop {
  margin-top: 60px;
}
@media screen and (max-width: 572px) {
  .shop {
    margin-top: 40px;
  }
}
.shop__content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .shop__content {
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }
}
.shop__content-image {
  width: 50%;
}
@media screen and (max-width: 572px) {
  .shop__content-image {
    width: 100%;
  }
}
.shop__content-image > img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
@media screen and (max-width: 572px) {
  .shop__content-block {
    width: 100%;
  }
}
.shop__content-block > ul {
  font-weight: bold;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .shop__content-block > ul {
    margin-top: 10px;
  }
}
.shop__content .btn-wrap {
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .shop__content .btn-wrap {
    margin-top: 20px;
  }
}

.sns {
  margin-top: 60px;
}
@media screen and (max-width: 572px) {
  .sns {
    margin-top: 40px;
  }
}
.sns__content {
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .sns__content {
    margin-top: 20px;
  }
}
.sns__content > img {
  width: 100%;
  height: auto;
}

.concept-main {
  margin-top: 50px;
  width: 100%;
}
.concept-main .concept {
  width: min(800px, 100%);
  position: relative;
  margin: 0 auto;
}
.concept-main .concept > img {
  width: 100%;
  height: auto;
}
.concept-main .concept__ttl {
  writing-mode: vertical-rl;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 572px) {
  .concept-main .concept__ttl {
    writing-mode: initial;
    top: -20px;
  }
}
.concept-main .concept__ttl > span {
  background-color: #79502A;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  margin-left: 10px;
  padding: 10px 10px 10px 10px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 572px) {
  .concept-main .concept__ttl > span {
    padding: 5px 10px;
    margin-top: 5px;
  }
}
.concept-main .concept__text {
  position: absolute;
  top: 80px;
  left: 150px;
  z-index: 1;
}
@media screen and (max-width: 572px) {
  .concept-main .concept__text {
    position: static;
    padding: 0 20px;
    margin-top: 1em;
  }
}
.concept-main .concept__text > p:not(:first-child) {
  margin-top: 1em;
  line-height: 2;
}
.concept-main .concept-sec {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .concept-main .concept-sec {
    margin-top: 50px;
  }
}
.concept-main .concept-sec .sec-item {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .concept-main .concept-sec .sec-item {
    flex-direction: column;
    gap: 20px;
  }
}
.concept-main .concept-sec .sec-item .item-image {
  width: 75%;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 16/9;
}
@media screen and (max-width: 572px) {
  .concept-main .concept-sec .sec-item .item-image {
    margin-left: auto;
    width: 100%;
  }
}
.concept-main .concept-sec .sec-item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-main .concept-sec .sec-item .item-block > h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #F7931E;
  line-height: 1;
}
.concept-main .concept-sec .sec-item .item-block > p {
  margin-top: 1em;
}
.concept-main .concept-sec .sec-item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .concept-main .concept-sec .sec-item:not(:first-child) {
    margin-top: 30px;
  }
}
.concept-main .concept-sec .sec-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 572px) {
  .concept-main .concept-sec .sec-item:nth-of-type(even) {
    flex-direction: column;
  }
}
.concept-main .concept-sec .sec-item:nth-of-type(even) .item-image {
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (max-width: 572px) {
  .concept-main .concept-sec .sec-item:nth-of-type(even) .item-image {
    margin-right: auto;
  }
}

.shop-main {
  margin-top: 50px;
  width: 100%;
}
.shop-main .info {
  width: min(650px, 100%);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .shop-main .info {
    flex-direction: column;
    gap: 20px;
  }
}
.shop-main .info .info-logo {
  width: 150px;
}
@media screen and (max-width: 572px) {
  .shop-main .info .info-logo {
    margin: 0 auto;
  }
}
.shop-main .info .info-logo > img {
  width: 100%;
}
.shop-main .info .info-block .info-ttl {
  display: flex;
  align-items: center;
  gap: 30px;
}
.shop-main .info .info-block .info-ttl > h3 {
  font-size: 1.25rem;
  font-weight: bold;
}
.shop-main .info .info-block .info-ttl > a {
  display: block;
  width: 35px;
  transition: 0.3s ease;
}
.shop-main .info .info-block .info-ttl > a:hover {
  opacity: 0.7;
}
.shop-main .info .info-block .info-ttl > a > img {
  width: 100%;
  height: auto;
}
.shop-main .info .info-block > ul {
  margin-top: 10px;
  font-weight: bold;
}
.shop-main .detail {
  width: min(650px, 100%);
  margin: 50px auto 0;
  padding: 0 20px;
}
.shop-main .detail__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
@media screen and (max-width: 572px) {
  .shop-main .detail__list {
    gap: 5px;
  }
}
.shop-main .detail__list > dt {
  width: 150px;
}
@media screen and (max-width: 572px) {
  .shop-main .detail__list > dt {
    margin-top: 15px;
  }
}
.shop-main .detail__list > dt > p {
  background-color: #F7931E;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}
.shop-main .detail__list > dd {
  margin-left: 20px;
  width: 60%;
}
@media screen and (max-width: 572px) {
  .shop-main .detail__list > dd {
    margin-left: 0;
    width: 100%;
  }
}
.shop-main .detail__list > dd > p {
  font-weight: bold;
}
.shop-main .detail__list > dd > span {
  font-size: 0.935rem;
}
.shop-main .detail__list > dd .more-btn {
  background-color: transparent;
  color: #F7931E;
  border: 1px solid currentColor;
  padding: 0.75em 0;
  width: 200px;
  margin-top: 15px;
  font-size: 0.875rem;
}
@media screen and (max-width: 572px) {
  .shop-main .detail__list > dd .more-btn {
    margin-top: 10px;
  }
}
.shop-main .detail__list > dd .more-btn::after {
  width: 14px;
  height: 12px;
}
.shop-main .access {
  margin-top: 60px;
}
@media screen and (max-width: 572px) {
  .shop-main .access {
    margin-top: 40px;
  }
}
.shop-main .access__map {
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .shop-main .access__map {
    margin-top: 20px;
  }
}
.shop-main .access__map iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 572px) {
  .shop-main .access__map iframe {
    height: 300px;
  }
}
.shop-main .access__link {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}
.shop-main .access__link > img {
  width: 30px;
  height: auto;
  display: inline-block;
}
.shop-main .access__link > a {
  display: block;
  text-decoration: underline;
  transition: 0.3s ease;
}
.shop-main .access__link > a:hover {
  opacity: 0.7;
}

.confirm-main {
  margin-top: 160px;
}
@media screen and (max-width: 572px) {
  .confirm-main {
    margin-top: 120px;
  }
}

.contact-main {
  margin-top: 60px;
}

.contact__title {
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .contact__title {
    font-size: 1.5rem;
  }
}
.contact__text {
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
}
.contact__imp {
  background-color: #C1272D;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .contact__imp {
    padding: 20px 10px;
  }
}
.contact__imp > h4 {
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 572px) {
  .contact__imp > h4 {
    font-size: 1.25rem;
  }
}
.contact__imp > p {
  margin-top: 10px;
}
@media screen and (max-width: 572px) {
  .contact__imp > p {
    font-size: 0.937rem;
  }
}
.contact__content {
  margin-top: 30px;
  font-size: 16px;
}
.contact__content table {
  width: 100%;
}
@media screen and (max-width: 572px) {
  .contact__content table tr {
    display: flex;
    flex-direction: column;
  }
}
.contact__content table th {
  width: 25%;
  padding: 10px 0;
}
@media screen and (max-width: 572px) {
  .contact__content table th {
    width: 100%;
    padding: 15px 0 0;
  }
}
.contact__content table th > span {
  color: #C1272D;
  display: inline-block;
  margin-left: 3px;
}
.contact__content table th .count {
  font-size: 0.875rem;
  display: block;
  font-weight: 400;
}
.contact__content table td {
  margin-left: 5%;
  padding: 10px 0;
  width: 70%;
}
@media screen and (max-width: 572px) {
  .contact__content table td {
    margin-left: 0;
    padding: 5px 0 0;
    width: 100%;
  }
}
.contact__content table td input[type=text],
.contact__content table td input[type=tel],
.contact__content table td input[type=email] {
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #FAF6DC;
  border-radius: 5px;
}
.contact__content table td input[type=date] {
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #FAF6DC;
  border-radius: 5px;
}
@media screen and (max-width: 572px) {
  .contact__content table td input[type=date] {
    width: 200px;
  }
}
.contact__content table td textarea {
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #FAF6DC;
  border-radius: 5px;
  height: 120px;
}
.contact__content table td select {
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #FAF6DC;
  border-radius: 5px;
}
.contact__content table td p {
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #FAF6DC;
  border-radius: 5px;
}
.contact__content table td .sub {
  font-size: 0.875rem;
  display: block;
}
.contact__content table td .sub > a {
  text-decoration: underline;
  transition: 0.3s ease;
}
.contact__content table td .sub > a:hover {
  opacity: 0.7;
}
.contact__content table .select {
  position: relative;
}
.contact__content table .select::after {
  content: "";
  width: 10px;
  height: 6px;
  display: block;
  position: absolute;
  top: 26px;
  right: 12px;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.contact__content .c-policy-check {
  margin: 30px auto 0;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .contact__content .c-policy-check {
    margin: 30px auto 0;
  }
}
.contact__content .c-policy-check a {
  text-decoration: underline;
  transition: 0.3s ease;
}
.contact__content .c-policy-check a:hover {
  opacity: 0.7;
}
.contact__content .c-policy-check .wpcf7-list-item {
  margin: 0;
}
.contact__content .c-input-check {
  width: 300px;
  margin: 5px auto 0;
}
.contact__content .c-input-check .wpcf7-list-item {
  margin: 0;
}
.contact__content .c-sales-check .wpcf7-list-item {
  margin: 0;
}
.contact__content .form-btn {
  padding: 0;
  margin-inline: auto;
  width: 240px;
  margin: 30px auto 0;
  position: relative;
  transition: 0.3s;
  color: #fff;
}
.contact__content .form-btn:hover input {
  opacity: 0.8;
}
.contact__content .form-btn::after {
  content: "";
  width: 16px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: currentColor;
  transform: translate(0, -50%);
}
@media screen and (max-width: 572px) {
  .contact__content .form-btn::after {
    width: 14px;
    height: 12px;
  }
}
.contact__content .form-btn.l-back input {
  background-color: #fff;
  color: #F7931E;
}
.contact__content .form-btn input {
  background-color: #F7931E;
  border-radius: 30px;
  border: 1px solid currentColor;
  font-size: 0.935rem;
  font-weight: bold;
  line-height: 1;
  padding: 1em 0;
  text-align: center;
  transition: 0.3s ease;
  width: 100%;
}
.contact__content .form-btn .wpcf7-spinner {
  position: absolute;
  inset: 0;
}
.contact__content .send-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .contact__content .send-btn-wrap {
    gap: 10px;
    margin-top: 30px;
  }
}
.contact__content .send-btn-wrap .form-btn {
  margin: 0;
}

.policy-main {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .policy-main {
    margin-top: 60px;
  }
}
.policy-main .policy {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .policy-main .policy {
    padding: 50px 0;
  }
}
.policy-main .policy__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.policy-main .policy__content {
  margin-top: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  .policy-main .policy__content {
    margin-top: 30px;
  }
}
.policy-main .policy__content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content p {
  margin-top: 1em;
}
.policy-main .policy__content p a {
  text-decoration: underline;
  transition: 0.3s;
}
.policy-main .policy__content p a:hover {
  opacity: 0.7;
}
.policy-main .policy__content ol {
  padding-left: 1.5rem;
  counter-reset: number 0;
}
.policy-main .policy__content ol li {
  margin-top: 10px;
}
.policy-main .policy__content ol li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}

.p-404 {
  width: 100%;
  padding: 180px 20px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .p-404 {
    padding: 150px 20px;
  }
}
.p-404 .title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F7931E;
}
.p-404 .title > span {
  display: inline-block;
}
.p-404 .text {
  margin-top: 30px;
  font-size: 1.125rem;
}
.p-404 .text > span {
  display: inline-block;
}
.p-404 .back-btn {
  margin: 80px auto 0;
  display: block;
  color: #F7931E;
  border: 1px solid currentColor;
  border-radius: 30px;
  padding: 1em 0;
  width: 300px;
  transition: 0.3s;
  text-align: center;
  font-weight: bold;
}
.p-404 .back-btn:hover {
  background-color: #F7931E;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .p-404 .back-btn {
    margin: 50px auto 0;
    width: 250px;
  }
}

.thanks {
  width: 100%;
  padding: 160px 20px 80px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .thanks {
    padding: 120px 20px 0;
  }
}
.thanks .title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F7931E;
}
.thanks .title > span {
  display: inline-block;
}
.thanks .text {
  margin-top: 30px;
  font-size: 1rem;
}
@media screen and (max-width: 572px) {
  .thanks .text {
    margin-top: 20px;
  }
}
.thanks .text > span {
  display: inline-block;
}
.thanks .back-btn {
  margin: 80px auto 0;
  display: block;
  color: #F7931E;
  border: 1px solid currentColor;
  border-radius: 30px;
  padding: 1em 0;
  width: 300px;
  transition: 0.3s;
  text-align: center;
}
.thanks .back-btn:hover {
  background-color: #F7931E;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .thanks .back-btn {
    margin: 50px auto 0;
    width: 250px;
  }
}

.a-news-main .a-news {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .a-news-main .a-news {
    padding: 40px 0;
  }
}

.news-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5em 2em;
}
@media screen and (max-width: 964px) {
  .news-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em 1.5em;
  }
}
@media screen and (max-width: 572px) {
  .news-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em 1em;
  }
}
.news-content__item {
  width: 100%;
  display: block;
  transition: 0.3s;
  font-weight: bold;
}
.news-content__item:hover {
  opacity: 0.7;
}
.news-content__item .item-image {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.news-content__item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-content__item .item-cat {
  display: inline-block;
  padding: 0.4em 1em;
  background-color: #fff;
  color: #F7931E;
  border: 1px solid #F7931E;
  font-weight: bold;
  border-radius: 20px;
  font-size: 0.875em;
  line-height: 1;
}
.news-content__item .item-date {
  display: inline-block;
  margin-left: 1em;
  font-size: 0.937em;
}
.news-content__item .item-title {
  line-height: 1.6;
  margin-top: 5px;
}

.data-nothing {
  text-align: center;
  margin-top: 30px;
  font-size: 1.125rem;
}

.a-menu-main {
  width: 100%;
}
.a-menu-main .a-menu {
  padding: 60px 0;
}
@media screen and (max-width: 572px) {
  .a-menu-main .a-menu {
    padding: 40px 0 0;
  }
}
.a-menu-main .a-menu__text {
  font-size: 1.125rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .a-menu-main .a-menu__text {
    font-size: 1rem;
  }
}
.a-menu-main .a-menu__category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}
.a-menu-main .a-menu__category-item {
  width: 120px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: #F7931E;
  border: 1px solid #F7931E;
  border-radius: 5px;
}
.a-menu-main .a-menu__category-item.is-active {
  background-color: #F7931E;
  color: #fff;
}
.a-menu-main .a-menu__category-item > a {
  padding: 0.25em 2em;
  transition: 0.3s ease;
  display: block;
  width: 100%;
}
.a-menu-main .a-menu__category-item > a:hover {
  opacity: 0.7;
}
.a-menu-main .a-menu .menu-content {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5em 2em;
}
@media screen and (max-width: 964px) {
  .a-menu-main .a-menu .menu-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em 1.5em;
  }
}
@media screen and (max-width: 572px) {
  .a-menu-main .a-menu .menu-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 1em;
    margin-top: 30px;
  }
}
.a-menu-main .a-menu .menu-content__item {
  width: 100%;
  display: block;
  font-weight: bold;
}
.a-menu-main .a-menu .menu-content__item .item-image {
  width: 100%;
  border-radius: 5px;
  position: relative;
}
.a-menu-main .a-menu .menu-content__item .item-image .item-tag {
  position: absolute;
  top: -20px;
  left: -10px;
}
@media screen and (max-width: 572px) {
  .a-menu-main .a-menu .menu-content__item .item-image .item-tag {
    top: -10px;
  }
}
.a-menu-main .a-menu .menu-content__item .item-image .item-tag .inner {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #FBB03B;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 1.2;
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 572px) {
  .a-menu-main .a-menu .menu-content__item .item-image .item-tag .inner {
    width: 55px;
    height: 55px;
    font-size: 0.775rem;
  }
}
.a-menu-main .a-menu .menu-content__item .item-image .item-tag .inner::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #FBB03B;
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 572px) {
  .a-menu-main .a-menu .menu-content__item .item-image .item-tag .inner::after {
    width: 15px;
    height: 15px;
  }
}
.a-menu-main .a-menu .menu-content__item .item-image .item-cat {
  position: absolute;
  display: inline-block;
  bottom: 10px;
  right: 10px;
  background-color: #F7931E;
  color: #fff;
  padding: 0 1em;
  border-radius: 5px;
  line-height: 1.6;
  text-align: center;
  font-size: 0.875rem;
}
.a-menu-main .a-menu .menu-content__item .item-image > img {
  width: 100%;
  height: auto;
}
.a-menu-main .a-menu .menu-content__item .item-title {
  line-height: 1.4;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  font-size: 1.125rem;
}
.a-menu-main .a-menu .menu-content__item .item-price {
  text-align: center;
  margin-top: 5px;
  font-size: 1.125rem;
  line-height: 1;
}
.a-menu-main .a-menu .menu-content__item .item-copy {
  text-align: center;
  margin-top: 5px;
  line-height: 1.4;
}
.a-menu-main .a-menu .menu-content__item .item-desc {
  margin-top: 5px;
  font-weight: 400;
  font-size: 0.937rem;
  line-height: 1.6;
}

.data-nothing {
  text-align: center;
  margin-top: 30px;
  font-size: 1.125rem;
}

.single-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .single-main {
    margin-top: 60px;
  }
}
.single-main .single {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .single-main .single {
    padding: 50px 0 0;
  }
}
.single-main .single__title {
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .single-main .single__title {
    font-size: 1.5rem;
  }
}
.single-main .single__date {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.875rem;
  margin-top: 20px;
}
.single-main .single__thumbnail {
  width: 100%;
  margin-top: 20px;
}
.single-main .single__thumbnail > img {
  display: block;
  width: 100%;
  height: auto;
}
.single-main .single__content {
  margin-top: 2.5em;
  line-height: 1.8;
}
.single-main .single__content h2 {
  font-size: 1.375rem;
  border-bottom: 3px double #F7931E;
  font-weight: bold;
  margin-top: 2em;
  padding-bottom: 3px;
}
.single-main .single__content h3 {
  font-size: 1.25rem;
  padding-left: 0.5em;
  font-weight: bold;
  border-left: 3px double #F7931E;
  margin-top: 1.5em;
}
.single-main .single__content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 1.5em;
}
.single-main .single__content p {
  margin-top: 1em;
  font-weight: 500;
}
.single-main .single__content p a {
  color: #C1272D;
  text-decoration: underline;
  transition: 0.3s;
}
.single-main .single__content p a:hover {
  opacity: 0.7;
}
.single-main .single__content figure {
  margin-top: 1em;
}
.single-main .single__content figure img {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */