@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  overflow: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ================= */
/* ▼ 共通スタイル */
/* ================= */
body {
  font-family: "TsukuAMDMinStd-E-DidotETPro-Bold", serif; /* 英語 + 日本語フォント */
}
/*font color*/
h1, h2, p1, p2, p3, a, label, ul, li, th, td, address {
  color: #ffffff;
  line-height: 1.7;
}
.marker {
  padding: 0.5em; /*文字周りの余白*/
  background: #f2c335; /*背景色*/
  border-radius: 4px;
}
.marker-small {
  padding: 0.5em; /*文字周りの余白*/
  background: #eee; /*背景色*/
  border-radius: 4px;
}
hr {
  border: none;
  height: 2px;
  width: 8%;
  background-color: #d3b369;
}
/*画像のダウンロード禁止*/
img {
  /* PCの右クリック禁止 */
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: bottom;
}
/*フェード*/
.sa {
  opacity: 0;
  transition: all .5s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
#wrapper #main .mainArticleNormalTop22.sa.sa--up {}
.sa--lr {
  transform: translate(-100px, 0);
}
.sa--rl {
  transform: translate(100px, 0);
}
.sa--up {
  transform: translate(0, 100px);
}
.sa--down {
  transform: translate(0, -100px);
}
.sa--scaleUp {
  transform: scale(.5);
}
.sa--scaleDown {
  transform: scale(1.5);
}
.sa--rotateL {
  transform: rotate(180deg);
}
.sa--rotateR {
  transform: rotate(-180deg);
}
/*object fit images*/
.image-fit {
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.image-fit-t {
  object-fit: cover;
  object-position: top;
  font-family: 'object-fit: cover; object-position: top;';
}
.image-fit-b {
  object-fit: cover;
  object-position: bottom;
  font-family: 'object-fit: cover; object-position: bottom;';
}
.image-fit-l {
  object-fit: cover;
  object-position: left;
  font-family: 'object-fit: cover; object-position: left;';
}
.image-fit-r {
  object-fit: cover;
  object-position: right;
  font-family: 'object-fit: cover; object-position: right;';
}
.image-fit-c {
  object-fit: contain;
  font-family: 'object-fit: contain;';
}
.image-fit-f {
  object-fit: fill;
  font-family: 'object-fit: fill;';
}
/*========= バー表示のためのCSS ===============*/
.scrollgress {
  z-index: 150; /*他のposition指定しているエリアより前に出すためz-indexの数字を大きく*/
  top: 0px !important; /* fixedで設置しているheaderの高さよりも下にバーを出す*/
}
/*========= フルスクリーン表示 ===============*/
.full-screen {
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* --------------------- */
/* ▼ a：スマホのタイル */
/* --------------------- */
@media (max-width: 767px) {
  body {
    overflow: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  /*loader*/
  #loaderBg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: #ffffff;
    z-index: 300;
  }
  #loaderWrap {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 100vh;
    margin-top: -100px;
    margin-left: -150px;
    text-align: center;
    z-index: 301;
  }
  #loader {
    display: block;
  }
  #loader img {
    width: 300px;
  }
  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 14px;
  }
  p1, label, li, th, td {
    font-size: 14px;
  }
  p2 {
    font-size: 14px;
  }
  p3 {
    font-size: 12px;
  }
  address {
    font-size: 16px;
    text-decoration: none;
  }
  a {
    text-decoration: none;
  }
  .wrapper {
    min-width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }
  /* ヘッダー */
  #header {
    display: flex;
    bottom: 0;
    height: 80px;
    position: fixed;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    z-index: 100;
    background-color: #ffffff;
    transform: translateX(0%) translateY(50%); /* 初期状態: 下に隠す */
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  /* 表示される状態 */
  #header.show {
    transform: translateX(0%) translateY(0);
    opacity: 1;
  }
  .mobile-button-i a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .mobile-button-i a:before {
    content: "\f16d";
    position: relative;
    font-family: "Font Awesome 5 Brands";
    font-weight: 600;
    color: #ffffff;
    transition: 0.5s ease-in-out;
  }
  .mobile-button-i a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .mobile-button-i a:hover:before {
    color: #000;
  }
  .mobile-button-w a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .mobile-button-w a:before {
    content: "\f0c6";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .mobile-button-w a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .mobile-button-w a:hover:before {
    color: #000;
  }
  .mobile-button-t a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .mobile-button-t a:before {
    content: "\f879";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .mobile-button-t a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .mobile-button-t a:hover:before {
    color: #000;
  }
  /* 暖簾部分 */
  .top-noren {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 40px; /* トップの高さは適宜調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
  }
  .noren-photo {
    width: 100%;
    height: 40px; /* 暖簾の高さ */
    background-image: url("../../images/home/noren.png");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%; /* 高さに合わせて横を繰り返し */
    margin-top: 0px;
    z-index: 2;
  }
  /* メイン */
  .main {
    position: relative;
    overflow: hidden;
    width: 100vw;
  }
  /*トップスライダー*/
  .mainSlider {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: calc(100vh - 40px);
    z-index: 1;
    object-fit: cover;
  }
  .top-catch {
    position: absolute;
    top: calc(50% - 20px); /* ここを調整して、縦位置を下げる */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; /* サイズを固定するならpxで */
    height: auto;
    z-index: 2; /* 焼肉画像より上に表示 */
  }
  .top-catch img {
    width: 100%; /* サイズは適宜調整 */
    height: auto;
  }
  #top-logo-sp {
    position: absolute;
    top: 10px; /* 暖簾の高さと同じ */
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2; /* 暖簾より下にしないよう注意 */
  }
  #top-logo-sp img {
    width: 90%; /* サイズは適宜調整 */
    height: auto;
  }
  #top-logo-section {
    display: none;
  }
  .top-button-i a {
    display: none;
  }
  .top-button-w a {
    display: none;
  }
  .top-button-t a {
    display: none;
  }
  .single-item {
    display: none;
  }
  .single-item-sp {
    width: 100%;
    height: auto;
  }
  .single-item-sp video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* block1 */
  .block1 {
    padding: 100px 0% 30px;
    background-color: #ec6948;
  }
  .block1-inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  .block1-inner-box {
    display: none;
  }
  .block1-inner-box img {
    display: none;
  }
  .block1-inner-box-smt {
    width: 25%;
    padding: 40px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 30;
  }
  .block1-inner-box-smt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block1-photo-l-1 {
    position: absolute;
    z-index: 10;
    width: 500px;
    height: 500px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    left: 0;
    top: 0;
    transform: translate(-40%, -10%);
  }
  .block1-photo-l-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block1-photo-r-1 {
    position: absolute;
    z-index: 10;
    width: 350px;
    height: 350px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    right: 0;
    top: 0;
    transform: translate(40%, 30%);
  }
  .block1-photo-r-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block1-photo-r-2 {
    position: absolute;
    z-index: 10;
    width: 200px;
    height: 200px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    right: 0;
    top: 0;
    transform: translate(-10%, 200%);
  }
  .block1-photo-r-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* block2 */
  .block2 {
    padding: 30px 0% 30px;
    background-color: #ec6948;
  }
  .block2-inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 30;
  }
  .block2-inner img {
    width: 100%;
    height: auto;
  }
  .block2-space {
    padding: 0px 0% 120px;
    background-color: #f2c335;
    position: relative;
    z-index: 1;
  }
  .block2-triangle {
    background-color: #ec6948;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block3 title */
  .block3-title {
    background-color: #f2c335;
    position: relative;
    padding: 60px 0 30px;
  }
  .block3-inner-text-title {
    width: 55%;
    padding: 0px 0 0px;
    margin: 0 auto;
  }
  .block3-inner-text-title img {
    width: 100%;
    height: auto;
  }
  /* block3 */
  .block3 {
    background-color: #f2c335;
    position: relative;
  }
  .block3-inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 20px 0 30px;
  }
  .block3-inner-text-box {
    width: 90%;
    margin: 0 auto;
  }
  .block3-inner-text-box-title {
    width: 100%;
  }
  .block3-inner-text-box-title img {
    width: 90%;
    height: auto;
  }
  .block3-inner-text-box hr {
    width: 100%;
    margin: 20px 0;
    background-color: #000000;
  }
  .block3-inner-text-box-text {
    width: 100%;
    margin-bottom: 30px;
  }
  .block3-inner-text-box-text p1 {
    color: #000000;
  }
  .block3-ContentOver-box {
    overflow: visible;
    width: 90%;
    margin: 0 auto;
  }
  .block3-photo {
    width: 100%;
  }
  .block3-photo img {
    width: 1000px;
    height: 300px;
    transform: translateX(0%);
    object-fit: cover;
    object-position: -100px 50%;
  }
  .block5-space {
    padding: 0px 0% 120px;
    background-color: #ec6948;
    position: relative;
    z-index: 1;
  }
  .block5-triangle {
    background-color: #f2c335;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block6 */
  .block6 {
    background-color: #ec6948;
    position: relative;
    padding: 60px 0% 30px;
  }
  .block6-title {
    width: 100%;
    margin: 0 auto;
  }
  .block6-title img {
    width: 100%;
    height: auto;
  }
  .block6-title .nashi {
    display: none;
  }
  .block6-title .nashi img {
    display: none;
  }
  .block6-title-smt {
    width: 80%;
    margin: 0 auto;
  }
  .block6-title-smt img {
    width: 100%;
    height: auto;
  }
  .block6-box {
    width: 90%;
    margin: 30px auto 60px;
  }
  .block6-text-box {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0px;
    background-color: #ffffff;
    margin: 0 auto;
    box-shadow: 10px 10px 0px 0 rgb(0, 0, 0);
  }
  .block6-text-box ul, li {
    color: #000000;
  }
  .block6-menu .block6-item {
    position: relative;
    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;
    margin-bottom: 5px;
  }
  .block6-menu {
    margin: 30px 30px;
  }
  /* 点線 */
  .block6-menu .block6-item::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 100%;
    border-bottom: dotted 2px #000000;
  }
  .block6-menu .block6-item .block6-name, .block6-menu .block6-item .block6-price {
    display: inline-block;
    /* 周りの背景色と同色にします */
    background-color: #ffffff;
    position: relative;
    z-index: 3;
  }
  .block6-menu .block6-item .block6-name {
    padding-right: 5px;
  }
  .block6-menu .block6-item .block6-price {
    padding-left: 5px;
  }
  .block6-zei-box {
    width: 90%;
    margin: 0 auto;
  }
  .block6-zeibetsu {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .block6-zeibetsu p1 {
    color: #000000;
  }
  .block6-space {
    padding: 0px 0% 120px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
  }
  .block6-triangle {
    background-color: #ec6948;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block7 - 最新情報 */
  .block7 {
    background-color: #ffffff;
    padding: 60px 0%;
  }
  .block7-inner {
    width: 80%;
    margin: 0 auto;
  }
  .block7-title {
    width: 100%;
    margin: 0 auto;
  }
  .block7-title img {
    width: 100%;
    height: auto;
  }
  .block7-text {
    width: 100%;
    margin: 30px 0px;
    text-align: center;
  }
  .block7-text p1 {
    color: #000000;
  }
  .button-i a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .button-i a:before {
    content: "\f16d";
    position: relative;
    font-family: "Font Awesome 5 Brands";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.5s ease-in-out;
  }
  .button-i a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-i a:hover:before {
    color: #000;
  }
  /* block8 */
  .block8 {
    background-color: #f2c335;
    padding: 80px 0;
  }
  .block8-inner {
    width: 80%;
    margin: 0 auto;
  }
  .block8-title {
    width: 100%;
    margin: 0 auto;
  }
  .block8-title img {
    width: 100%;
    height: auto;
  }
  .block8-text {
    width: 100%;
    margin: 30px 0px;
    text-align: center;
  }
  .block8-text p1 {
    color: #000000;
  }
  .block8-link {
    margin: 0 auto;
  }
  .block8-link .button-w {
    margin: 0px 0px;
  }
  .block8-link .button-t {
    margin-top: 15px;
  }
  .button-w a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .button-w a:before {
    content: "\f0c6";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .button-w a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-w a:hover:before {
    color: #000;
  }
  .button-t a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .button-t a:before {
    content: "\f879";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .button-t a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-t a:hover:before {
    color: #000;
  }
  /* block9 */
  .block9 {
    background-color: #ffffff;
    padding: 80px 0;
  }
  .block9-inner {
    width: 90%;
    margin: 0 auto;
  }
  .block9-title {
    width: 100%;
    margin: 0 auto;
  }
  .block9-title img {
    width: 100%;
    height: auto;
  }
  .block9-title-text {
    text-align: left;
    margin: 30px 0 10px;
  }
  .block9-text {
    margin: 20px 0;
  }
  .block9-text p1, h2 {
    color: #000000;
  }
  .block9-l {
    width: 100%;
  }
  .block9-list {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    border: none;
  }
  .block9-list th, td, p3, a {
    color: #000000;
  }
  .block9-list tr {}
  .block9-list th, .block9-list td {
    vertical-align: top;
    display: block;
    padding: 8px 0;
  }
  .block9-list th {
    width: 100%;
    text-align: left;
  }
  .block9-list td {
    width: 100%;
    text-align: left;
  }
  .block9-r {
    width: 100%;
  }
  .block9-map {
    width: 100%;
    margin-top: 60px;
  }
  .block9-map iframe {
    width: 100%;
    height: 300px;
  }
  /* footer */
  .footer {
    background-color: #000000;
  }
  .footer-inner {
    width: 100%;
    margin: 0 auto;
    padding: 5px 0%;
  }
  .footer-copyright {
    text-align: center;
    padding: 0.5% 0;
  }
  .footer-copyright p2 {
    color: #ffffff;
  }
}
/* --------------------- */
/* ▼ b：タブレットのスタイル */
/* --------------------- */
@media (min-width: 768px) and (max-width: 1199px) {
  body {
    overflow: hidden;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  /*loader*/
  #loaderBg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: #ffffff;
    z-index: 300;
  }
  #loaderWrap {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 100vh;
    margin-top: -100px;
    margin-left: -150px;
    text-align: center;
    z-index: 301;
  }
  #loader {
    display: block;
  }
  #loader img {
    width: 300px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  p1, label, li, th, td {
    font-size: 16px;
  }
  p2 {
    font-size: 14px;
  }
  p3 {
    font-size: 12px;
  }
  address {
    font-size: 16px;
    text-decoration: none;
  }
  a {
    text-decoration: none;
  }
  .wrapper {
    min-width: 100vw;
    min-height: 100vh;
  }
  /* ヘッダー */
  #header {
    display: none;
  }
  /* 暖簾部分 */
  .top-noren {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 60px; /* トップの高さは適宜調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
  }
  .noren-photo {
    width: 100%;
    height: 60px; /* 暖簾の高さ */
    background-image: url("../../images/home/noren.png");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%; /* 高さに合わせて横を繰り返し */
    margin-top: 0px;
    z-index: 2;
  }
  /* メイン */
  .main {
    position: relative;
    overflow: hidden;
    width: 100vw;
  }
  /*トップスライダー*/
  .mainSlider {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: calc(100vh - 60px);
    z-index: 1;
    object-fit: cover;
  }
  .top-catch {
    position: absolute;
    top: calc(50% - 30px); /* ここを調整して、縦位置を下げる */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px; /* サイズを固定するならpxで */
    height: auto;
    z-index: 2; /* 焼肉画像より上に表示 */
  }
  .top-catch img {
    width: 100%; /* サイズは適宜調整 */
    height: auto;
  }
  #top-logo-sp {
    display: none;
  }
  #top-logo-section {
    position: absolute;
    z-index: 2;
    right: 30px;
    top: 20px;
  }
  #top-logo {}
  #top-logo img {
    max-height: 18vh;
    height: 18%;
  }
  #top-logo-button.fixed {
    position: fixed;
    z-index: 50;
    right: 30px;
    top: 200px;
    transition: top 1s ease, right 1s ease; /* ← スムーズな移動 */
  }
  #top-logo-button .top-button-i {
    margin-top: 10px;
  }
  #top-logo-button .top-button-w {
    margin-top: 10px;
  }
  #top-logo-button .top-button-t {
    margin-top: 10px;
  }
  .top-button-i a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .top-button-i a:before {
    content: "\f16d";
    position: relative;
    font-family: "Font Awesome 5 Brands";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.5s ease-in-out;
  }
  .top-button-i a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .top-button-i a:hover:before {
    color: #000;
  }
  .top-button-w a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .top-button-w a:before {
    content: "\f0c6";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .top-button-w a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .top-button-w a:hover:before {
    color: #000;
  }
  .top-button-t a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
  }
  .top-button-t a:before {
    content: "\f879";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .top-button-t a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .top-button-t a:hover:before {
    color: #000;
  }
  .single-item {
    width: 100%;
    height: auto;
  }
  .single-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .single-item-sp {
    display: none;
  }
  /* block1 */
  .block1 {
    padding: 150px 0% 50px;
    background-color: #ec6948;
  }
  .block1-inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  .block1-inner-box {
    max-width: calc(100% - 100px);
    margin: 0 auto;
    padding: 50px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 30;
  }
  .block1-inner-box img {
    width: 100%;
    object-fit: cover;
  }
  .block1-inner-box-smt {
    display: none;
  }
  .block1-inner-box-smt img {
    display: none;
  }
  .block1-photo-l-1 {
    position: absolute;
    z-index: 10;
    width: 700px;
    height: 700px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    left: 0;
    top: 0;
    transform: translate(-60%, -10%);
  }
  .block1-photo-l-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block1-photo-r-1 {
    position: absolute;
    z-index: 10;
    width: 400px;
    height: 400px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    right: 0;
    top: 0;
    transform: translate(60%, 10%);
  }
  .block1-photo-r-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block1-photo-r-2 {
    position: absolute;
    z-index: 10;
    width: 250px;
    height: 250px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    right: 0;
    top: 0;
    transform: translate(20%, 140%);
  }
  .block1-photo-r-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* block2 */
  .block2 {
    padding: 50px 0% 90px;
    background-color: #ec6948;
  }
  .block2-inner {
    width: 60%;
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  .block2-inner img {
    width: 100%;
    height: auto;
  }
  .block2-space {
    padding: 0px 0% 120px;
    background-color: #f2c335;
    position: relative;
    z-index: 0;
  }
  .block2-triangle {
    background-color: #ec6948;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block3 */
  .block3-title {
    background-color: #f2c335;
    position: relative;
    padding: 60px 0 30px;
  }
  /* block3 */
  .block3 {
    background-color: #f2c335;
    position: relative;
    z-index: 0;
    padding-bottom: 30px;
  }
  .block3-inner-text-title {
    width: 100%;
    padding: 0px 0 0px;
    margin: 0 auto;
    text-align: center;
  }
  .block3-inner-text-title img {
    width: 35%;
    height: auto;
  }
  .block3-inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 30px 0 30px;
  }
  .block3-inner-text-box {
    width: 100%;
  }
  .block3-inner-text-box-title {
    width: 100%;
  }
  .block3-inner-text-box-title img {
    width: 55%;
    height: auto;
  }
  .block3-inner-text-box hr {
    width: 100%;
    margin: 20px 0;
    background-color: #000000;
  }
  .block3-inner-text-box-text {
    width: 90%;
  }
  .block3-inner-text-box-text p1 {
    color: #000000;
  }
  .block3-ContentOver-box {
    margin-top: 30px;
    width: 100%;
  }
  .block3-photo {
    width: 100%;
  }
  .block3-photo img {
    width: 1000px;
    height: 300px;
    transform: translateX(0%);
    object-fit: cover;
  }
  .block5-space {
    padding: 0px 0% 120px;
    background-color: #ec6948;
    position: relative;
    z-index: 0;
  }
  .block5-triangle {
    background-color: #f2c335;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block6 */
  .block6 {
    background-color: #ec6948;
    position: relative;
    padding: 60px 0% 60px;
  }
  .block6-title {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .block6-title img {
    height: 50px;
    width: auto;
  }
  .block6-title-smt {
    display: none;
  }
  .block6-title-smt img {
    display: none;
  }
  .block6-box {
    width: 80%;
    margin: 30px auto 60px;
  }
  .block6-text-box {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0px;
    background-color: #ffffff;
    margin: 0 auto;
    box-shadow: 15px 15px 0px 0 rgb(0, 0, 0);
  }
  .block6-text-box ul, li {
    color: #000000;
  }
  .block6-menu .block6-item {
    position: relative;
    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;
    margin-bottom: 5px;
  }
  .block6-menu {
    margin: 50px 70px;
  }
  /* 点線 */
  .block6-menu .block6-item::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 100%;
    border-bottom: dotted 2px #000000;
  }
  .block6-menu .block6-item .block6-name, .block6-menu .block6-item .block6-price {
    display: inline-block;
    /* 周りの背景色と同色にします */
    background-color: #ffffff;
    position: relative;
    z-index: 3;
  }
  .block6-menu .block6-item .block6-name {
    padding-right: 5px;
  }
  .block6-menu .block6-item .block6-price {
    padding-left: 5px;
  }
  .block6-zei-box {
    width: 80%;
    margin: 0 auto;
  }
  .block6-zeibetsu {
    width: 100%;
    margin: 0 auto;
    text-align: right;
  }
  .block6-zeibetsu p1 {
    color: #000000;
  }
  .block6-space {
    padding: 0px 0% 120px;
    background-color: #ffffff;
    position: relative;
    z-index: 0;
  }
  .block6-triangle {
    background-color: #ec6948;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block7 - 最新情報 */
  .block7 {
    background-color: #ffffff;
    padding: 60px 0%;
  }
  .block7-inner {
    width: 80%;
    margin: 0 auto;
  }
  .block7-title {
    text-align: center;
  }
  .block7-title img {
    height: 50px;
    width: auto;
  }
  .block7-text {
    width: 100%;
    margin: 30px 0px;
    text-align: center;
  }
  .block7-text p1 {
    color: #000000;
  }
  .button-i a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 18px;
  }
  .button-i a:before {
    content: "\f16d";
    position: relative;
    font-family: "Font Awesome 5 Brands";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.5s ease-in-out;
  }
  .button-i a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-i a:hover:before {
    color: #000;
  }
  /* block8 */
  .block8 {
    background-color: #f2c335;
    padding: 60px 0 80px;
  }
  .block8-inner {
    width: 80%;
    margin: 0 auto;
  }
  .block8-title {
    text-align: center;
  }
  .block8-title img {
    height: 50px;
    width: auto;
  }
  .block8-text {
    width: 100%;
    margin: 30px 0px;
    text-align: center;
  }
  .block8-text p1 {
    color: #000000;
  }
  .block8-link {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .block8-link .button-w {
    margin: 0px 10px;
  }
  .block8-link .button-t {
    margin: 0px 10px;
  }
  .button-w a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 18px;
  }
  .button-w a:before {
    content: "\f0c6";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .button-w a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-w a:hover:before {
    color: #000;
  }
  .button-t a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 18px;
  }
  .button-t a:before {
    content: "\f879";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .button-t a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-t a:hover:before {
    color: #000;
  }
  /* block9 */
  .block9 {
    background-color: #ffffff;
    padding: 60px 0;
  }
  .block9-inner {
    width: 80%;
    margin: 0 auto;
  }
  .block9-title {
    text-align: center;
  }
  .block9-title img {
    height: 50px;
    width: auto;
  }
  .block9-title-text {
    text-align: center;
    margin: 60px 0 40px;
  }
  .block9-text {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
  }
  .block9-text p1, h2 {
    color: #000000;
  }
  .block9-l {
    width: 50%;
  }
  .block9-list {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    border: none;
  }
  .block9-list th, td, p3, a {
    color: #000000;
  }
  .block9-list tr {}
  .block9-list th, .block9-list td {
    vertical-align: top;
    display: block;
    padding: 8px 0;
  }
  .block9-list th {
    width: 100%;
    text-align: left;
  }
  .block9-list td {
    width: 100%;
    text-align: left;
  }
  .block9-r {
    width: 50%;
  }
  .block9-map {
    width: 100%;
  }
  .block9-map iframe {
    width: 100%;
    height: 300px;
  }
  /* footer */
  .footer {
    background-color: #000000;
  }
  .footer-inner {
    width: 100%;
    margin: 0 auto;
    padding: 5px 0%;
  }
  .footer-copyright {
    text-align: center;
    padding: 0.5% 0;
  }
  .footer-copyright p2 {
    color: #ffffff;
  }
}
/* --------------------- */
/* ▼ c：PC専用のスタイル */
/* --------------------- */
@media (min-width: 1200px) {
  body {
    overflow: hidden;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  /*loader*/
  #loaderBg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: #ffffff;
    z-index: 300;
  }
  #loaderWrap {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 100vh;
    margin-top: -100px;
    margin-left: -200px;
    text-align: center;
    z-index: 301;
  }
  #loader {
    display: block;
  }
  #loader img {
    width: 400px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  p1, label, li, th, td {
    font-size: 18px;
  }
  p2 {
    font-size: 14px;
  }
  p3 {
    font-size: 12px;
  }
  address {
    font-size: 16px;
    text-decoration: none;
  }
  a {
    text-decoration: none;
  }
  .wrapper {
    min-width: 100vw;
    min-height: 100vh;
  }
  /* ヘッダー */
  #header {
    display: none;
  }
  /* 暖簾部分 */
  .top-noren {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 60px; /* トップの高さは適宜調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
  }
  .noren-photo {
    width: 100%;
    height: 60px; /* 暖簾の高さ */
    background-image: url("../../images/home/noren.png");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%; /* 高さに合わせて横を繰り返し */
    margin-top: 0px;
    z-index: 2;
  }
  /* メイン */
  .main {
    position: relative;
    overflow: hidden;
    width: 100vw;
  }
  /*トップスライダー*/
  .mainSlider {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: calc(100vh - 60px);
    z-index: 1;
    object-fit: cover;
  }
  .top-catch {
    position: absolute;
    top: calc(50% - 30px); /* ここを調整して、縦位置を下げる */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px; /* サイズを固定するならpxで */
    height: auto;
    z-index: 2; /* 焼肉画像より上に表示 */
  }
  .top-catch img {
    width: 100%; /* サイズは適宜調整 */
    height: auto;
  }
  #top-logo-sp {
    display: none;
  }
  #top-logo-section {
    position: absolute;
    z-index: 2;
    right: 40px;
    top: 20px;
  }
  #top-logo {}
  #top-logo img {
    max-height: 25vh;
    height: 25%;
  }
  #top-logo-button.fixed {
    position: fixed;
    z-index: 50;
    right: 40px;
    top: 20px;
    transition: top 1s ease, right 1s ease; /* ← スムーズな移動 */
  }
  #top-logo-button .top-button-i {
    margin-top: 10px;
  }
  #top-logo-button .top-button-w {
    margin-top: 10px;
  }
  #top-logo-button .top-button-t {
    margin-top: 10px;
  }
  .top-button-i a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 18px;
  }
  .top-button-i a:before {
    content: "\f16d";
    position: relative;
    font-family: "Font Awesome 5 Brands";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.5s ease-in-out;
  }
  .top-button-i a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .top-button-i a:hover:before {
    color: #000;
  }
  .top-button-w a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 18px;
  }
  .top-button-w a:before {
    content: "\f0c6";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .top-button-w a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .top-button-w a:hover:before {
    color: #000;
  }
  .top-button-t a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 18px;
  }
  .top-button-t a:before {
    content: "\f879";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .top-button-t a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .top-button-t a:hover:before {
    color: #000;
  }
  .single-item {
    width: 100%;
    height: auto;
  }
  .single-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .single-item-sp {
    display: none;
  }
  /* block1 */
  .block1 {
    padding: 150px 0% 50px;
    background-color: #ec6948;
  }
  .block1-inner {
    width: 100vw;
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  .block1-inner-box {
    max-width: calc(1200px - 120px);
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 30;
  }
  .block1-inner-box img {
    width: 100%;
    object-fit: cover;
  }
  .block1-inner-box-smt {
    display: none;
  }
  .block1-inner-box-smt img {
    display: none;
  }
  .block1-photo-l-1 {
    position: absolute;
    z-index: 10;
    width: 700px;
    height: 700px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    left: 0;
    top: 0;
    transform: translate(-30%, -10%);
  }
  .block1-photo-l-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block1-photo-r-1 {
    position: absolute;
    z-index: 10;
    width: 400px;
    height: 400px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    right: 0;
    top: 0;
    transform: translate(20%, 10%);
  }
  .block1-photo-r-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .block1-photo-r-2 {
    position: absolute;
    z-index: 10;
    width: 300px;
    height: 300px;
    border-radius: 50%; /* 円形にする */
    overflow: hidden; /* はみ出た部分を非表示 */
    right: 0;
    top: 0;
    transform: translate(-70%, 110%);
  }
  .block1-photo-r-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* block2 */
  .block2 {
    padding: 50px 0% 60px;
    background-color: #ec6948;
  }
  .block2-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 30;
  }
  .block2-inner img {
    width: 100%;
    height: auto;
  }
  .block2-space {
    padding: 0px 0% 120px;
    background-color: #f2c335;
    position: relative;
    z-index: 0;
  }
  .block2-triangle {
    background-color: #ec6948;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block3 */
  .block3-title {
    background-color: #f2c335;
    padding: 100px 0 60px;
    position: relative;
    z-index: 0;
  }
  /* block3 */
  .block3 {
    background-color: #f2c335;
    position: relative;
    z-index: 0;
  }
  .block3-inner-text-title {
    width: 25%;
    padding: 0px 0 0px;
    margin: 0 auto;
  }
  .block3-inner-text-title img {
    width: 100%;
    height: auto;
  }
  .block3-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 30px 0 60px;
  }
  .block3-inner-text-box {
    width: 50%;
  }
  .block3-inner-text-box-title {
    width: 100%;
  }
  .block3-inner-text-box-title img {
    width: 90%;
    height: auto;
  }
  .block3-inner-text-box hr {
    width: 100%;
    margin: 20px 0;
    background-color: #000000;
  }
  .block3-inner-text-box-text {
    width: 90%;
  }
  .block3-inner-text-box-text p1 {
    color: #000000;
  }
  .block3-ContentOver-box {
    overflow: visible;
    width: 50%;
  }
  .block3-photo {
    width: 1000px;
    height: 400px;
    transform: translateX(50%);
  }
  .block3-photo img {
    width: 1000px;
    height: 400px;
    transform: translateX(-50%);
    object-fit: cover;
  }
  .block5-space {
    padding: 0px 0% 120px;
    background-color: #ec6948;
    position: relative;
    z-index: 0;
  }
  .block5-triangle {
    background-color: #f2c335;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block6 */
  .block6 {
    background-color: #ec6948;
    position: relative;
    padding: 100px 0% 60px;
  }
  .block6-title {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .block6-title img {
    height: 70px;
    width: auto;
  }
  .block6-title-smt {
    display: none;
  }
  .block6-title-smt img {
    display: none;
  }
  .block6-box {
    max-width: 1200px;
    margin: 30px auto 60px;
  }
  .block6-text-box {
    max-width: 800px;
    border: 1px solid #ddd;
    border-radius: 0px;
    background-color: #ffffff;
    margin: 0 auto;
    box-shadow: 15px 15px 0px 0 rgb(0, 0, 0);
  }
  .block6-text-box ul, li {
    color: #000000;
  }
  .block6-menu .block6-item {
    position: relative;
    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;
    margin-bottom: 5px;
  }
  .block6-menu {
    margin: 50px 70px;
  }
  /* 点線 */
  .block6-menu .block6-item::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 100%;
    border-bottom: dotted 2px #000000;
  }
  .block6-menu .block6-item .block6-name, .block6-menu .block6-item .block6-price {
    display: inline-block;
    /* 周りの背景色と同色にします */
    background-color: #ffffff;
    position: relative;
    z-index: 3;
  }
  .block6-menu .block6-item .block6-name {
    padding-right: 5px;
  }
  .block6-menu .block6-item .block6-price {
    padding-left: 5px;
  }
  .block6-photo-box {
    overflow: visible; /* はみ出しOKにする */
    position: relative;
  }
  .block6-zei-box {
    max-width: 1200px;
    margin: 0 auto;
  }
  .block6-zeibetsu {
    max-width: 800px;
    margin: 0 auto;
    text-align: right;
  }
  .block6-zeibetsu p1 {
    color: #000000;
  }
  .block6-space {
    padding: 0px 0% 120px;
    background-color: #ffffff;
    position: relative;
    z-index: 0;
  }
  .block6-triangle {
    background-color: #ec6948;
    height: 240px;
    width: 100%;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    z-index: 2;
    bottom: 0;
  }
  /* block7 - 最新情報 */
  .block7 {
    background-color: #ffffff;
    padding: 100px 0%;
  }
  .block7-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .block7-title {
    text-align: center;
  }
  .block7-title img {
    height: 70px;
    width: auto;
  }
  .block7-text {
    width: 100%;
    margin: 30px 0px;
    text-align: center;
  }
  .block7-text p1 {
    color: #000000;
  }
  .button-i a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 20px;
  }
  .button-i a:before {
    content: "\f16d";
    position: relative;
    font-family: "Font Awesome 5 Brands";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.5s ease-in-out;
  }
  .button-i a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-i a:hover:before {
    color: #000;
  }
  /* block8 */
  .block8 {
    background-color: #f2c335;
    padding: 100px 0;
  }
  .block8-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .block8-title {
    text-align: center;
  }
  .block8-title img {
    height: 70px;
    width: auto;
  }
  .block8-text {
    width: 100%;
    margin: 30px 0px;
    text-align: center;
  }
  .block8-text p1 {
    color: #000000;
  }
  .block8-link {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .block8-link .button-w {
    margin: 0px 10px;
  }
  .block8-link .button-t {
    margin: 0px 10px;
  }
  .button-w a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 20px;
  }
  .button-w a:before {
    content: "\f0c6";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .button-w a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000;
  }
  .button-w a:hover:before {
    color: #000;
  }
  .button-t a {
    background: #e83828;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 20px;
  }
  .button-t a:before {
    content: "\f879";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 12px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .button-t a:hover {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #000000;
  }
  .button-t a:hover:before {
    color: #000;
  }
  /* block9 */
  .block9 {
    background-color: #ffffff;
    padding: 100px 0;
  }
  .block9-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .block9-title {
    text-align: center;
  }
  .block9-title img {
    height: 70px;
    width: auto;
  }
  .block9-title-text {
    text-align: center;
    margin: 60px 0 40px;
  }
  .block9-text {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
  }
  .block9-text p1, h2 {
    color: #000000;
  }
  .block9-l {
    width: 50%;
  }
  .block9-list {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    border: none;
  }
  .block9-list th, td, p3, a {
    color: #000000;
  }
  .block9-list tr {}
  .block9-list th, .block9-list td {
    vertical-align: top;
    display: block;
    padding: 8px 0;
  }
  .block9-list th {
    width: 100%;
    text-align: left;
  }
  .block9-list td {
    width: 100%;
    text-align: left;
  }
  .block9-r {
    width: 50%;
  }
  .block9-map {
    width: 100%;
  }
  .block9-map iframe {
    width: 100%;
    height: 300px;
  }
  /* footer */
  .footer {
    background-color: #000000;
  }
  .footer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 5px 0%;
  }
  .footer-copyright {
    text-align: center;
    padding: 0.5% 0;
  }
  .footer-copyright p2 {
    color: #ffffff;
  }
}