@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #120d07;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 40px;
  transition: top 1s, opacity 1s;
  opacity: 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
}

.footer {
  background: #120D07;
  padding: 90px 0;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 110px;
  }
}
.footer__inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 24px;
    flex-direction: column;
    gap: 40px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
    order: 2;
    justify-content: center;
    align-items: center;
  }
}
.footer__left__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.footer__left__brand img {
  width: 75px;
  height: 51px;
}
.footer__left__brand p {
  font-size: 16px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .footer__left__brand p {
    display: none;
  }
}
.footer__left__brand:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 20px;
  height: 1px;
  background: #fff;
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  .footer__left__brand:before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer__left__links ul {
  display: flex;
  gap: 20px;
}
.footer__left__links ul li a img {
  height: 20px;
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(100% - 200px);
}
@media only screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    order: 1;
  }
}
.footer__right__contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .footer__right__contents {
    gap: 32px;
  }
}
.footer__right__contents div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__right__contents div strong {
  font-size: 18px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .footer__right__contents div strong {
    font-size: 16px;
  }
}
.footer__right__contents div p {
  font-size: 16px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .footer__right__contents div p {
    font-size: 14px;
  }
}
.footer > p {
  font-size: 14px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  .footer > p {
    font-size: 11px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 52px 70px;
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 32px 24px;
  }
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 162px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 100px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.header__nav-item {
  margin-left: 40px;
}
.header__nav-link {
  font-size: 16px;
  color: #fff;
}
.header__nav-link-text {
  font-size: 16px;
  color: #fff;
}
.header__nav-lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.header__nav-lang-link {
  font-size: 16px;
  color: #BBB8B6;
  transition: color 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .header__nav-lang-link:hover {
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav-lang-link {
    font-size: 12px;
  }
}
.header__nav-lang-link.active {
  color: #fff;
}
.header__nav-lang-separator {
  margin: 0 5px;
  color: #fff;
  font-family: "Noto Sans", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.header__nav-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header__nav-sp {
    display: block;
  }
}
.header__nav-sp-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__nav-sp__fix-cv {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header__nav-sp__fix-cv {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 100;
  }
  .header__nav-sp__fix-cv a {
    font-size: 14px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  }
  .header__nav-sp__fix-cv a span {
    color: #120d07;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  background: #120d07;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}

[data-trigger] {
  position: relative;
  top: 40px;
  transition: top 1s, opacity 1s;
  opacity: 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
}

/**

 */
.main-visual {
  height: 100svh;
  width: 100%;
  position: relative;
}
.main-visual:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, rgba(16, 13, 6, 0) 0%, #120D07 100%);
  z-index: 2;
}
.main-visual__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-visual__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-visual__content {
  position: absolute;
  bottom: 15%;
  right: 11%;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .main-visual__content {
    bottom: auto;
    right: 0;
    top: 32%;
    padding-right: 10px;
  }
}
.main-visual__title {
  display: flex;
  flex-direction: column;
  gap: 42px;
  color: #FFC434;
}
@media only screen and (max-width: 767px) {
  .main-visual__title {
    gap: 17px;
  }
}
.main-visual__title h1 {
  font-size: 88px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .main-visual__title h1 {
    font-size: 28px;
  }
}
.main-visual__title h1 span {
  display: block;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.main-visual__title h1 span:nth-child(1) {
  position: relative;
  left: -20px;
}
@media only screen and (max-width: 767px) {
  .main-visual__title h1 span:nth-child(1) {
    left: -4px;
  }
}
.main-visual__title h1 span:nth-child(2) {
  position: relative;
  left: -11px;
}
@media only screen and (max-width: 767px) {
  .main-visual__title h1 span:nth-child(2) {
    left: -2px;
  }
}
.main-visual__title h1 span:nth-child(3) {
  position: relative;
  left: 0px;
}
@media only screen and (max-width: 767px) {
  .main-visual__title h1 span:nth-child(3) {
    left: 0;
  }
}
.main-visual__title h2 {
  font-size: 32px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .main-visual__title h2 {
    font-size: 15px;
  }
}

.concept {
  padding-top: 80px;
  background: url(../images/concept_bg.png) no-repeat right center;
  background-size: 80% auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .concept {
    padding-top: 40px;
    background-position: right top;
    background-size: auto 100%;
  }
}
.concept:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(0deg, rgba(16, 13, 6, 0) 0%, #120D07 100%);
  z-index: 1;
}
.concept__inner {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .concept__inner {
    padding: 0 24px;
  }
}
.concept__title h2 {
  font-size: 63px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #BBB8B6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .concept__title h2 {
    gap: 24px;
    font-size: 32px;
  }
}
.concept__title h2 span {
  width: 236px;
}
@media only screen and (max-width: 767px) {
  .concept__title h2 span {
    width: 136px;
  }
}
.concept__title h2:after {
  content: "";
  width: calc(100% - 276px);
  height: 1px;
  background: #BBB8B6;
  position: relative;
  top: 4px;
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .concept__title h2:after {
    width: calc(100% - 136px);
  }
}
@media only screen and (max-width: 767px) {
  .concept__title h2 {
    margin-top: 80px;
    gap: 32px;
    padding-bottom: 120px;
  }
}
.concept__content {
  margin-top: 156px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding-bottom: 192px;
}
@media only screen and (max-width: 767px) {
  .concept__content {
    margin-top: 80px;
    gap: 32px;
    padding-bottom: 40px;
  }
}
.concept__content h3 {
  font-size: 22px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .concept__content h3 {
    font-size: 17px;
  }
}
.concept__content p {
  font-size: 16px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.5;
  max-width: 500px;
}
@media only screen and (max-width: 767px) {
  .concept__content p span {
    font-size: 14px;
  }
}

.menus {
  background: linear-gradient(103deg, #201C16 0%, #120D07 100%);
  position: relative;
}
.menus__title {
  position: absolute;
  left: -40px;
  bottom: 0;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .menus__title {
    left: -20px;
  }
}
.menus__title h2 {
  font-size: 200px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #BBB8B6;
  writing-mode: vertical-rl;
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  .menus__title h2 {
    font-size: 100px;
  }
}
.menus__content {
  padding: 56px 0 108px;
}
@media only screen and (max-width: 767px) {
  .menus__content {
    padding: 40px 0 80px;
  }
}
.menus__tabs {
  border-bottom: 1px solid #353535;
}
.menus__tabs__inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .menus__tabs__inner {
    padding: 0 24px;
  }
}
.menus__tabs__inner ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0px;
}
@media only screen and (max-width: 767px) {
  .menus__tabs__inner ul {
    gap: 0px;
    justify-content: space-between;
  }
}
.menus__tabs__inner ul li {
  min-width: 352px;
}
@media only screen and (max-width: 767px) {
  .menus__tabs__inner ul li {
    min-width: 0;
    width: auto;
  }
}
.menus__tabs__inner ul li a {
  display: block;
  padding: 32px 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  color: #BBB8B6;
  position: relative;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .menus__tabs__inner ul li a {
    padding: 24px 0;
    font-size: 15px;
  }
}
.menus__tabs__inner ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: transparent;
  transition: width 0.3s ease;
  background: #B86C04;
}
@media only screen and (min-width: 768px) {
  .menus__tabs__inner ul li a:hover {
    color: #B86C04;
  }
  .menus__tabs__inner ul li a:hover:before {
    width: 60%;
  }
}
.menus__tabs__inner ul li a.active {
  color: #B86C04;
}
.menus__tabs__inner ul li a.active:before {
  width: 51%;
}
.menus__tabs__inner ul li a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.menus__tab-contents__inner {
  max-width: 1060px;
  padding: 0 30px;
  padding-top: 60px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__inner {
    padding: 0 24px;
    padding-top: 40px;
  }
}
.menus__tab-contents__content {
  display: none;
}
.menus__tab-contents__content.active {
  display: block;
}
.menus__tab-contents__content__items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__content__items {
    gap: 32px;
  }
}
.menus__tab-contents__content__item {
  display: flex;
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__content__item {
    gap: 24px;
    flex-direction: column;
  }
}
.menus__tab-contents__content__item__image {
  width: 40%;
  height: 40%;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__content__item__image {
    width: 100%;
    height: 100%;
  }
}
.menus__tab-contents__content__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.menus__tab-contents__content__item__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 60%;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__content__item__content {
    width: 100%;
    gap: 12px;
  }
}
.menus__tab-contents__content__item__content h3 {
  font-size: 22px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__content__item__content h3 {
    font-size: 17px;
  }
}
.menus__tab-contents__content__item__content p {
  font-size: 16px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__content__item__content p {
    font-size: 14px;
  }
}
.menus__tab-contents__content__item__content p em {
  font-style: normal;
  font-size: 14px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #BBB8B6;
  line-height: 1.5;
  display: block;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .menus__tab-contents__content__item__content p em {
    font-size: 12px;
  }
}
.menus__other {
  max-width: 1060px;
  padding: 0 30px;
  margin: 60px auto 0;
}
@media only screen and (max-width: 767px) {
  .menus__other {
    padding: 0 24px;
    margin-top: 40px;
  }
}
.menus__other__note {
  font-size: 14px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #BBB8B6;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .menus__other__note {
    font-size: 12px;
    margin-bottom: 32px;
  }
}
.menus__other__categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media only screen and (max-width: 767px) {
  .menus__other__categories {
    gap: 32px;
  }
}
.menus__other__category h4 {
  font-size: 18px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #B86C04;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #353535;
}
@media only screen and (max-width: 767px) {
  .menus__other__category h4 {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 6px;
  }
}
.menus__other__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .menus__other__list {
    gap: 6px;
  }
}
.menus__other__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}
.menus__other__item__name {
  font-size: 16px;
  flex: 1;
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .menus__other__item__name {
    font-size: 14px;
  }
}
.menus__other__item__price {
  font-size: 16px;
  flex-shrink: 0;
  color: #BBB8B6;
}
@media only screen and (max-width: 767px) {
  .menus__other__item__price {
    font-size: 14px;
  }
}

.bartender {
  position: relative;
  padding: 140px 0;
}
@media only screen and (max-width: 767px) {
  .bartender {
    padding: 80px 0;
  }
}
.bartender:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bartender_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.1;
}
.bartender__inner {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .bartender__inner {
    padding: 0 24px;
  }
}
.bartender__content {
  display: flex;
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  .bartender__content {
    gap: 32px;
    flex-direction: column;
  }
}
.bartender__content__image {
  width: 40%;
  height: 40%;
}
@media only screen and (max-width: 767px) {
  .bartender__content__image {
    width: 100%;
    height: 100%;
  }
}
.bartender__content__image img {
  width: 100%;
  height: 100%;
}
.bartender__content__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 60%;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .bartender__content__content {
    width: 100%;
    gap: 12px;
  }
}
.bartender__content__content h3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .bartender__content__content h3 {
    gap: 12px;
  }
}
.bartender__content__content h3 small {
  font-size: 16px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #BBB8B6;
}
@media only screen and (max-width: 767px) {
  .bartender__content__content h3 small {
    font-size: 14px;
  }
}
.bartender__content__content h3 strong {
  font-size: 22px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .bartender__content__content h3 strong {
    font-size: 17px;
  }
}
.bartender__content__content p {
  font-size: 16px;
  font-family: "Cormorant Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 767px) {
  .bartender__content__content p {
    line-height: 1.5;
    gap: 8px;
  }
}

.footer-bg {
  display: flex;
}
.footer-bg div {
  width: 33.33333%;
}
.footer-bg div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section {
  width: 100px;
  height: auto;
}