@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
.clearfix:before, .table-styleA dl:before,
.table-styleB dl:before,
.clearfix:after,
.table-styleA dl:after,
.table-styleB dl:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after, .table-styleA dl:after,
.table-styleB dl:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

/*　////////////////////////////////
ブレイクポイント
//////////////////////////////////　*/
/*　////////////////////////////////
ベースフォント
//////////////////////////////////　*/
/*　////////////////////////////////
カラー
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix, .table-styleA dl,
.table-styleB dl {
  zoom: 1;
}
.clearfix:after, .table-styleA dl:after,
.table-styleB dl:after {
  display: block;
  content: "";
  clear: both;
}

/*　////////////////////////////////////////////////////////////////////////////////////////////////
flex include
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*　////////////////////////////////////////////////////////////////////////////////////////////////
初期値top:50%; left:50%;
[@include set-top();] [@include set-left();]
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*縦中央*/
/*横中央*/
/* -----上下左右中央、%指定で調整可能----- */
/*　////////////////////////////////
flex 設定
//////////////////////////////////　*/
/*　////////////////////////////////
三角形
//////////////////////////////////　*/
/*　////////////////////////////////
矢印
//////////////////////////////////　*/
/*　////////////////////////////////////////////////////////////////////////////////////////////////
font-size
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*　////////////////////////////////
汎用style
//////////////////////////////////　*/
.menu-toggle,
.menu-toggle span {
  display: inline-block;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-toggle {
  position: fixed;
  top: 6px;
  right: 0px;
  width: 60px;
  height: 60px;
  z-index: 120;
  background: #8a1f23;
  border: none;
}
.menu-toggle p {
  margin-top: 33px;
  color: #fff;
  letter-spacing: -0.04em;
  font-size: 1.5rem;
}
.menu-toggle span {
  position: absolute;
  left: 15%;
  width: 70%;
  height: 4px;
  background-color: #fff;
  z-index: 120;
}
.menu-toggle span:nth-of-type(1) {
  top: 30%;
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}
.menu-toggle span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-toggle span:nth-of-type(3) {
  top: 70%;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
}

.menu-toggle.active {
  opacity: 1;
  border: none;
}
.menu-toggle.active p {
  color: #fff;
}
.menu-toggle.active span {
  background-color: #fff;
}
.menu-toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
  top: 54%;
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: #8a1f23;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
#nav .nav_title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(2.4rem, 2.8vw, 3.2rem);
  line-height: 1.3;
  font-weight: 400;
  z-index: 10;
  color: #fff;
  padding: 15px;
  margin-bottom: 10px;
}
#nav .nav_title .en_title {
  display: block;
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  font-weight: normal;
}
#nav ul {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#nav ul li {
  text-align: center;
  list-style-type: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.6s ease;
  transition: transform 0.8s ease, opacity 0.6s ease, -webkit-transform 0.8s ease;
  will-change: transform, animation, position;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
#nav ul li a {
  display: inline-block;
  padding: 10px 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
}
#nav ul li a:hover {
  color: #ccc;
}
#nav .nav_tel_area {
  text-align: center;
  border-top: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 75vw;
  margin: 40px auto 0;
  padding: 25px 0 0;
  color: #fff;
}
#nav .nav_tel_area .tel_txt {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(3.4rem, 3.6vw, 3.8rem);
  line-height: 1;
}

#nav.active {
  right: 0;
  opacity: 0.98;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
#nav.active li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

button:focus:not(.focus-visible) {
  outline: none;
}

/*　////////////////////////////////
mixin
//////////////////////////////////　*/
/*
@include css3(transition, 0.5s);
*/
/*　////////////////////////////////
HTML5の場合は値を「false」から「true」にする
//////////////////////////////////　*/
/*　////////////////////////////////
// 汎用クラスを使用するか
//////////////////////////////////　*/
/*　////////////////////////////////
reset
//////////////////////////////////　*/
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 600;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
html {
  font-size: 62.5%;
}

body {
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  -webkit-line-break: normal;
  line-break: normal;
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.6rem;
  color: #000000;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
body ul li {
  list-style-type: none;
}

.container,
.container-s,
.container-xs {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .container-s {
    width: 700px;
  }
  .container-xs {
    width: 680px;
  }
}
@media (min-width: 987px) {
  .container,
  .inner-container {
    width: 930px;
  }
  .container-s {
    width: 930px;
  }
  .container-xs {
    width: 880px;
  }
}
@media (min-width: 1220px) {
  .container,
  .inner-container {
    width: 1140px;
  }
  .container-s {
    width: 1000px;
  }
}
@media (min-width: 1460px) {
  .container {
    width: 1380px;
  }
}
/*　////////////////////////////////
改行
//////////////////////////////////　*/
.pc-br {
  display: none;
}
@media (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

@media (min-width: 480px) {
  .sp-br {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (min-width: 768px) {
  .tb-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-tb {
    display: none;
  }
}

.br-tb2 {
  display: none;
}
@media (min-width: 480px) {
  .br-tb2 {
    display: block;
  }
}
@media (min-width: 768px) {
  .br-tb2 {
    display: none;
  }
}

.md-br {
  display: none;
}
@media (min-width: 987px) {
  .md-br {
    display: block;
  }
}

@media (min-width: 987px) {
  .br-md {
    display: none;
  }
}

.lg-br {
  display: none;
}
@media (min-width: 1220px) {
  .lg-br {
    display: block;
  }
}

@media (min-width: 1220px) {
  .br-lg {
    display: none;
  }
}

.xlg-br {
  display: none;
}
@media (min-width: 1500px) {
  .xlg-br {
    display: block;
  }
}

@media (min-width: 1500px) {
  .br-xlg {
    display: none;
  }
}

/*margin 0 auto */
.block-center {
  display: block;
  margin: 0 auto;
}

/*center*/
.center {
  text-align: center;
}

.lg-center {
  text-align: left;
}
@media (min-width: 1220px) {
  .lg-center {
    text-align: center;
  }
}

.md-center {
  text-align: left;
}
@media (min-width: 987px) {
  .md-center {
    text-align: center;
  }
}

.sm-center {
  text-align: left;
}
@media (min-width: 768px) {
  .sm-center {
    text-align: center;
  }
}

/*　////////////////////////////////
画像切り替え
//////////////////////////////////　*/
.pc-img {
  display: none !important;
}

.sp-img {
  display: block !important;
}

@media (min-width: 768px) {
  .pc-img {
    display: block !important;
  }
  .sp-img {
    display: none !important;
  }
}
/*　////////////////////////////////
OP
//////////////////////////////////　*/
@keyframes fadeIn {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
/*　////////////////////////////////
テキストselection
//////////////////////////////////　*/
::-moz-selection {
  background: #8a1f23;
  color: #fff;
}
::selection {
  background: #8a1f23;
  color: #fff;
}

/*　////////////////////////////////
a
//////////////////////////////////　*/
a:hover,
a {
  text-decoration: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #3e3a39;
}

a:active {
  text-decoration: none;
}

/*　////////////////////////////////
img
//////////////////////////////////　*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 480px) {
  img {
    max-width: 100%;
  }
}

/*　////////////////////////////////
pagetop
//////////////////////////////////　*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.pagetop a {
  background: #8a1f23;
  color: #fff;
  width: 60px;
  height: 60px;
  display: inline-block;
  position: relative;
}
.pagetop a:before, .pagetop a:after {
  position: absolute;
  content: "";
  top: 10px;
  width: 1px;
  height: 40px;
  background: #fff;
}
.pagetop a:before {
  left: 34%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.pagetop a:after {
  left: 66%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

/*　////////////////////////////////
YouTube動画スタイル
//////////////////////////////////　*/
.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*　////////////////////////////////
背景色
//////////////////////////////////　*/
.bg-gray {
  background: #f2f2f0;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .bg-gray {
    padding: 80px 0;
  }
}

/*　////////////////////////////////
table
//////////////////////////////////　*/
.table-styleA,
.table-styleB {
  border-bottom: 1px solid #ec6300;
}
.table-styleA dl,
.table-styleA dt,
.table-styleA dd,
.table-styleB dl,
.table-styleB dt,
.table-styleB dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table-styleA dl dt,
.table-styleA dl dd,
.table-styleB dl dt,
.table-styleB dl dd {
  border-top: 1px solid #ec6300;
  line-height: 1.8;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .table-styleA dl dt,
  .table-styleA dl dd,
  .table-styleB dl dt,
  .table-styleB dl dd {
    font-size: 1.6rem;
  }
}
.table-styleA dl dt,
.table-styleB dl dt {
  width: 100%;
  float: none;
  padding: 10px 0;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .table-styleA dl dt,
  .table-styleB dl dt {
    text-align: left;
    width: 230px;
    float: left;
    padding: 20px 0 0 20px;
  }
}
.table-styleA dl dd,
.table-styleB dl dd {
  margin-left: 0;
  padding: 10px;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .table-styleA dl dd,
  .table-styleB dl dd {
    margin-left: 230px;
    padding: 20px 0 20px 20px;
  }
}
.table-styleA dl dd:after,
.table-styleB dl dd:after {
  content: "";
  display: block;
  clear: both;
}

/*　////////////////////////////////
背景画像指定
//////////////////////////////////　*/
/*　////////////////////////////////
end　背景画像指定
//////////////////////////////////　*/
body {
  background-color: #fff;
  font-size: 1.6rem;
  color: #000000;
  animation: fadeIn 2.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: "Shippori Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}
body ul {
  margin: 0;
}
body ul li {
  list-style-type: none;
}
body a span:hover,
body a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

.all-wrapper {
  overflow: hidden;
  /*　////////////////////////////////
  header
  //////////////////////////////////　*/
  /*　////////////////////////////////
  footer
  //////////////////////////////////　*/
  /*----- .info-area ------------------------------------*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  共通
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*----- マージン -----*/
  /*----- ボタンスタイル -----*/
  /*----- 見出しスタイル -----*/
  /*-------- テーブルスタイル ----------*/
  /*-------- リストスタイル ----------*/
  /*-------- ブートスラップ関連 ----------*/
  /*-------- flexスタイル ----------*/
}
.all-wrapper .main-nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.all-wrapper .main-nav .nav_list li:not(:last-child) {
  margin-right: 3.5vw;
}
.all-wrapper .main-nav .nav_list li a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.4;
}
.all-wrapper .main-nav .nav_list li a:hover {
  color: #8a1f23;
}
@media (min-width: 1220px) {
  .all-wrapper .main-nav .nav_list li:not(:last-child) {
    margin-right: 4vw;
  }
  .all-wrapper .main-nav .nav_list li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1500px) {
  .all-wrapper .main-nav .nav_list li:not(:last-child) {
    margin-right: 5vw;
  }
  .all-wrapper .main-nav .nav_list li a {
    font-size: 1.8rem;
  }
}
.all-wrapper .header {
  position: fixed;
  top: -300px; /* 最初は非表示（上に隠れる） */
  left: 0;
  width: 100%;
  background: white;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  z-index: 1000;
}
.all-wrapper .header.show {
  top: 0; /* スクロールで表示 */
}
.all-wrapper header.header {
  background-color: #fff;
}
.all-wrapper header.header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 8px 0;
}
.all-wrapper header.header .header-wrap .head-left,
.all-wrapper header.header .header-wrap .head-right {
  width: auto;
}
.all-wrapper header.header .header-wrap .head-left {
  text-align: left;
  width: 100%;
}
.all-wrapper header.header .header-wrap .head-left h1.head-logo span {
  font-size: 1.4rem;
  display: block;
}
.all-wrapper header.header .header-wrap .head-left h1.head-logo img {
  width: 300px;
  height: auto;
  display: none;
}
.all-wrapper header.header .header-wrap .head-right {
  text-align: left;
  width: 100%;
}
.all-wrapper header.header .header-wrap .head-right .head-tel {
  margin-top: 5px;
  display: inline-block;
}
.all-wrapper header.header .header-wrap .head-right .head-tel span {
  background-color: #8a1f23;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 5px 10px;
  text-align: center;
  margin-bottom: 10px;
  display: none;
}
.all-wrapper header.header .header-wrap .head-right .head-tel .tel {
  font-size: clamp(2.6rem, 2.8vw, 3rem);
  color: #8a1f23;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
}
.all-wrapper header.header .pc-nav {
  display: none;
}
.all-wrapper header.header .sp-nav {
  display: block;
}
@media (min-width: 768px) {
  .all-wrapper header.header .header-wrap .head-left {
    text-align: center;
  }
  .all-wrapper header.header .header-wrap .head-right {
    text-align: center;
  }
}
@media (min-width: 987px) {
  .all-wrapper header.header .header-wrap {
    padding: 20px 0;
  }
  .all-wrapper header.header .header-wrap .head-left {
    width: 49%;
    text-align: left;
  }
  .all-wrapper header.header .header-wrap .head-left h1.head-logo img {
    display: inline-block;
  }
  .all-wrapper header.header .header-wrap .head-right {
    width: 49%;
    text-align: right;
  }
  .all-wrapper header.header .header-wrap .head-right .head-tel {
    margin-top: 10px;
  }
  .all-wrapper header.header .header-wrap .head-right .head-tel span {
    display: inline-block;
  }
  .all-wrapper header.header .header-wrap .head-right .head-tel .tel {
    pointer-events: none;
  }
  .all-wrapper header.header .pc-nav {
    display: none;
  }
}
.all-wrapper footer.footer {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.all-wrapper footer.footer .container {
  padding: 60px 15px;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .container {
    padding: 60px 0 40px;
  }
}
.all-wrapper footer.footer .footer-message {
  font-size: 1.8rem;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  padding: 20px 25px;
  margin-bottom: 30px;
  color: #8a1f23;
  border-top: 2px solid #8a1f23;
  border-bottom: 2px solid #8a1f23;
}
.all-wrapper footer.footer .footer-title {
  margin-bottom: 30px;
}
.all-wrapper footer.footer .footer-title img {
  max-width: 210px;
  margin: 0 0 10px;
}
.all-wrapper footer.footer .foot-tel {
  margin-top: 10px;
}
.all-wrapper footer.footer .foot-tel .tel {
  font-size: clamp(2rem, 2.65vw, 3.3rem);
  font-weight: 600;
  color: #8a1f23;
  display: inline-block;
  line-height: 1;
}
.all-wrapper footer.footer .link {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .link {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.all-wrapper footer.footer .link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #8a1f23;
  max-width: 240px;
  width: 100%;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .link a {
    margin: 0;
  }
}
.all-wrapper footer.footer .link .instagram::before,
.all-wrapper footer.footer .link .wolt::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  vertical-align: middle;
}
.all-wrapper footer.footer .link .instagram::before {
  background-image: url("/img/instagram.svg");
}
.all-wrapper footer.footer .link .wolt::before {
  background-image: url("/img/wolt.svg");
}
.all-wrapper footer.footer .copyright {
  text-align: center;
  font-size: 1.4rem;
  background: #8a1f23;
  color: #fff;
  padding: 5px 0;
}
.all-wrapper .info-area {
  background-color: #8a1f23;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 60px 10px;
}
.all-wrapper .info-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/haikei.png");
  background-repeat: repeat;
  opacity: 0.5;
  z-index: -1;
}
.all-wrapper .info-area h2.h-style-a {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.all-wrapper .info-area .info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.all-wrapper .info-area .info_list li {
  width: 100%;
  margin: 0 0 25px;
}
.all-wrapper .info-area .info_list li .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1/1; /* 正方形を維持 */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.all-wrapper .info-area .info_list li .txt-area {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px 10px;
  color: #fff;
}
.all-wrapper .info-area .info_list li .day {
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  margin-top: 5px;
}
.all-wrapper .info-area .info_list li .title {
  font-weight: 500;
  font-size: 1.6rem;
}
@media (min-width: 480px) {
  .all-wrapper .info-area .info_list {
    gap: 4%;
  }
  .all-wrapper .info-area .info_list li {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .all-wrapper .info-area .info_list {
    gap: 5%;
  }
  .all-wrapper .info-area .info_list li {
    width: 30%;
  }
}
.all-wrapper .lower-header {
  background-color: #8a1f23;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 100px;
}
.all-wrapper .lower-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/haikei.png");
  background-repeat: repeat;
  opacity: 0.5;
  z-index: -1;
}
.all-wrapper .lower-header h2.h-style-a {
  text-align: center;
  color: #fff;
  font-size: 3rem;
}
.all-wrapper #primary {
  margin-bottom: 100px;
}
.all-wrapper .hero-restaurant,
.all-wrapper .hero-restaurant-menu {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url("/img/phot_04.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .all-wrapper .hero-restaurant,
  .all-wrapper .hero-restaurant-menu {
    height: 400px;
  }
}
@media (min-width: 768px) {
  .all-wrapper .hero-restaurant,
  .all-wrapper .hero-restaurant-menu {
    background-position: center 70%;
  }
}
.all-wrapper .hero-restaurant::before,
.all-wrapper .hero-restaurant-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.all-wrapper .hero-restaurant-menu {
  height: 280px;
  background-image: url("/img/menu_top.jpg");
}
@media (min-width: 768px) {
  .all-wrapper .hero-restaurant-menu {
    height: 400px;
  }
}
.all-wrapper section {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .all-wrapper section {
    margin-bottom: 100px;
  }
}
.all-wrapper .sentence {
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 1.65vw, 1.7rem);
}
.all-wrapper .txt_center {
  text-align: center;
  text-wrap: balance;
}
.all-wrapper .widget-title {
  margin: 0;
  max-width: initial;
}
.all-wrapper .midashi {
  font-size: clamp(2rem, 2.35vw, 2.7rem);
  font-weight: 500;
  border-left: 10px solid #8a1f23;
  padding-left: 10px;
  margin-bottom: 30px;
  line-height: 1.4;
}
.all-wrapper .midashi2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #8a1f23;
  margin-bottom: 10px;
}
.all-wrapper .g-map {
  text-align: center;
  margin-top: 15px;
}
.all-wrapper .g-map a {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ec6300;
}
.all-wrapper .kome {
  color: #c23939;
}
.all-wrapper .hissu {
  color: #ed1c24;
  margin-left: 10px;
}
.all-wrapper .attend {
  color: #ed1c24;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.all-wrapper .red_txt {
  color: #ff0d36;
}
.all-wrapper .ast {
  text-indent: -1em;
  margin-left: 1em;
}
.all-wrapper .ast::before {
  content: "※";
}
.all-wrapper .mb_xxs {
  margin-bottom: 10px;
}
.all-wrapper .mb_xs {
  margin-bottom: 12px;
}
.all-wrapper .mb_s {
  margin-bottom: 20px;
}
.all-wrapper .mb_m {
  margin-bottom: 25px;
}
.all-wrapper .mb_l {
  margin-bottom: 35px;
}
.all-wrapper .mb_xl {
  margin-bottom: 40px;
}
.all-wrapper .mb_xxl {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .all-wrapper .mb_xs {
    margin-bottom: 20px;
  }
  .all-wrapper .mb_s {
    margin-bottom: 30px;
  }
  .all-wrapper .mb_m {
    margin-bottom: 40px;
  }
  .all-wrapper .mb_l {
    margin-bottom: 50px;
  }
  .all-wrapper .mb_xl {
    margin-bottom: 60px;
  }
  .all-wrapper .mb_xxl {
    margin-bottom: 80px;
  }
}
.all-wrapper .mb-text {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .all-wrapper .sm-mt {
    margin-top: 30px;
  }
}
@media (max-width: 987px) {
  .all-wrapper .md-mt {
    margin-top: 30px;
  }
}
.all-wrapper .btnA {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 24px;
  background: #261c19;
  border: 2px solid #7a1c1c;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
  max-width: 260px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.all-wrapper .btnA:hover {
  opacity: 0.8;
}
.all-wrapper .btnA::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .all-wrapper .btnA {
    font-size: 1.8rem;
    padding: 10px 15px;
  }
}
.all-wrapper .wolt,
.all-wrapper .instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.all-wrapper .wolt::before,
.all-wrapper .instagram::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  background-image: url("/img/wolt.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.all-wrapper .wolt::after,
.all-wrapper .instagram::after {
  content: "▶";
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1rem;
  color: #000;
  margin-left: 8px;
}
.all-wrapper .instagram::before {
  width: 42px;
  height: 42px;
  background-image: url("/img/instagram.svg");
}
.all-wrapper .sp-nav .nav_list {
  padding: 20px 0 0 0;
}
.all-wrapper .sp-nav .wolt,
.all-wrapper .sp-nav .instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.all-wrapper .sp-nav .wolt::before,
.all-wrapper .sp-nav .instagram::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-image: url("/img/wolt.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.all-wrapper .sp-nav .wolt::after,
.all-wrapper .sp-nav .instagram::after {
  content: "▶";
  display: none;
  vertical-align: middle;
  font-size: 1.1rem;
  color: #ffffff;
  margin-left: 8px;
}
.all-wrapper .sp-nav .instagram::before {
  width: 32px;
  height: 32px;
  background-image: url("/img/instagram_w.svg");
}
.all-wrapper .sp-nav .menu-logo {
  width: 160px;
  margin: 50px auto 0;
}
.all-wrapper h2.h-style-a {
  margin-bottom: 25px;
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  color: #8a1f23;
}
.all-wrapper h2.h-style-a span {
  font-size: 1.6rem;
  text-align: left;
  display: block;
  margin-top: 15px;
}
.all-wrapper .table-style .t-wrap {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #c4c4c4;
}
.all-wrapper .table-style .t-wrap:first-child {
  border-top: 1px solid #c4c4c4;
}
.all-wrapper .table-style .t-wrap dt,
.all-wrapper .table-style .t-wrap dd {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.all-wrapper .table-style .t-wrap dt {
  font-size: 1.6rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .all-wrapper .table-style .t-wrap {
    border-bottom: none;
    padding: 0px;
  }
  .all-wrapper .table-style .t-wrap dt,
  .all-wrapper .table-style .t-wrap dd {
    border-bottom: 1px solid #c4c4c4;
    padding: 10px 15px;
  }
  .all-wrapper .table-style .t-wrap dt {
    width: 26%;
    border-right: none;
  }
  .all-wrapper .table-style .t-wrap dd {
    width: 74%;
  }
}
.all-wrapper .list-style li {
  text-indent: -1em;
  margin-left: 1em;
}
.all-wrapper .list-style li::before {
  content: "・";
}
.all-wrapper .square_list li {
  text-indent: -1.2em;
  margin-left: 1.2em;
}
.all-wrapper .square_list li::before {
  content: "■";
  margin-right: 0.2em;
}
.all-wrapper .row-eq-height {
  /*row 高さ揃える*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.all-wrapper .row-reverse {
  /*左右入れ替え*/
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .all-wrapper .col-mb {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .all-wrapper .col-mb-l {
    margin-bottom: 45px;
  }
}
.all-wrapper .f-wrap-02,
.all-wrapper .f-wrap-03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.all-wrapper .f-wrap-02 .f-box,
.all-wrapper .f-wrap-03 .f-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .all-wrapper .f-wrap-02 {
    gap: 4%;
  }
  .all-wrapper .f-wrap-02 .f-box {
    width: 48%;
    margin-bottom: 0;
  }
  .all-wrapper .f-wrap-03 .f-box {
    width: 50%;
    margin-bottom: 0;
  }
}

/* .all-wrapper */