@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-break: break-all;
  line-break: strict;
  -webkit-hyphens: auto;
          hyphens: auto;
  text-align: justify;
  line-height: 1.8rem;
}

html {
  overflow-y: scroll;
}

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

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

fieldset, img {
  border: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body, div, dl, dt, dd, ul, ol, li, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

h1, h2 {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
}

/* ------------------------------------- 
  header common
------------------------------------- */
header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 9996;
  background: #FFFFFF;
  box-sizing: border-box;
  width: 100%;
  height: 118px;
  padding: 0 30px;
  transition: all 0.3s;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
}
header .logo {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
  max-width: 140px;
  transition: all 0.3s;
}
header .logo a:hover {
  opacity: 1;
}
header .box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
}
header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header nav ul li {
  border-right: 1px solid #1a1a1a;
  padding: 0 24px;
}
header nav ul li:first-child {
  padding-left: 0;
}
header nav ul li:last-child {
  border: none;
  padding-right: 0;
}
header nav ul li a {
  font-weight: bold;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
}
header .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .tel p {
  font-weight: bold;
}
header .tel p a {
  font-size: 1.75rem;
  letter-spacing: 0;
}
header .tel table th, header .tel table td {
  letter-spacing: 0;
  line-height: 1.8rem;
}
header .tel table th {
  padding-right: 10px;
}
@media screen and (max-width: 1366px) {
  header {
    height: 108px;
    padding: 0 25px;
  }
  header .logo {
    top: 25px;
    left: 25px;
  }
  header .box {
    gap: 40px;
  }
  header nav ul li {
    padding: 0 20px;
  }
  header nav ul li a {
    font-size: 1rem;
  }
  header .tel p {
    font-size: 1rem;
  }
  header .tel p a {
    font-size: 1.5625rem;
  }
  header .tel table th, header .tel td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1280px) {
  header {
    padding: 0 90px 0 0;
    height: 60px;
  }
  header .logo {
    top: 20px;
    left: 20px;
    max-width: 120px;
  }
  header .box {
    display: block;
  }
  header .tel p a {
    font-size: 1.4375rem;
  }
  header .tel table th, header .tel table td {
    font-size: 0.875rem;
    line-height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding-right: 85px !important;
  }
  header .logo {
    max-width: 80px;
  }
  header .tel p a {
    font-size: 1.125rem;
  }
  header .tel table th, header .tel table td {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  header .logo {
    top: 10px;
    left: 10px;
  }
  header .tel {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
  header .tel p {
    font-size: 0.875rem;
  }
  header .tel p a {
    font-size: 1rem;
  }
  header .tel table th, header .tel table td {
    font-size: 0.625rem;
    line-height: 0.8rem;
  }
}

/* スクロール後のレイアウト指定 ********************/
header.scroll {
  height: 70px;
}
header.scroll .logo {
  top: 15px;
  left: 15px;
  max-width: 100px;
}
@media screen and (max-width: 1280px) {
  header.scroll {
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  header.scroll .logo {
    max-width: 80px;
  }
}
@media screen and (max-width: 480px) {
  header.scroll .logo {
    top: 10px;
    left: 10px;
  }
}

/*  top-header　TOPページヘッダーの個別指定 ********************/
.top-header {
  top: -200px;
}
.top-header.active {
  top: 0;
}
@media screen and (max-width: 960px) {
  .top-header {
    top: 0;
  }
}

/* ------------------------------------- 
  header menu sp／spヘッダ－メニュー
------------------------------------- */
.hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  background: #1a1a1a;
  width: 70px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  /* スマホメニューを開いてる時のボタン */
}
.hamburger span {
  display: block;
  position: absolute;
  left: 20px;
  width: 30px;
  height: 1px;
  background: #FFFFFF;
  transition: 0.5s all;
}
.hamburger span:nth-child(1) {
  top: 28px;
}
.hamburger span:nth-child(2) {
  top: 32px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(2) {
  top: 28px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
}

/* メニュー背景　**************************/
.globalMenuSp {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s;
  height: 100vh;
  /* クリックでjQueryで追加・削除 */
}
.globalMenuSp .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.globalMenuSp h2, .globalMenuSp a, .globalMenuSp p {
  color: #1a1a1a;
}
.globalMenuSp nav ul {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin: 70px auto;
}
.globalMenuSp nav ul li {
  border: none;
  position: relative;
  padding: 0;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  transition: 0.4s all;
}
.globalMenuSp nav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  width: 0.5px;
  height: 24px;
}
.globalMenuSp nav ul li a {
  margin-top: 30px;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: bold;
  font-size: 1.125rem;
}
.globalMenuSp .tel {
  flex-direction: column;
}
.globalMenuSp .link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 30px auto 0;
}
.globalMenuSp .link a {
  position: relative;
  display: block;
  background: #AC321C;
  border-radius: 5px;
  width: 200px;
  line-height: 54px;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
}
.globalMenuSp .link a span {
  position: absolute;
  top: 15px;
  left: 13px;
  max-width: 24px;
}
.globalMenuSp.active {
  opacity: 100;
  display: block;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .globalMenuSp .tel p a {
    font-size: 1.4375rem;
  }
  .globalMenuSp .tel table th, .globalMenuSp .tel table td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .globalMenuSp nav ul {
    gap: 15px;
  }
  .globalMenuSp .tel {
    align-items: center;
    gap: 10px;
  }
  .globalMenuSp .tel p a {
    font-size: 1.4375rem;
  }
  .globalMenuSp .tel table th, .globalMenuSp .tel table td {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .globalMenuSp .link {
    flex-direction: column;
  }
  .globalMenuSp .link a {
    width: 250px;
  }
}

/* ------------------------------------- 
  font・text
------------------------------------- */
/* font ******/
body, div, dl, dt, dd, ul, ol, li, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  color: #1a1a1a;
  letter-spacing: 0.1rem;
}

h1, h2 {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.5rem;
  line-height: 2.5rem;
}

h3 {
  line-height: 2rem;
}

p, dl, dt, li, th, td {
  line-height: 2rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.125rem;
}

p, dl, dt, li, th, td {
  font-size: 1.125rem;
}

@media screen and (max-width: 960px) {
  h3 {
    line-height: 1.8rem;
  }
  p, dl, dt, li, th, td {
    line-height: 1.8rem;
  }
  h1 {
    font-size: 2.1875rem;
  }
  h2 {
    font-size: 2.1875rem;
  }
  h3 {
    font-size: 1rem;
  }
  p, dl, dt, li, th, td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    line-height: 1.6rem;
  }
  p, dl, dt, li, th, td {
    line-height: 1.6rem;
  }
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 0.875rem;
  }
  p, dl, dt, li, th, td {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.4375rem;
  }
  h2 {
    font-size: 1.4375rem;
  }
}
/* text ******/
.txt_bold {
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

.txt_black {
  color: #000000 !important;
}

.txt_black2 {
  color: #1a1a1a !important;
}

.txt_gray {
  color: #2f2f2f !important;
}

.txt_gold {
  color: #B59656 !important;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

/* ------------------------------------- 
  a
------------------------------------- */
a {
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* ------------------------------------- 
  layout
------------------------------------- */
section {
  width: 100%;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* PC SP ******/
.sp-480, .sp, .sp-960, .sp-1024, .sp-1280, .sp-1366, .sp-1440 {
  display: none !important;
}

@media (max-width: 1440px) {
  .sp-1440 {
    display: block !important;
  }
  .pc-1440 {
    display: none !important;
  }
}
@media (max-width: 1366px) {
  .sp-1366 {
    display: block !important;
  }
  .pc-1366 {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .sp-1280 {
    display: block !important;
  }
  .pc-1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
/* ------------------------------------- 
  button
------------------------------------- */
.button, .button-blank {
  position: relative;
  display: block;
  background: #000000;
  max-width: 472px;
  width: 70%;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  text-align: center;
  line-height: 70px;
  z-index: 0;
}
.button::after, .button-blank::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.button::after {
  right: 20px;
  background: url(../images/linkbtn_arrow.png) no-repeat;
  background-size: 100%;
  width: 10px;
  height: 18px;
}

.button-blank::after {
  right: 30px;
  background: url(../images/concept_menuichiran.png) no-repeat;
  background-size: 100%;
  width: 26px;
  height: 22px;
}

@media screen and (max-width: 960px) {
  .button, .button-blank {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .button, .button-blank {
    font-size: 1rem;
    line-height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .button, .button-blank {
    width: 80%;
  }
}
/* ------------------------------------- 
  phone
------------------------------------- */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------- 
  main common
------------------------------------- */
main {
  position: relative;
  padding-bottom: 200px;
}

.otoriyose-btn {
  position: fixed;
  max-width: 80px;
  bottom: 80px;
  right: 0;
  z-index: 9995;
}

@media screen and (max-width: 1366px) {
  .otoriyose-btn {
    max-width: 60px;
  }
}
@media screen and (max-width: 960px) {
  main {
    padding-bottom: 150px;
  }
  .otoriyose-btn {
    max-width: 50px;
    bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .otoriyose-btn {
    max-width: 40px;
    bottom: 70px;
  }
}
/* ------------------------------------- 
  page common
------------------------------------- */
.page-mv {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 118px;
}
.page-mv--title {
  position: relative;
  top: 52%;
  transform: translateY(-48%);
  z-index: 1;
  text-align: center;
}
.page-mv--title h1 {
  display: inline-block;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  color: #FFFFFF;
  letter-spacing: 0.5rem;
}
.page-mv--bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.page-mv--bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-subtitle {
  margin-top: 110px;
}
.page-subtitle h2 {
  letter-spacing: 0.3rem;
  line-height: 4.5rem;
}
.page-subtitle p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  margin-top: 45px;
  line-height: 2.3rem;
}

@media screen and (max-width: 1536px) {
  .page-mv {
    height: 400px;
  }
}
@media screen and (max-width: 1366px) {
  .page-mv {
    margin-top: 108px;
    height: 300px;
  }
}
@media screen and (max-width: 1280px) {
  .page-mv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 960px) {
  .page-mv {
    height: 280px;
  }
  .page-subtitle {
    margin-top: 70px;
  }
  .page-subtitle h2 {
    letter-spacing: 0.3rem;
    line-height: 3.5rem;
  }
  .page-subtitle p {
    margin-top: 30px;
    line-height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-subtitle p {
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  .page-mv {
    height: 180px;
  }
  .page-subtitle {
    margin-top: 50px;
  }
  .page-subtitle h2 {
    letter-spacing: 0.2rem;
    line-height: 2.5rem;
  }
  .page-subtitle p {
    margin-top: 20px;
    line-height: 1.8rem;
  }
}
/* ------------------------------------- 
  page_top
------------------------------------- */
#page_top {
  position: fixed;
  width: 50px;
  right: 15px;
  z-index: 9995;
  transition: all 0.3s;
}
#page_top img {
  display: block;
  width: 100%;
}
#page_top p {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.2;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  #page_top {
    width: 40px;
  }
}

/* ------------------------------------- 
  footer common
------------------------------------- */
footer p, footer dt, footer dd, footer th, footer td, footer a {
  color: #FFFFFF;
}

/* ------------------------------------- 
  footer-infromation 店舗情報
------------------------------------- */
.footer-infromation {
  position: relative;
  background: url(../images/footer_bg.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  padding: 80px 0 70px;
}
.footer-infromation .title-wrap {
  position: absolute;
  top: 0;
  left: 5%;
}
.footer-infromation .title-wrap .title {
  display: flex;
  position: relative;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  text-align: center;
}
.footer-infromation .title-wrap .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #DBBF87;
  width: 0.5px;
  height: 130px;
}
.footer-infromation .title-wrap .title h2 {
  white-space: pre;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  display: inline-block;
  margin-top: 145px;
  color: #DBBF87;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer-infromation .title-wrap .title::before {
    height: 100px;
  }
  .footer-infromation .title-wrap .title h2 {
    margin-top: 115px;
  }
}
@media screen and (max-width: 480px) {
  .footer-infromation .title-wrap .title::before {
    height: 70px;
  }
  .footer-infromation .title-wrap .title h2 {
    margin-top: 85px;
    letter-spacing: 0.3rem;
  }
}
.footer-infromation h3 {
  max-width: 182px;
  margin: 0 auto;
}
.footer-infromation .tel {
  margin-top: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
.footer-infromation .tel a {
  margin-left: 10px;
}
.footer-infromation .detail {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
  width: 80%;
  margin: 60px auto 0;
}
.footer-infromation .detail .map, .footer-infromation .detail table {
  max-width: 590px;
  width: 49%;
}
.footer-infromation .detail .map iframe {
  width: 100%;
  aspect-ratio: 5.5/6;
  vertical-align: top;
}
.footer-infromation .detail table tr {
  border-top: 1px solid #FFFFFF;
}
.footer-infromation .detail table tr:last-child {
  border-bottom: 1px solid #FFFFFF;
}
.footer-infromation .detail table th, .footer-infromation .detail table td {
  padding: 10px 20px;
  letter-spacing: 0;
}
.footer-infromation .detail table th {
  background: #000000;
  width: 123px;
  text-align: center;
  font-weight: bold;
}
.footer-infromation .detail table td dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.footer-infromation .detail table td dl dt {
  max-width: 90px;
  width: 40%;
}
.footer-infromation .detail table td dl dd {
  width: 60%;
}
@media screen and (max-width: 960px) {
  .footer-infromation h3 {
    max-width: 150px;
  }
  .footer-infromation .tel {
    margin-top: 30px;
    font-size: 1.875rem;
  }
  .footer-infromation .detail {
    width: 85%;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .footer-infromation .detail .map {
    width: 50%;
  }
  .footer-infromation .detail .map iframe {
    aspect-ratio: 1/1;
  }
  .footer-infromation .detail table {
    max-width: 100%;
    width: 100%;
  }
  .footer-infromation .detail table th {
    width: 100px;
  }
  .footer-infromation .detail table td dl {
    max-width: 200px;
  }
  .footer-infromation .detail table td dl dt {
    max-width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .footer-infromation {
    padding: 60px 0;
  }
  .footer-infromation h3 {
    max-width: 120px;
  }
  .footer-infromation .tel {
    font-size: 1.5625rem;
  }
  .footer-infromation .detail {
    margin-top: 40px;
  }
  .footer-infromation .detail .map {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .footer-infromation {
    padding: 40px 0;
  }
  .footer-infromation h3 {
    max-width: 100px;
  }
  .footer-infromation .tel {
    margin-top: 20px;
    font-size: 1.25rem;
  }
  .footer-infromation .detail {
    margin-top: 30px;
  }
}

/* ------------------------------------- 
  footer-menu フッターメニュー
------------------------------------- */
.footer-menu {
  background: #1a1a1a;
  width: 100%;
  padding: 40px 0;
}
.footer-menu nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 40px;
}
.footer-menu nav ul li {
  line-height: 25px;
}
.footer-menu nav ul li a {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 1rem;
  font-weight: bold;
}
.footer-menu nav ul .instagram img {
  max-width: 25px;
}
.footer-menu .copyright {
  margin-top: 30px;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .footer-menu nav ul {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer-menu {
    padding: 30px 0 20px;
  }
  .footer-menu nav ul {
    flex-wrap: wrap;
    gap: 15px 30px;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  .footer-menu nav ul li {
    width: 20%;
    text-align: center;
  }
  .footer-menu .copyright {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .footer-menu nav ul li {
    width: 30%;
  }
}

/* ------------------------------------- 
  top-fv　メインビジュアル／メニュー
------------------------------------- */
.top-fv {
  background: url(../images/bg.jpg) repeat-y;
  background-size: 100%;
}
.top-fv--wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-height: 1100px;
  height: 100vh;
}
.top-fv__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 290px;
  height: 100%;
}
.top-fv__menu h1 {
  padding: 47px 0 34px;
  max-width: 182px;
  width: 63%;
}
.top-fv__menu h1 img {
  display: block;
  margin: 0 auto;
}
.top-fv__menu nav {
  width: 130px;
  margin: 0 auto;
}
.top-fv__menu nav ul {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
.top-fv__menu nav li {
  position: relative;
  text-align: center;
  writing-mode: vertical-rl;
  color: #000000;
  text-orientation: mixed;
}
.top-fv__menu nav li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  width: 0.5px;
  height: 24px;
}
.top-fv__menu nav li a {
  margin-top: 30px;
  display: inline-block;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: bold;
}
.top-fv__menu .colophon {
  width: 100%;
  margin-top: auto;
  padding: 0px 20px;
}
.top-fv__menu .colophon .tel p, .top-fv__menu .colophon dt, .top-fv__menu .colophon dd {
  letter-spacing: 0;
}
.top-fv__menu .colophon .tel p {
  font-weight: bold;
  text-align: center;
  color: #000000;
}
.top-fv__menu .colophon .tel p span {
  margin-left: 5px;
  font-size: 1.75rem;
}
.top-fv__menu .colophon .tel hr {
  border: none;
  background: #1a1a1a;
  height: 1px;
  width: 100%;
  margin: 10px 0;
}
.top-fv__menu .colophon .tel dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 182px;
  margin: 0 auto;
}
.top-fv__menu .colophon .tel dl dt, .top-fv__menu .colophon .tel dl dd {
  color: #000000;
}
.top-fv__menu .colophon .tel dl dt {
  width: 70px;
}
.top-fv__menu .colophon .tel dl dd {
  width: calc(100% - 70px);
}
.top-fv__menu .colophon .link {
  margin: 40px auto 0;
}
.top-fv__menu .colophon .link a {
  position: relative;
  display: block;
  background: #AC321C;
  border-radius: 5px;
  max-width: 254px;
  margin-bottom: 5px;
  line-height: 54px;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
}
.top-fv__menu .colophon .link a:last-child {
  margin-bottom: 0;
}
.top-fv__menu .colophon .link a span {
  position: absolute;
  top: 15px;
  left: 13px;
  max-width: 24px;
}
.top-fv__mv {
  width: calc(100% - 290px);
  height: 100%;
}
.top-fv__mv img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-fv__overview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 130px 0 150px;
}
.top-fv__overview::before, .top-fv__overview::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.top-fv__overview::before {
  background: url(../images/top/overview-l.png) no-repeat;
  background-size: contain;
  background-position: left;
}
.top-fv__overview::after {
  background: url(../images/top/overview-r.png) no-repeat;
  background-size: contain;
  background-position: right;
}
.top-fv__overview .wrap {
  position: relative;
  z-index: 2;
  width: 80%;
  margin: 0 auto;
}
.top-fv__overview .lead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 85px;
}
.top-fv__overview .lead h2 {
  white-space: pre;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: initial;
  color: #B59656;
  font-size: 3.125rem;
  line-height: 5rem;
}
.top-fv__overview .lead .txt {
  max-width: 940px;
}
.top-fv__overview .lead .txt p {
  margin-bottom: 30px;
  color: #2f2f2f;
  text-align: justify;
}
.top-fv__overview .lead .txt p:last-child {
  margin-bottom: 0;
}
.top-fv__overview .button {
  margin-top: 70px;
}
@media screen and (max-width: 1920px) {
  .top-fv__menu .colophon .link {
    margin: 30px auto 20px;
  }
}
@media screen and (max-width: 1440px) {
  .top-fv {
    background: url(../images/bg-1440.jpg) repeat-y;
    background-size: 100%;
  }
}
@media screen and (max-width: 1366px) {
  .top-fv__menu h1 {
    padding: 35px 0 20px;
  }
  .top-fv__menu nav ul {
    gap: 20px 20px;
  }
  .top-fv__menu .colophon .tel hr {
    margin: 5px 0;
  }
  .top-fv__menu .colophon dl dt, .top-fv__menu .colophon dl dd {
    line-height: 1.5rem;
  }
  .top-fv__menu .colophon .link {
    margin: 20px auto;
  }
}
@media screen and (max-width: 1280px) {
  .top-fv__menu h1 {
    width: 50%;
    padding: 25px 0 15px;
  }
  .top-fv__menu .colophon .link {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fv__overview {
    padding: 100px 0 120px;
  }
  .top-fv__overview .lead {
    align-items: flex-start;
    gap: 60px;
  }
}
@media screen and (max-width: 960px) {
  .top-fv--wrap {
    display: block;
    max-height: 360px;
    height: 50vh;
    margin-top: 60px;
  }
  .top-fv__mv {
    width: 100%;
  }
  .top-fv__overview {
    padding: 70px 0 90px;
  }
  .top-fv__overview .lead {
    gap: 50px;
  }
  .top-fv__overview .lead h2 {
    font-size: 2.1875rem;
    line-height: 3.5rem;
  }
  .top-fv__overview .lead .txt p {
    margin-bottom: 20px;
    line-height: 1.8rem;
  }
  .top-fv__overview .button {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-fv--wrap {
    max-height: 250px;
  }
  .top-fv__overview .wrap {
    width: 70%;
  }
  .top-fv__overview .lead {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .top-fv__overview .lead h2 {
    display: inline-block;
    font-feature-settings: initial;
    font-size: 1.6875rem;
    line-height: 2.7rem;
  }
  .top-fv__overview .button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .top-fv__overview {
    padding: 50px 0 70px;
  }
  .top-fv__overview .wrap {
    width: 80%;
  }
  .top-fv__overview .lead {
    gap: 30px;
  }
  .top-fv__overview .lead h2 {
    font-size: 1.4375rem;
    line-height: 2.3rem;
    letter-spacing: 0.3rem;
  }
  .top-fv__overview .button {
    margin-top: 40px;
  }
}

/* ------------------------------------- 
  top-menu お品書き
------------------------------------- */
.top-menu {
  position: relative;
  background: #1a1a1a url(../images/bg2.png) no-repeat;
  background-size: 100%;
  background-position: 0 100.5%;
  padding-bottom: 210px;
}
.top-menu .title-wrap .title {
  display: flex;
  position: relative;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
.top-menu .title-wrap .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #DBBF87;
  width: 0.5px;
  height: 130px;
}
.top-menu .title-wrap .title h2 {
  white-space: pre;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  display: inline-block;
  margin-top: 145px;
  color: #DBBF87;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-menu .title-wrap .title::before {
    height: 100px;
  }
  .top-menu .title-wrap .title h2 {
    margin-top: 115px;
  }
}
@media screen and (max-width: 480px) {
  .top-menu .title-wrap .title::before {
    height: 70px;
  }
  .top-menu .title-wrap .title h2 {
    margin-top: 85px;
    letter-spacing: 0.3rem;
  }
}
.top-menu .box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0px auto;
  padding-top: 140px;
}
.top-menu .box .img {
  position: relative;
  width: 50%;
}
.top-menu .box .img .sub {
  position: absolute;
  right: -14%;
  bottom: -13%;
  max-width: 452px;
  width: 47%;
}
.top-menu .box .txt {
  width: 31.9%;
  max-width: 614px;
  padding-left: 150px;
  box-sizing: content-box;
}
.top-menu .box .txt img {
  display: block;
  max-width: 130px;
  width: 21%;
  margin: 0 auto;
}
.top-menu .box .txt .w264 {
  max-width: 264px;
  width: 43%;
}
.top-menu .box .txt p {
  margin-top: 40px;
  color: #FFFFFF;
  text-align: center;
  line-height: 2.5rem;
}
.top-menu .box:nth-child(even) {
  flex-direction: row-reverse;
}
.top-menu .box:nth-child(even) .img .sub {
  right: auto;
  left: -14%;
}
.top-menu .box:nth-child(even) .txt {
  padding-left: 0;
  padding-right: 150px;
}
.top-menu .button-wrap {
  position: absolute;
  background: #FFFFFF;
  max-width: 492px;
  padding: 10px;
  width: 70%;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.top-menu .button-wrap .button {
  width: 100%;
}
@media screen and (max-width: 1366px) {
  .top-menu .box .txt {
    width: 27%;
  }
}
@media screen and (max-width: 1024px) {
  .top-menu .box {
    padding-top: 90px;
  }
  .top-menu .box .txt {
    padding-left: 110px;
  }
  .top-menu .box:nth-child(even) .txt {
    padding-left: 0;
    padding-right: 110px;
  }
}
@media screen and (max-width: 960px) {
  .top-menu {
    padding-bottom: 150px;
  }
  .top-menu .box .txt p {
    margin-top: 30px;
    line-height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-menu {
    padding-bottom: 100px;
  }
  .top-menu .box {
    flex-direction: column;
    padding-top: 50px;
  }
  .top-menu .box .img {
    width: 85%;
  }
  .top-menu .box .img .sub {
    right: -10%;
  }
  .top-menu .box .txt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 530px;
    width: 75%;
    margin: 40px auto 0 0;
    padding-left: 5%;
  }
  .top-menu .box .txt img {
    width: 60px;
  }
  .top-menu .box .txt .w264 {
    width: 120px;
  }
  .top-menu .box .txt p {
    max-width: 350px;
    margin-top: 20px;
    text-align: justify;
  }
  .top-menu .box:nth-child(even) {
    flex-direction: column;
  }
  .top-menu .box:nth-child(even) .img {
    margin: 0 0 0 auto;
  }
  .top-menu .box:nth-child(even) .img .sub {
    left: -10%;
  }
  .top-menu .box:nth-child(even) .txt {
    flex-direction: row-reverse;
    margin: 40px 0 0 auto;
    padding-left: 0%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 480px) {
  .top-menu {
    background-size: 180%;
  }
  .top-menu .box .txt {
    width: 90%;
  }
}

/* ------------------------------------- 
  top-information ご案内
------------------------------------- */
.top-information {
  display: grid;
  justify-content: center;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1800px;
  width: 94%;
  margin: 255px auto 0;
}
.top-information .box {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 900px;
  max-height: 1045px;
}
.top-information .box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  border: 1px solid #FFFFFF;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  box-sizing: border-box;
  z-index: 2;
}
.top-information .box .title {
  text-align: center;
  margin-bottom: 13%;
}
.top-information .box .title h2 {
  white-space: pre;
  font-size: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  display: inline-block;
  background: #FFFFFF;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  letter-spacing: 0.3rem;
  padding: 5.7% 4.4% 4.7%;
}
.top-information .box .lead {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: auto;
  min-height: 360px;
  padding: 7% 0;
}
.top-information .box .lead p {
  max-width: 614px;
  width: 70%;
  margin: 0 auto;
  color: #FFFFFF;
}
.top-information .box .lead .button {
  width: 70%;
  margin-top: auto;
  z-index: 3;
}
.top-information .enkai {
  background: url(../images/top/enkai.jpg) no-repeat;
  background-size: cover;
}
.top-information .otoriyose {
  background: url(../images/top/otoriyose.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1536px) {
  .top-information .box {
    max-height: 860px;
  }
  .top-information .box .lead {
    min-height: 300px;
  }
  .top-information .box .lead p {
    width: 80%;
  }
}
@media screen and (max-width: 1280px) {
  .top-information .box {
    max-height: 720px;
  }
  .top-information .box .title {
    margin-bottom: 10%;
  }
  .top-information .box .title h2 {
    letter-spacing: 0.2rem;
    padding: 5% 4% 4%;
  }
  .top-information .box .lead {
    min-height: 270px;
  }
}
@media screen and (max-width: 1024px) {
  .top-information {
    margin-top: 230px;
  }
}
@media screen and (max-width: 960px) {
  .top-information {
    margin-top: 180px;
  }
  .top-information .box .title h2 {
    letter-spacing: 0.1rem;
  }
  .top-information .box .lead {
    padding: 5% 0 9%;
  }
  .top-information .box .lead p {
    line-height: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .top-information {
    margin-top: 120px;
    grid-template-columns: repeat(1, 1fr);
  }
  .top-information .box {
    width: 100%;
  }
  .top-information .box .lead {
    display: block;
    min-height: auto;
    padding: 40px 0;
  }
  .top-information .box .lead p {
    max-width: 400px;
  }
  .top-information .box .lead .button {
    max-width: 350px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .top-information {
    margin-top: 100px;
  }
}

/* ------------------------------------- 
  introduction-store 店内紹介
------------------------------------- */
.introduction-store {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  margin-top: 230px;
}
.introduction-store .title-wrap {
  position: absolute;
  top: 0;
  left: 91%;
}
.introduction-store .title-wrap .title {
  display: flex;
  position: relative;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  text-align: center;
}
.introduction-store .title-wrap .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #2f2f2f;
  width: 0.5px;
  height: 130px;
}
.introduction-store .title-wrap .title h2 {
  white-space: pre;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  display: inline-block;
  margin-top: 145px;
  color: #2f2f2f;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .introduction-store .title-wrap .title::before {
    height: 100px;
  }
  .introduction-store .title-wrap .title h2 {
    margin-top: 115px;
  }
}
@media screen and (max-width: 480px) {
  .introduction-store .title-wrap .title::before {
    height: 70px;
  }
  .introduction-store .title-wrap .title h2 {
    margin-top: 85px;
    letter-spacing: 0.3rem;
  }
}
.introduction-store .store-slider {
  width: 53.5%;
}
.introduction-store .slick-dots {
  bottom: 5px;
  right: 10px;
  margin: 0 0 0 auto;
  width: auto;
}
.introduction-store .slick-dots li {
  margin: 0;
}
.introduction-store .slick-dots li button::before,
.introduction-store .slick-dots li.slick-active button:before {
  color: #FFFFFF;
}
.introduction-store .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.introduction-store .detail {
  width: 44%;
  padding-right: 13%;
}
.introduction-store .detail p {
  max-width: 606px;
}
.introduction-store .detail img {
  display: block;
  max-width: 542px;
  margin: 104px auto 0;
}
@media screen and (max-width: 1920px) {
  .introduction-store .store-slider {
    max-width: 1030px;
  }
}
@media screen and (max-width: 1440px) {
  .introduction-store .detail .box img {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .introduction-store {
    flex-direction: column;
    margin-top: 200px;
  }
  .introduction-store .title-wrap {
    left: 86%;
  }
  .introduction-store .store-slider {
    width: 80%;
  }
  .introduction-store .detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 100%;
    width: 80%;
    margin: 0 auto 0 0;
    padding: 0;
  }
  .introduction-store .detail p {
    width: 55%;
    padding-left: 5%;
  }
  .introduction-store .detail img {
    width: 45%;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 960px) {
  .introduction-store {
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .introduction-store {
    margin-top: 100px;
  }
  .introduction-store .title-wrap {
    left: 85%;
  }
  .introduction-store .detail {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  .introduction-store .detail p {
    width: 100%;
    padding-left: 0%;
  }
  .introduction-store .detail img {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .introduction-store {
    margin-top: 70px;
    gap: 30px;
  }
  .introduction-store .title-wrap {
    left: 82%;
  }
  .introduction-store .detail {
    gap: 30px;
  }
}

/* ------------------------------------- 
  concept-salutatio 挨拶
------------------------------------- */
.concept-salutation {
  display: none;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.concept-salutation h2, .concept-salutation p {
  color: #2f2f2f;
}
@media screen and (max-width: 768px) {
  .concept-salutation {
    height: 300px;
  }
}

/* ------------------------------------- 
  concept-detail
------------------------------------- */
.concept-detail {
  margin-top: 180px;
}

.concept-detail .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 110px;
  width: 90%;
  margin: 140px 0 0 auto;
  box-sizing: content-box;
}
.concept-detail .box .txt {
  width: 40%;
}
.concept-detail .box .txt h3, .concept-detail .box .txt h2 {
  text-align: left;
}
.concept-detail .box .txt h3 {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: bold;
  color: #B59656;
}
.concept-detail .box .txt h2 {
  margin-top: 90px;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  line-height: 3rem;
}
.concept-detail .box .txt h2 span {
  display: block;
  font-size: 1.375rem;
  letter-spacing: 0.1rem;
}
.concept-detail .box .txt p {
  margin-top: 40px;
  line-height: 2.3rem;
}
.concept-detail .box .img {
  width: 67.3%;
}
.concept-detail .box:first-child {
  margin-top: 0 !important;
}
.concept-detail .box:nth-child(even) {
  flex-direction: row-reverse;
  margin: 140px auto 0 0;
}

@media screen and (max-width: 1920px) {
  .concept-detail .box {
    max-width: 1560px;
  }
  .concept-detail .box .txt {
    max-width: 400px;
  }
  .concept-detail .box .img {
    max-width: 1050px;
  }
}
@media screen and (max-width: 1440px) {
  .concept-detail {
    margin-top: 150px;
  }
  .concept-detail .box {
    gap: 80px;
    margin: 120px 0 0 auto;
  }
  .concept-detail .box .txt {
    max-width: 350px;
  }
  .concept-detail .box:nth-child(even) {
    margin: 120px auto 0 0;
  }
}
@media screen and (max-width: 1280px) {
  .concept-detail .box {
    gap: 50px;
    margin: 100px 0 0 auto;
  }
  .concept-detail .box .txt {
    max-width: 350px;
  }
  .concept-detail .box .txt h2 {
    margin-top: 40px;
  }
  .concept-detail .box .txt p {
    margin-top: 30px;
  }
  .concept-detail .box:nth-child(even) {
    margin: 100px auto 0 0;
  }
}
@media screen and (max-width: 960px) {
  .concept-detail {
    margin-top: 100px;
  }
  .concept-detail .box {
    gap: 40px;
    margin: 70px 0 0 auto;
  }
  .concept-detail .box .txt h3 {
    line-height: 1rem;
  }
  .concept-detail .box .txt h2 {
    margin-top: 30px;
    font-size: 1.875rem;
    line-height: 2.3rem;
  }
  .concept-detail .box .txt h2 span {
    font-size: 1.125rem;
  }
  .concept-detail .box .txt p {
    line-height: 2rem;
  }
  .concept-detail .box:nth-child(even) {
    margin: 70px auto 0 0;
  }
}
@media screen and (max-width: 768px) {
  .concept-detail {
    margin-top: 70px;
  }
  .concept-detail .box,
  .concept-detail .box:nth-child(even) {
    flex-direction: column-reverse;
    width: 100%;
    margin: 50px auto 0;
  }
  .concept-detail .box .txt,
  .concept-detail .box:nth-child(even) .txt {
    width: 78%;
    max-width: 100%;
    margin: 0 auto;
  }
  .concept-detail .box .img {
    width: 90%;
    height: 450px;
    overflow: hidden;
    margin: 0 0 0 auto;
  }
  .concept-detail .box:nth-child(even) .img {
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 480px) {
  .concept-detail {
    margin-top: 50px;
  }
  .concept-detail .box {
    gap: 20px;
  }
  .concept-detail .box .txt h2 {
    margin-top: 20px;
    font-size: 1.4375rem;
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }
  .concept-detail .box .txt h2 span {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .concept-detail .box .txt p {
    margin-top: 10px;
    line-height: 1.8rem;
  }
  .concept-detail .box .img {
    height: auto;
  }
}
/* ------------------------------------- 
  menu-list 名物メニューの紹介
------------------------------------- */
.menu-list {
  margin-top: 65px;
  background: url(../images/bg2.png) no-repeat;
  background-size: 100%;
  background-position: 0 100.5%;
  padding-bottom: 200px;
}

.menu-list .box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 70px auto 0 0;
}
.menu-list .box .img, .menu-list .box .txt {
  width: 50%;
}
.menu-list .box .txt {
  max-width: 472px;
  padding-left: 130px;
}
.menu-list .box .txt h3 {
  line-height: 0;
}
.menu-list .box .txt h3 img {
  width: auto;
  height: 75.6px;
}
.menu-list .box .txt p {
  margin-top: 30px;
  font-size: 1.875rem;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  letter-spacing: 0;
}
.menu-list .box .txt p span {
  font-size: 1.375rem;
}
.menu-list .box:first-child {
  margin-top: 0;
}
.menu-list .box:nth-child(even) {
  flex-direction: row-reverse;
  margin: 70px 0 0 auto;
}
.menu-list .box:nth-child(even) .txt {
  padding-right: 130px;
  padding-left: 0;
}

.menu-list .button-blank {
  margin-top: 70px;
}

@media screen and (max-width: 1280px) {
  .menu-list .box .txt {
    width: auto;
    padding-left: 100px;
  }
  .menu-list .box .txt h3 img {
    height: 60px;
  }
  .menu-list .box:nth-child(even) .txt {
    padding-right: 100px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .menu-list .box .img {
    width: 60%;
  }
  .menu-list .box .txt {
    padding-left: 50px;
  }
  .menu-list .box .txt h3 img {
    height: 50px;
  }
  .menu-list .box:nth-child(even) .txt {
    padding-right: 50px;
    padding-left: 0;
  }
}
@media screen and (max-width: 960px) {
  .menu-list {
    margin-top: 50px;
    padding-bottom: 150px;
  }
  .menu-list .box {
    margin: 50px auto 0 0;
  }
  .menu-list .box .txt h3 img {
    height: 50px;
  }
  .menu-list .box .txt p {
    margin-top: 20px;
    font-size: 1.5625rem;
  }
  .menu-list .box .txt p span {
    font-size: 1.125rem;
  }
  .menu-list .box:nth-child(even) {
    margin: 50px 0 0 auto;
  }
  .menu-list .button-blank {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .menu-list {
    margin-top: 40px;
    padding-bottom: 130px;
  }
  .menu-list .box {
    margin: 30px auto 0 0;
  }
  .menu-list .box .txt {
    padding-left: 30px;
  }
  .menu-list .box .txt h3 img {
    height: 30px;
  }
  .menu-list .box .txt p {
    margin-top: 15px;
    font-size: 1.25rem;
  }
  .menu-list .box .txt p span {
    font-size: 1rem;
  }
  .menu-list .box:nth-child(even) {
    margin: 30px 0 0 auto;
  }
  .menu-list .box:nth-child(even) .txt {
    padding-left: 0px;
    padding-right: 30px;
  }
  .menu-list .button-blank {
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .menu-list {
    margin-top: 30px;
  }
  .menu-list .box,
  .menu-list .box:nth-child(even) {
    flex-direction: column;
    margin: 30px auto 0 auto;
  }
  .menu-list .box {
    align-items: flex-start;
  }
  .menu-list .box .txt, .menu-list .box .img {
    width: 90%;
  }
  .menu-list .box .txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-left: 10%;
  }
  .menu-list .box .txt h3 img {
    height: 30px;
  }
  .menu-list .box .txt p {
    margin-top: 10px;
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .menu-list .box .txt p span {
    display: block;
    margin-left: -5px;
    font-size: 0.75rem;
  }
  .menu-list .box:nth-child(even) {
    align-items: flex-end;
  }
  .menu-list .box:nth-child(even) .txt {
    padding-left: 0;
  }
  .menu-list .button-blank {
    margin-top: 40px;
  }
}
/* ------------------------------------- 
  menu-drink 飲み物
------------------------------------- */
.menu-drink .wrap {
  position: relative;
  background: #000000 url(../images/menu/menu_sake_bg.png) no-repeat;
  background-size: 74%;
  background-position: right 100.5%;
  width: 100%;
  height: auto;
  max-height: 670px;
}
.menu-drink .wrap::before {
  content: "";
  display: block;
  padding-top: 34.8958333333%;
}
.menu-drink .img {
  position: absolute;
  max-width: 590px;
  width: 30.7%;
  left: 6.5%;
  bottom: 30px;
}
.menu-drink .box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1200px;
  width: 78%;
  height: 100%;
  margin: 0 auto;
}
.menu-drink .box .txt {
  max-width: 693px;
  width: 58%;
  margin: 0 0 0 auto;
}
.menu-drink .box .txt h2 {
  color: #FFFFFF;
  text-align: left;
}
.menu-drink .box .txt h2 {
  font-size: 2.25rem;
  letter-spacing: 0.2rem;
}
.menu-drink .box .txt h2 span {
  font-size: 1.375rem;
}
.menu-drink .box .txt p {
  margin-top: 30px;
  line-height: 2.3rem;
  color: #FFFFFF;
}
.menu-drink .button-blank {
  margin-top: 55px;
}
@media screen and (max-width: 1180px) {
  .menu-drink .wrap {
    padding: 50px 0;
  }
  .menu-drink .wrap::before {
    padding-top: 0;
  }
  .menu-drink .box {
    position: static;
    transform: none;
    display: block;
  }
  .menu-drink .box .txt {
    max-width: 100%;
  }
  .menu-drink .box .txt p {
    margin-top: 20px;
    line-height: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .menu-drink .box .txt h2 {
    font-size: 1.875rem;
  }
  .menu-drink .box .txt h2 span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .menu-drink .wrap {
    padding-top: 0;
  }
  .menu-drink .img {
    top: -50px;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
  }
  .menu-drink .box {
    padding-top: 33.8541666667%;
  }
  .menu-drink .box .txt {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .menu-drink .box .txt h2 {
    text-align: center;
  }
  .menu-drink .box .txt p {
    line-height: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .menu-drink .img {
    width: 33%;
  }
  .menu-drink .box .txt h2 {
    font-size: 1.4375rem;
    line-height: 1.8rem;
  }
  .menu-drink .box .txt h2 span {
    font-size: 1rem;
  }
  .menu-drink .button-blank {
    margin-top: 40px;
  }
}

/* ------------------------------------- 
  page-mv　宴会ページ用個別指定
------------------------------------- */
.enkai {
  padding-bottom: 0;
}
.enkai .page-mv--title h1 {
  margin-top: 55px;
  letter-spacing: 4.5rem;
}
@media screen and (max-width: 1440px) {
  .enkai .page-mv--title h1 {
    margin-top: 50px;
    letter-spacing: 3.5rem;
  }
}
@media screen and (max-width: 960px) {
  .enkai .page-mv--title h1 {
    margin-top: 40px;
    letter-spacing: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .enkai .page-mv--title h1 {
    margin-top: 20px;
    letter-spacing: 1.5rem;
  }
}

/* ------------------------------------- 
  enkai-pickup　宴会メニューピックアップ
------------------------------------- */
.enkai-pickup {
  background: url(../images/enkai/enkai_moyou.png) no-repeat;
  background-size: 36%;
  background-position: 6.4% 100%;
  position: relative;
  margin-top: 80px;
}
.enkai-pickup::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: #1a1a1a;
  width: 97%;
  height: 98%;
  z-index: -1;
}
.enkai-pickup .wrap {
  position: relative;
  width: 100%;
}
.enkai-pickup .wrap::before {
  content: "";
  display: block;
  padding-top: 70.1041666667%;
}
.enkai-pickup .txt, .enkai-pickup .img-w1100, .enkai-pickup .img-w940 {
  position: absolute;
}
.enkai-pickup .txt {
  top: 14%;
  right: 0;
  width: 39%;
}
.enkai-pickup .txt h2, .enkai-pickup .txt h3, .enkai-pickup .txt p {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: bold;
  text-align: left;
}
.enkai-pickup .txt h2 {
  max-width: 501px;
  width: 67.5%;
  border-bottom: 1px solid #DBBF87;
  padding-bottom: 15px;
  color: #DBBF87;
  font-size: 1.375rem;
  letter-spacing: 0.1rem;
}
.enkai-pickup .txt h3, .enkai-pickup .txt p {
  width: 95%;
  color: #FFFFFF;
}
.enkai-pickup .txt h3 {
  margin-top: 70px;
  font-size: 2.1875rem;
  line-height: 3rem;
  letter-spacing: 0rem;
}
.enkai-pickup .txt p {
  margin-top: 50px;
  font-size: 2.875rem;
  letter-spacing: 0;
}
.enkai-pickup .txt p span {
  font-size: 1.25rem;
}
.enkai-pickup .img-w1100 {
  top: 7.2%;
  left: 0;
  width: 57%;
}
.enkai-pickup .img-w940 {
  right: 0;
  bottom: 8.5%;
  width: 49%;
}
@media screen and (max-width: 1920px) {
  .enkai-pickup .txt {
    max-width: 742px;
  }
  .enkai-pickup .txt p {
    margin-top: 30px;
  }
  .enkai-pickup .img-w1100 {
    max-width: 1100px;
  }
  .enkai-pickup .img-w940 {
    max-width: 940px;
  }
}
@media screen and (max-width: 1440px) {
  .enkai-pickup .txt {
    top: 8%;
  }
  .enkai-pickup h3 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1366px) {
  .enkai-pickup .txt h3 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 1280px) {
  .enkai-pickup .txt {
    top: 6%;
  }
  .enkai-pickup .txt h3 {
    margin-top: 30px;
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
  .enkai-pickup .txt p {
    margin-top: 20px;
    font-size: 2.5rem;
  }
  .enkai-pickup .txt p span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 960px) {
  .enkai-pickup {
    margin-top: 60px;
  }
  .enkai-pickup .wrap::before {
    padding-top: 78.125%;
  }
  .enkai-pickup .txt {
    top: 10%;
  }
  .enkai-pickup .txt h2 {
    font-size: 1.125rem;
    padding-bottom: 5px;
  }
  .enkai-pickup .txt h3 {
    font-size: 1.25rem;
  }
  .enkai-pickup .txt p {
    font-size: 2.0625rem;
  }
  .enkai-pickup .txt p span {
    font-size: 1rem;
  }
  .enkai-pickup .img-w1100 {
    top: 5%;
  }
  .enkai-pickup .img-w940 {
    bottom: 6%;
  }
}
@media screen and (max-width: 768px) {
  .enkai-pickup {
    background-size: 50%;
    height: auto;
  }
  .enkai-pickup::before {
    top: 10%;
    height: 88%;
  }
  .enkai-pickup .wrap::before {
    padding-top: 52.0833333333%;
  }
  .enkai-pickup .txt {
    position: static;
    width: 90%;
    margin-top: 20px;
    margin-left: 10%;
    padding-bottom: 50px;
  }
  .enkai-pickup .txt h2 {
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.8rem;
  }
  .enkai-pickup .txt h3 {
    margin-top: 20px;
    font-size: 1.125rem;
    line-height: 2rem;
  }
  .enkai-pickup .txt p {
    font-size: 1.5625rem;
  }
  .enkai-pickup .txt p span {
    font-size: 0.875rem;
  }
  .enkai-pickup .img-w1100 {
    top: 0;
  }
  .enkai-pickup .img-w940 {
    top: 20%;
    bottom: auto;
  }
}
@media screen and (max-width: 480px) {
  .enkai-pickup {
    margin-top: 40px;
  }
  .enkai-pickup .txt {
    padding-bottom: 40px;
  }
  .enkai-pickup .txt h2 {
    font-size: 0.875rem;
  }
  .enkai-pickup .txt h3 {
    font-size: 1rem;
    line-height: 1.8rem;
  }
  .enkai-pickup .txt p {
    margin-top: 10px;
  }
}

/* ------------------------------------- 
  enkai-menu　宴会メニュー
------------------------------------- */
.enkai-menu {
  margin-top: 165px;
  background: url(../images/enkai/enkai-menu_bg.jpg) no-repeat;
  background-size: 97%;
  background-position: 0 0;
  padding-top: 32.1875%;
}
.enkai-menu__course--wrap {
  background: #FFFFFF;
  width: 94.5%;
  margin: 0 auto;
  padding-top: 70px;
}
.enkai-menu__course h2, .enkai-menu__course p {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.enkai-menu__course h2 {
  font-size: 2.25rem;
  letter-spacing: 0.2rem;
}
.enkai-menu__course p.price {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: bold;
  font-size: 2.875rem;
  line-height: 4rem;
  padding: 25px 0;
}
.enkai-menu__course p.att {
  font-size: 1.25rem;
  letter-spacing: 0;
}
.enkai-menu__drink--wrap {
  background: url(../images/enkai/enkai_moyou2.png) no-repeat;
  background-size: 27.4%;
  background-position: 100% 70%;
  padding-top: 155px;
}
.enkai-menu__drink {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #DBBF87;
  max-width: 1800px;
  width: 85%;
  margin: 0 auto;
}
.enkai-menu__drink dt, .enkai-menu__drink dd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
}
.enkai-menu__drink dt {
  background: #DBBF87;
}
.enkai-menu__drink dt h3, .enkai-menu__drink dt p {
  display: inline-block;
  color: #FFFFFF;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: bold;
  letter-spacing: 0;
}
.enkai-menu__drink dt h3 {
  font-size: 1.625rem;
}
.enkai-menu__drink dt p {
  font-size: 2.25rem;
}
.enkai-menu__drink dt p span {
  font-size: 1.25rem;
}
.enkai-menu__drink dd {
  flex-direction: column;
  background: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  .enkai-menu__drink dt {
    flex-direction: column;
  }
  .enkai-menu__drink dt p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 960px) {
  .enkai-menu {
    margin-top: 120px;
  }
  .enkai-menu__course h2 {
    font-size: 1.875rem;
  }
  .enkai-menu__course p.price {
    font-size: 2.0625rem;
    line-height: 3rem;
    padding: 20px 0;
  }
  .enkai-menu__course p.att {
    font-size: 1.125rem;
  }
  .enkai-menu__drink--wrap {
    background-position: 100% 40%;
    padding-top: 100px;
  }
  .enkai-menu__drink dt, .enkai-menu__drink dd {
    padding: 20px 30px;
  }
  .enkai-menu__drink dt h3 {
    font-size: 1.25rem;
  }
  .enkai-menu__drink dt p {
    font-size: 1.875rem;
    margin-top: 0;
  }
  .enkai-menu__drink dt p span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .enkai-menu {
    margin-top: 70px;
  }
  .enkai-menu__course--wrap {
    padding-top: 40px;
  }
  .enkai-menu__course h2 {
    font-size: 1.4375rem;
  }
  .enkai-menu__course p.price {
    font-size: 1.6875rem;
    line-height: 2rem;
  }
  .enkai-menu__course p.att {
    font-size: 1rem;
  }
  .enkai-menu__drink--wrap {
    background-size: 40%;
    background-position: 100% 20%;
    padding-top: 50px;
  }
  .enkai-menu__drink {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
    width: 80%;
  }
  .enkai-menu__drink dt, .enkai-menu__drink dd {
    padding: 15px 20px;
  }
  .enkai-menu__drink dt h3 {
    font-size: 1.125rem;
  }
  .enkai-menu__drink dt p {
    font-size: 1.5625rem;
    margin-top: 0;
  }
  .enkai-menu__drink dt p span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .enkai-menu {
    margin-top: 50px;
  }
  .enkai-menu__course--wrap {
    padding-top: 20px;
  }
  .enkai-menu__course h2 {
    font-size: 1.125rem;
    letter-spacing: 0.1rem;
  }
  .enkai-menu__course p.price {
    padding: 10px 0;
    font-size: 1.375rem;
  }
  .enkai-menu__course p.att {
    font-size: 0.875rem;
  }
  .enkai-menu__drink--wrap {
    background-position: 100% 0%;
    padding-top: 30px;
  }
}

/* ------------------------------------- 
  enkai-introduction　宴会時の店内紹介
------------------------------------- */
.enkai-introduction {
  position: relative;
  background: url(../images/bg.jpg) repeat-y;
  background-size: 100%;
  width: 100%;
  margin-top: 180px;
  padding: 145px 0 125px;
}
.enkai-introduction .title-wrap {
  position: absolute;
  top: 145px;
  left: 91%;
}
.enkai-introduction .title-wrap .title {
  display: flex;
  position: relative;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  text-align: center;
}
.enkai-introduction .title-wrap .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #2f2f2f;
  width: 0.5px;
  height: 130px;
}
.enkai-introduction .title-wrap .title h2 {
  white-space: pre;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-feature-settings: initial;
  display: inline-block;
  margin-top: 145px;
  color: #2f2f2f;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .enkai-introduction .title-wrap .title::before {
    height: 100px;
  }
  .enkai-introduction .title-wrap .title h2 {
    margin-top: 115px;
  }
}
@media screen and (max-width: 480px) {
  .enkai-introduction .title-wrap .title::before {
    height: 70px;
  }
  .enkai-introduction .title-wrap .title h2 {
    margin-top: 85px;
    letter-spacing: 0.3rem;
  }
}
.enkai-introduction .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
.enkai-introduction .wrap .img {
  width: 53.5%;
}
.enkai-introduction .wrap .detail {
  max-width: 606px;
  width: 44%;
  padding-right: 13%;
  box-sizing: content-box;
}
.enkai-introduction .wrap .detail h3 {
  font-size: 1.625rem;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: bold;
  line-height: 2.5rem;
}
.enkai-introduction .wrap .detail p {
  margin-top: 30px;
  color: #2f2f2f;
}
.enkai-introduction .wrap .detail img {
  display: block;
  max-width: 542px;
  margin: 104px auto 0;
  mix-blend-mode: multiply;
}
.enkai-introduction .contact {
  background: #FFFFFF;
  max-width: 1123px;
  width: 80%;
  margin: 130px auto 0;
  padding: 80px 0 70px;
}
.enkai-introduction .contact h2, .enkai-introduction .contact p {
  text-align: center;
  max-width: 796px;
  width: 80%;
  margin: 0 auto;
}
.enkai-introduction .contact h2 {
  letter-spacing: 0.3rem;
}
.enkai-introduction .contact p {
  margin: 25px auto 35px;
}
.enkai-introduction .contact p.tel {
  background: #1a1a1a;
  max-width: 796px;
  width: 80%;
  margin: 0 auto;
  padding: 25px;
  font-size: 3.125rem;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 3rem;
}
.enkai-introduction .contact p.tel a {
  color: #FFFFFF;
  margin-left: 10px;
}
@media screen and (max-width: 1920px) {
  .enkai-introduction .wrap img {
    max-width: 1030px;
  }
}
@media screen and (max-width: 1440px) {
  .enkai-introduction {
    background: url(../images/bg-1440.jpg) repeat-y;
    background-size: 100%;
  }
}
@media screen and (max-width: 1366px) {
  .enkai-introduction .wrap .detail img {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .enkai-introduction .title-wrap {
    left: 86%;
  }
  .enkai-introduction .wrap {
    flex-direction: column;
  }
  .enkai-introduction .wrap .img {
    width: 80%;
  }
  .enkai-introduction .wrap .detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 100%;
    width: 80%;
    margin: 0 auto 0 0;
    padding: 0;
  }
  .enkai-introduction .wrap .detail .txt-wrap {
    width: 55%;
    padding-left: 5%;
  }
  .enkai-introduction .wrap .detail .txt-wrap h3 {
    letter-spacing: 0rem;
  }
  .enkai-introduction .wrap .detail .txt-wrap p {
    margin-top: 15px;
  }
  .enkai-introduction .wrap .detail img {
    width: 45%;
    margin: 0 0 0 auto;
  }
  .enkai-introduction .contact {
    margin-top: 80px;
  }
}
@media screen and (max-width: 960px) {
  .enkai-introduction {
    margin-top: 150px;
    padding: 120px 0;
  }
  .enkai-introduction .title-wrap {
    top: 120px;
    left: 85%;
  }
  .enkai-introduction .wrap .detail .txt-wrap h3 {
    font-size: 1.375rem;
  }
  .enkai-introduction .wrap .detail .txt-wrap p {
    margin-top: 10px;
  }
  .enkai-introduction .contact {
    padding: 50px 0;
  }
  .enkai-introduction .contact h2 {
    letter-spacing: 0.1rem;
  }
  .enkai-introduction .contact p.tel {
    padding: 20px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .enkai-introduction {
    margin-top: 100px;
    padding: 70px 0;
  }
  .enkai-introduction .title-wrap {
    top: 70px;
    left: 82%;
  }
  .enkai-introduction .wrap .detail {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    width: 78%;
    margin: 0 auto;
    padding: 0;
  }
  .enkai-introduction .wrap .detail .txt-wrap {
    width: 100%;
    padding-left: 0%;
  }
  .enkai-introduction .wrap .detail .txt-wrap h3 {
    font-size: 1.25rem;
    line-height: 1.8rem;
  }
  .enkai-introduction .wrap .detail img {
    width: 100%;
    margin: 0 auto;
  }
  .enkai-introduction .contact {
    margin-top: 60px;
    padding: 40px 0;
  }
  .enkai-introduction .contact p {
    margin: 20px auto 30px;
    letter-spacing: 0;
  }
  .enkai-introduction .contact p.tel {
    padding: 15px;
    font-size: 1.875rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .enkai-introduction {
    margin-top: 70px;
    padding: 50px 0;
  }
  .enkai-introduction .title-wrap {
    top: 50px;
  }
  .enkai-introduction .title-wrap .title::before {
    height: 40px;
  }
  .enkai-introduction .title-wrap .title h2 {
    margin-top: 55px;
    letter-spacing: 0.2rem;
  }
  .enkai-introduction .wrap {
    gap: 30px;
  }
  .enkai-introduction .wrap .detail {
    gap: 30px;
  }
  .enkai-introduction .wrap .detail .txt-wrap h3 {
    font-size: 1.1875rem;
  }
  .enkai-introduction .contact {
    margin-top: 40px;
    padding: 30px 0;
  }
  .enkai-introduction .contact p {
    margin: 20px auto;
    text-align: justify;
  }
  .enkai-introduction .contact p.tel {
    text-align: center;
    padding: 15px;
    font-size: 1.25rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .enkai-introduction .wrap {
    gap: 50px;
  }
}/*# sourceMappingURL=common_style.css.map */