@charset "UTF-8";
/*
 * template.css
 * Custom per-theme styles.
 */
/* 
  webfont
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
/*
  scss import
*/
/*
  variables.scss
  -------------------------------------------
  全体のパラメータ初期設定
  基本パラメータはagencia-uikitにて定義し
  それ以外の追加がある場合ここに記載する
*/
/*
  mixins.scss
*/
/* transition */
/* fontawesome icon */
/*
  MediaQuery
*/
/*
  utilites.scss
*/
.responsive-iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 1px #CCC solid;
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 1px var(--tw-primary-color) solid;
  background-color: var(--tw-secondary-color);
  opacity: 0.75;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-index .swiper-wrapper {
  position: relative;
}
.swiper-index .swiper-wrapper::before {
  content: "";
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.swiper-index .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-index .swiper-slide img {
  width: auto;
  height: 100%;
  max-width: inherit;
}
.swiper-index .swiper-pagination {
  z-index: 100;
}

.swiper-pagemenu {
  max-width: 400px;
}
.swiper-pagemenu .swiper-slide {
  text-align: center;
}
.swiper-pagemenu .swiper-slide img {
  margin-inline: auto;
  max-width: 300px;
}
.swiper-pagemenu .swiper-button-next,
.swiper-pagemenu .swiper-button-prev {
  color: var(--tw-secondary-color);
}

@media (min-width: 576px) {
  .swiper-pagemenu {
    max-width: 960px;
  }
}
@media (min-width: 992px) {
  .swiper-index .swiper-slide img {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
  }
}
/* 基本状態：非表示＆わずかにオフセット */
.io-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

/* 表示状態 */
.io-reveal.is-shown {
  opacity: 1;
  transform: none;
}

/* 方向バリエーション（必要なものだけ使用） */
.io-reveal--up {
  transform: translateY(20px);
}

.io-reveal--down {
  transform: translateY(-20px);
}

.io-reveal--left {
  transform: translateX(20px);
}

.io-reveal--right {
  transform: translateX(-20px);
}

/* 速度オプション（任意） */
.io-reveal--fast {
  transition-duration: 0.5s;
}

.io-reveal--slow {
  transition-duration: 2s;
}

/* 動きを減らすユーザー設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  .io-reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
/*
  common.scss
*/
a {
  color: var(--tw-secondary-color);
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: var(--tw-tertiary-color);
}

.btn {
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  filter: brightness(1.06) saturate(1.03);
}

.btn-gold {
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  position: relative;
  display: inline-block;
  padding: var(--tw-spaceing-1) var(--tw-spaceing-3);
  min-width: 180px;
  overflow: hidden;
  border: 0;
  border-radius: 0.5rem;
  background-image: linear-gradient(180deg, #e0b959, #b8831e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.12), 0 2px 0 #7a5400;
  text-decoration: none;
  color: #fff;
}
.btn-gold::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent rgba(0, 0, 0, 0.32) transparent;
  border-bottom-left-radius: 2px;
  z-index: 0;
}
.btn-gold::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 3px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2px 0 2px 5px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.25));
}
.btn-gold:hover, .btn-gold:focus, .btn-gold:focus-visible {
  filter: brightness(1.06) saturate(1.03);
  text-decoration: none;
}
.btn-gold:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.18), 0 1px 0 #7a5400;
}
.btn-gold:disabled, .btn-gold.disabled {
  filter: none;
  opacity: 0.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h1 {
  margin: 0 0 var(--tw-spaceing-3) 0;
  padding: var(--tw-spaceing-1);
  min-height: 100px;
  border-top: 3px var(--tw-secondary-color) double;
  border-left: 3px var(--tw-secondary-color) double;
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  color: var(--tw-secondary-color);
}
h1::before {
  content: url("../img/h1_icon.png");
  display: inline-flex;
  margin-bottom: var(--tw-spaceing-1);
  line-height: normal;
}
h1.h1-right {
  border-top: 3px var(--tw-secondary-color) double;
  border-right: 3px var(--tw-secondary-color) double;
  border-left: 0px;
}

h2 {
  margin-bottom: var(--tw-spaceing-3);
  padding: var(--tw-spaceing-1);
  background-image: url("../img/h2_bg.png");
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
  font-size: 1.25rem;
}
h2::before {
  content: url("../img/h1_icon.png");
  display: inline-flex;
  margin-right: var(--tw-spaceing-1);
}

h3 {
  margin-bottom: var(--tw-spaceing-2);
}

h4 {
  margin-bottom: var(--tw-spaceing-2);
}

.font_noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.font_noto-serif {
  font-family: "Noto Serif", serif;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
img.box-shadow {
  display: inline-block;
  margin-bottom: var(--tw-spaceing-2);
  border: 1px #EFEFEF solid;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.5);
}
a img:hover {
  filter: brightness(1.08) saturate(1.03);
}

/*
  layout.scss
*/
/* layout */
body {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.75;
  background-image: url("../img/bg-common.jpg");
}

/*
@include mediaQuery-up(xl) {
}
*/
.layout-header__wrapper {
  display: flex;
  flex-direction: column;
}
.layout-header__nav {
  z-index: 9999;
  position: fixed;
  order: 1;
  width: 100%;
  transition: all 0.3s ease;
}
.layout-header__nav a {
  color: var(--bs-white);
}
.layout-header__nav a:hover {
  color: var(--tw-tertiary-color);
}
.layout-header__nav .navbar .navbar-brand {
  position: absolute;
  top: 0;
  padding: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: visible;
  opacity: 1;
}
.layout-header__nav .navbar .navbar-toggler {
  z-index: 9999;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: background-color 0.25s;
}
.layout-header__nav .navbar .navbar-toggler .toggler-line {
  display: block;
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.layout-header__nav .navbar .navbar-toggler .toggler-line:nth-child(1) {
  top: 10px;
}
.layout-header__nav .navbar .navbar-toggler .toggler-line:nth-child(2) {
  top: 19px;
}
.layout-header__nav .navbar .navbar-toggler .toggler-line:nth-child(3) {
  top: 28px;
}
.layout-header__nav .navbar .navbar-toggler[aria-expanded=true] {
  background: var(--bs-secondary);
}
.layout-header__nav .navbar .navbar-toggler[aria-expanded=true] .toggler-line {
  background: var(--tw-primary-color);
}
.layout-header__nav .navbar .navbar-toggler[aria-expanded=true] .toggler-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.layout-header__nav .navbar .navbar-toggler[aria-expanded=true] .toggler-line:nth-child(2) {
  opacity: 0;
}
.layout-header__nav .navbar .navbar-toggler[aria-expanded=true] .toggler-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.layout-header__nav .navbar .navbar-collapse {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.layout-header__nav .navbar .navbar-collapse.show {
  visibility: visible;
  opacity: 1;
}
.layout-header__nav .navbar .navbar-collapse .navbar-nav .menu-item .nav-link {
  font-size: 1.5rem;
}
.layout-header__nav .navbar .navbar-collapse .navbar-nav .menu-item .nav-link::before {
  content: url("../img/header_menu-icon.png");
  position: relative;
  display: inline-flex;
  margin-right: 0.5rem;
}
body.body-scroll .layout-header__nav .navbar-brand {
  visibility: hidden;
  opacity: 0;
}
body.body-scroll .layout-header__nav .navbar-toggler {
  border: 1px var(--bs-white) solid;
  background-color: var(--tw-primary-color);
}
.layout-header__mainimage {
  display: block;
  order: 2;
  text-align: center;
}
body.home .layout-header__mainimage {
  background-color: var(--tw-primary-color);
}

.mainimage-index {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: var(--tw-primary-color);
}
.mainimage-index::before, .mainimage-index::after {
  content: "";
  z-index: 50;
  position: absolute;
  display: block;
  width: 40%;
  height: 100%;
  background: #000;
}
.mainimage-index::before {
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.mainimage-index::after {
  top: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.mainimage-index__heading {
  z-index: 50;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.mainimage-index__title {
  margin: 0 auto;
  padding: 0;
  border: 0;
  text-align: left;
  color: #FFF;
  text-shadow: 2px 1px 3px var(--tw-primary-color), 2px 1px 6px var(--tw-primary-color), 2px 1px 9px var(--tw-primary-color);
  line-height: 3rem;
}
.mainimage-index__title strong {
  font-size: 125%;
}
.mainimage-index__title::before {
  display: none;
}

.mainimage-common {
  position: relative;
  display: flex;
  order: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  min-height: 300px;
  background-color: var(--tw-primary-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mainimage-common::before, .mainimage-common::after {
  content: "";
  z-index: 50;
  position: absolute;
  display: block;
  width: 40%;
  height: 100%;
  background: #000;
}
.mainimage-common::before {
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.mainimage-common::after {
  top: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.mainimage-common__heading {
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}
.mainimage-common__title {
  margin: 0 auto;
  padding: 0;
  border: 0;
  text-align: left;
  color: #FFF;
  line-height: 3rem;
  font-size: 1.75rem;
  text-shadow: 2px 1px 3px var(--tw-primary-color), 2px 1px 6px var(--tw-primary-color), 2px 1px 9px var(--tw-primary-color);
}
.mainimage-common__title::before {
  display: none;
}

.mainimage-tel {
  display: none;
}

@media (min-width: 992px) {
  .layout-header__nav {
    position: absolute;
  }
  .layout-header__nav .navbar {
    /*
    background-color: var(--tw-primary-color);
    background: linear-gradient(90deg,rgba(50, 31, 17, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    */
    color: #FFF;
  }
  .layout-header__nav .navbar .navbar-brand {
    z-index: 1;
    position: absolute;
    top: 0;
    padding: 0;
    width: 170px;
    height: 170px;
    overflow: hidden;
  }
  .layout-header__nav .navbar .navbar-collapse {
    position: relative;
    background: inherit;
    visibility: visible;
    opacity: 1;
  }
  .layout-header__nav .navbar .navbar-collapse .navbar-nav {
    margin: 0 0 0 auto;
  }
  .layout-header__nav .navbar .navbar-collapse .navbar-nav .menu-item .nav-link {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px var(--tw-primary-color), 0 0 20px var(--tw-primary-color), 0 0 20px var(--tw-primary-color), 0 0 20px var(--tw-primary-color);
  }
  body.body-scroll .layout-header__nav .navbar-brand {
    visibility: visible;
    opacity: 1;
  }
  .mainimage-index {
    aspect-ratio: 16/9;
    height: 70vh;
    min-height: 640px;
    max-height: 800px;
  }
  .mainimage-index__heading {
    justify-content: start;
    align-items: start;
  }
  .mainimage-index__heading > .container {
    margin-top: 200px;
  }
  .mainimage-index__title {
    margin: 0;
  }
  .mainimage-common {
    min-height: 600px;
  }
  .mainimage-common__title {
    font-size: 2rem;
  }
  .mainimage-tel {
    z-index: 100;
    position: absolute;
    right: 5%;
    bottom: 5%;
    display: block;
    padding: 0 0 1rem 0;
    text-align: left;
    border-bottom: 1px var(--tw-secondary-color) solid;
    color: var(--bs-white);
  }
  .mainimage-tel .tel-title {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tw-secondary-color);
  }
  .mainimage-tel .tel-title::after {
    content: "";
    flex: 1;
    display: block;
    margin-left: 0.5rem;
    width: 100;
    height: 1px;
    background: var(--tw-secondary-color);
  }
  .mainimage-tel .tel-number {
    margin: 0;
    font-size: 2.5rem;
  }
  .mainimage-tel .tel-number a {
    text-decoration: none;
  }
  .mainimage-tel .tel-number i {
    font-size: 95%;
  }
}
@media (min-width: 1200px) {
  .layout-header .mainimage-index {
    aspect-ratio: 16/9;
    height: 70vh;
    min-height: 800px;
    max-height: 1000px;
  }
}
.layout-main__breadcrumb {
  border-bottom: 1px #CCC solid;
}
.layout-main__contents section + section {
  margin-top: 3rem;
}
.layout-main .navigation.pagination {
  display: flex;
  margin-top: var(--tw-spaceing-5);
}
.layout-main .navigation.pagination .nav-links .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border: 1px var(--tw-primary-color) solid;
}
.layout-main .navigation.pagination .nav-links .page-numbers.current {
  background-color: var(--tw-primary-color);
  color: var(--bs-white);
}

.layout-aside .widget + .widget {
  margin-top: 1rem;
}
.layout-aside .widget .widget-title {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: var(--tw-primary-color);
  color: var(--bs-white);
  font-size: 1.25rem;
}
.layout-aside .widget .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.layout-aside .widget .menu > li.menu-item {
  border: 1px var(--tw-tertiary-color) solid;
  background-color: var(--bs-light);
}

.layout-footer__wrapper {
  background-color: var(--tw-primary-color);
  color: var(--bs-white);
}
.layout-footer__contents {
  background-image: url("../img/footer_bg.jpg");
}
.layout-footer .footer-tel {
  font-size: 1.5rem;
  font-weight: bold;
}
.layout-footer .footer-tel i {
  margin-right: 0.5rem;
}
.layout-footer .btn-pagetop {
  z-index: 9999;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: var(--tw-spaceing-1);
  padding: var(--tw-spaceing-1);
  width: 40px;
  height: 40px;
  border: 1px var(--bs-white) solid;
  background-color: var(--tw-primary-color);
  color: var(--bs-white);
  text-decoration: none;
}
.layout-footer .btn-pagetop i {
  font-size: 1.25rem;
}
.layout-footer .btn-pagetop:hover {
  background-color: var(--tw-secondary-color);
}
.layout-footer .flooter-btn {
  z-index: 9999;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: row-reverse;
}
.layout-footer .flooter-tel,
.layout-footer .flooter-reserve {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: var(--tw-spaceing-1);
  padding: var(--tw-spaceing-1);
  width: auto;
  height: 40px;
  border: 1px var(--bs-white) solid;
  background-color: var(--tw-primary-color);
  color: var(--bs-white);
  text-decoration: none;
  font-size: 0.9rem;
}
.layout-footer .flooter-tel i,
.layout-footer .flooter-reserve i {
  margin-right: 0.25rem;
  font-size: 1.25rem;
}
.layout-footer .flooter-tel:hover,
.layout-footer .flooter-reserve:hover {
  background-color: var(--tw-secondary-color);
}

@media (min-width: 992px) {
  .layout-footer .footer-tel {
    font-size: 2rem;
  }
  .layout-footer .flooter-tel,
  .layout-footer .flooter-reserve {
    font-size: 1rem;
  }
  .layout-footer .flooter-tel i,
  .layout-footer .flooter-reserve i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }
}
/*
  toppage.scss
*/
.index-contents {
  padding: 3rem 0;
}

.index-pagenavi {
  background-color: var(--tw-primary-color);
}

.index-netshop {
  background-image: url("../img/bg-index_pickup.jpg");
}

.index-intro {
  background-image: url("../img/bg-index_intro.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.index-intro__title {
  margin-bottom: var(--tw-spaceing-3);
  min-height: unset;
  border: 0;
  writing-mode: unset;
  font-size: 1.5rem;
}
.index-intro__title::before {
  display: none;
}

.index-menu__menulist span {
  display: block;
  padding: var(--tw-spaceing-1);
  background-image: url("../img/menulist_menu-bg.png");
  background-size: auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.index-menu__menulist span::before {
  content: url("../img/menulist_icon.png");
  display: inline-flex;
  margin-right: var(--tw-spaceing-1);
}
.index-menu__tensoba dl {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: var(--tw-spaceing-3);
  border: 3px var(--tw-secondary-color) double;
}
.index-menu__tensoba dl dt {
  margin: 0;
  font-size: 1.25rem;
}
.index-menu__tensoba dl dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-align: center;
}
.index-menu__tensoba dl dd .tenpura-set + .tenpura-set::before {
  content: url("../img/menulist_tensoba-plus.png");
  display: inline-flex;
  margin: var(--tw-spaceing-3) 0 0 0;
}

@media (min-width: 992px) {
  .index-menu__tensoba dl {
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
  }
  .index-menu__tensoba dl dt {
    margin-right: var(--tw-spaceing-1);
    writing-mode: vertical-rl;
    font-size: 1.5rem;
  }
  .index-menu__tensoba dl dd {
    flex-direction: row;
    padding: 30px 30px 20px 40px;
    width: 870px;
    height: 265px;
    background-image: url("../img/menulist_tensoba-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
  }
  .index-menu__tensoba dl dd .tenpura-set {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .index-menu__tensoba dl dd .tenpura-set .row {
    width: 100%;
  }
  .index-menu__tensoba dl dd .tenpura-set + .tenpura-set::before {
    margin: 0 var(--tw-spaceing-3) 0 0;
  }
}
.index-shop {
  background-image: url("../img/bg-index_shop.jpg");
  background-size: auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .index-shop {
    background-size: 100% auto;
  }
  .index-shop__shop-pdf {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-image: url("../img/pdf_bg.png");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
  }
}
/*
  page.scss
*/
.page-contents h2 {
  padding-bottom: 1rem;
  border-bottom: 1px var(--tw-primary-color) solid;
}

/*
  contenst.scss
*/
dl.common-text-contents {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  width: 100%;
}
dl.common-text-contents dt {
  margin: 0;
  width: 55px;
}
dl.common-text-contents dd {
  width: 100%;
  margin: 0;
  padding: var(--tw-spaceing-3) 0 0 var(--tw-spaceing-3);
}
dl.common-text-contents.contents-left dt {
  order: 2;
}
dl.common-text-contents.contents-left dd {
  order: 1;
  padding: var(--tw-spaceing-3) var(--tw-spaceing-3) 0 0;
}/*# sourceMappingURL=template.css.map */